﻿
/* Ideas-specific styles using Ogilvy One theme */
.ideas-hero {
    background: #000;
    color: #fff;
    padding: 100px 0 0px;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.ideas-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ideas-hero__title {
    font-family: "Ogilvy Serif";
    font-size: clamp(80px, calc(80px + (150 - 80) * ((100vw - 576px) / (1000 - 576))), 150px);
    font-weight: 700;
    line-height: 135px;
    letter-spacing: -10.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.ideas-hero__subtitle {
    font-family: "Ogilvy Sans";
    font-size: 23px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.92px;
    color: #fff;
    opacity: 0.8;
}

.ideas-section {
    padding: 80px 0;
    padding-top: 30px;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff;
}

.title-line {
    width: 80px;
    height: 3px;
    background: #fd002e;
    margin: 0 auto;
}

/* Featured Article */
.featured-article {
    background: #121212;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .featured-article:hover {
        transform: translateY(-5px);
    }

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.featured-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

    .featured-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(253, 0, 46, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.content-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-read {
    background: #666;
    color: #fff;
}

/*.badge-watch {
    background: #ff6b35;
    color: #fff;
}*/

.badge-watch {
    background: #666;
    color: #fff;
}

.badge-listen {
    background: #666;
    color: #fff;
}

.badge-news {
    background: #666;
    color: #fff;
}

.badge-default {
    background: #666;
    color: #fff;
}

.hyperRed {
    color: rgb(253, 0, 46) !important;
    font-weight: bold;
}

.publish-date {
    color: #ccc;
    font-size: 14px;
}

.badge-report {
    background: #666;
    color: #fff;
}

.badge-insights {
    background: #666;
    color: #fff;
}

.badge-in {
    background: #666;
    color: #fff;
}

.badge-assessments {
    background: #666;
    color: #fff;
}

.featured-title {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.featured-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

/* Content Type Filters */
.content-type-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.content-types-wrapper {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .content-types-wrapper::-webkit-scrollbar {
        display: none;
    }

.content-type-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-wrap: nowrap;
}

    .content-type-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #fd002e;
        transition: width 0.3s ease;
    }

    .content-type-btn:hover::after,
    .content-type-btn.active::after {
        width: 100%;
    }

    .content-type-btn.active {
        color: #fd002e;
    }

.search-controls {
    display: flex;
    align-items: center;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 16px;
    width: 250px;
    transition: border-color 0.3s ease;
}

    .search-input:focus {
        outline: none;
        border-color: #fd002e;
    }

    .search-input::placeholder {
        color: rgba(255,255,255,0.6);
    }

.search-reset {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .search-reset:hover {
        opacity: 0.6;
    }

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.category-tag {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 0;
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

    .category-tag::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #fd002e;
        transition: width 0.3s ease;
    }

    .category-tag:hover::after,
    .category-tag.active::after {
        width: 100%;
    }

    .category-tag.active {
        color: #fd002e;
    }

/* Ideas Grid */
.ideas-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    gap: 30px;
    margin-bottom: 60px;
}

/* Load More */
.load-more-section {
    text-align: center;
}

.btn-primary {
    background: #fd002e;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #e6001a;
        transform: translateY(-2px);
    }

.loading-spinner {
    color: #fd002e;
    font-size: 24px;
    margin-top: 20px;
}

/* Modal Styles */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    padding: 0px;
}

/* .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        display: none;
        overflow-y: auto;
        padding: 20px;
    } */

/* .modal-content {
        background: #111;
        border-radius: 12px;
        max-width: 900px;
        width: 100%;
        margin: 40px auto;
        position: relative;
        max-height: calc(100vh - 80px);
        overflow: hidden;
    } */

.modal-content {
    background: #111;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    margin: 46px auto;
    position: relative;
    max-height: 10000vh;
    overflow: hidden;
    padding: 60px 60px 60px 60px;
}

.modal-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.modal-close {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

    .modal-close:hover {
        background: #fd002e;
    }

/* .modal-body {
        padding: 40px;
        color: #fff;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    } */

.modal-body {
    padding: 40px;
    color: #fff;
    max-height: 1000vh;
    overflow-y: auto;
}

/* Modal Content Styles */
.modal-idea-detail {
    color: #fff;
}

.modal-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

    .modal-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-overlay video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-content-wrapper {
    padding: 0;
}

.modal-title {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: #fff;
}

.modal-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-content-body {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin: 30px 0;
}

    .modal-content-body p {
        margin-bottom: 20px;
    }

    .modal-content-body strong {
        color: #fff;
        font-weight: 700;
    }

/* Related Ideas */
.related-ideas {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .related-ideas h3 {
        font-family: 'Ogilvy Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #fff;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    gap: 20px;
}

.related-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

    .related-card:hover {
        transform: translateY(-3px);
        border-color: #fd002e;
    }

    .related-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

.related-content {
    padding: 15px;
}

    .related-content h4 {
        font-family: 'Ogilvy Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 8px;
        color: #fff;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .related-content p {
        font-size: 12px;
        color: #fd002e;
        margin: 0;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-type-filters {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    /*.content-types-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }*/

    .search-wrapper {
        justify-content: center;
    }

    .category-filters {
        justify-content: center;
    }

    .ideas-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .featured-title {
        font-size: 24px;
    }

    .featured-content {
        padding: 20px;
    }

    .search-input {
        width: 200px;
    }

    .content-type-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .category-tag {
        font-size: 12px;
    }

    .ideas-grid {
        grid-template-columns: 1fr;
    }
}

.idea-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

    .idea-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(253, 0, 46, 0.1);
    }

.idea-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .idea-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.idea-card:hover .idea-image img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(253, 0, 46, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.idea-card:hover .play-overlay {
    background: #fd002e;
    transform: translate(-50%, -50%) scale(1.1);
}

.idea-content {
    padding: 24px;
}

.content-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.content-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/*.badge-report {
    background: #fd002e;
    color: #fff;
}

.badge-insights {
    background: #4ecdc4;
    color: #fff;
}

.badge-in {
    background: #ffd23f;
    color: #000;
}

.badge-assessments {
    background: #85e085;
    color: #fff;
}*/

.publish-date {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.idea-title {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.idea-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 63px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .article-meta span {
        font-size: 12px;
        color: #999;
        font-weight: 500;
    }

.author {
    color: #fd002e !important;
}

.category {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

    .no-results h3 {
        font-family: 'Ogilvy Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 12px;
        color: #fff;
    }

    .no-results p {
        font-size: 16px;
        line-height: 1.5;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .idea-content {
        padding: 20px;
    }

    .idea-title {
        font-size: 16px;
        min-height: 42px;
    }

    .idea-description {
        font-size: 13px;
        min-height: 57px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .popup-bobycontent {
        display: flex;
        padding: 10px 60px 05px 60px;
        flex-direction: column;
    }
    .masthead__slideItem h1 {
        font-size: 1.2rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.idea-card.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/*Moved changes from index for inner popup*/
.popup-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.popup-left {
    width: 40%;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 25px;
}

    .popup-left h1 {
        font-family: 'Times New Roman', serif;
        font-size: 48px;
        margin-bottom: 20px;
    }

    .popup-left b {
        font-weight: bold;
    }

.popup-right {
    width: 100%;
}

.submitmodal-content {
    background: #111;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    margin: 46px auto;
    position: relative;
    max-height: 10000vh;
    overflow: hidden;
    /*padding: 60px 60px 60px 60px;*/
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.popup-right input, .popup-right select {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
    font-size: 16px;
}

    .popup-right input::placeholder {
        color: #aaa;
    }

.submit-btn {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.privacy {
    font-size: 12px;
    color: #333;
    margin-top: 10px;
}

    .privacy a {
        color: red;
        text-decoration: none;
    }

.popup-container.active .submitmodal-content {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .submitmodal-content {
        flex-direction: column;
        padding: 20px;
        overflow-y: auto;
    }

    .popup-left, .modal-body {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

        .popup-left h1 {
            font-size: 32px;
        }
    .popup-bobycontent {
        display: flex;
        padding: 10px 60px 5px 60px;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .submitmodal-content {
        padding: 15px;
        overflow-y: auto;
        height: 115vh;
    }

    .content-type-filters {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .popup-left h1 {
        font-size: 28px;
    }

    .popup-right input, .popup-right select {
        font-size: 14px;
        padding: 8px;
    }

    .submit-btn, .btn-success {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
    .popup-bobycontent {
        display: flex;
        padding: 10px 60px 5px 60px;
        flex-direction: column;
    }
}

.btn-success {
    background-color: #eb3f43;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Progress line container */
.progress-container {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #eb3f43;
    transition: width 0.3s ease;
}

.popup-bobycontent {
    display: flex;
    padding: 10px 60px 5px 60px;
    /*flex-direction: row;*/
}

/*MasterHead single line text*/
.masthead__slideItem h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    max-width: 90%;
    line-height: 1.3;
    white-space: nowrap;
    font-family: "Ogilvy Serif";
}

/*Partner carousal*/
/*section.partner-section {*/
    /*max-width: 1200px;*/
    /*margin: auto;
    padding: 40px 20px 40px 20px;*/
    /*background-color: #121212;*/
/*}

.partner-title {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

section.partner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partnerarrow {
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    color: #666;
    transition: color 0.3s;
}

    .partnerarrow:hover {
        color: black;
    }

section.partner-items-wrapper {
    overflow: hidden;
    width: 100%;
}

section.partner-items {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

section.partner-card {
    border: 1px solid #ccc;
    flex-shrink: 0;
    width: calc((100% - 60px) / 4);*/ /* Default: 4 cards */
/*}

.price-bar {
    background-color: #444;
    color: white;
    padding: 8px 0;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

section.partner-card img {
    width: 100%;
    height: auto;
    display: block;
}*/

/* Tablet view: 2 cards */
/*@media (max-width: 1024px) {
    section.partner-card {
        width: calc((100% - 20px) / 2);
    }
}*/

/* Mobile view: 1 card */
/*@media (max-width: 768px) {
    section.partner-card {
        width: 100%;
    }
}*/

/*OurPeople component classes*/
.ourpeople-section {
    /*padding: 40px;*/
    padding: 40px 20px 60px 20px;
    font-family: Arial, sans-serif;
    /*max-width: 1000px;*/
    /*margin: auto;*/
    margin: 30px 10px 0px 0px;
}

.ourpeople-title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 60px;
    text-align: center;
    font-family: "Ogilvy Serif";
}

.ourpeople-title-role {
    font-family: Arial, sans-serif;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 15px;
}

.ourpeople-carousel {
    position: relative;
    /*overflow: hidden;*/
}

    /*.ourpeople-carousel .slick-arrow{
        display: block !important;
    }*/



    .ourpeople-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

.ourpeople-card {
    min-width: 300px;
    max-width: 300px;
    margin-right: 20px;
    text-align: left;
    /*background: #fff;*/
    background: #111;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/*.slick-slide {
    height: 420px !important;
}

.slick-arrow{
    color: black !important;
    height: auto !important;
}*/

.ourpeople-carousel .slick-slide {
    height: 420px !important;
}


.ourpeople-image {
    width: 100%;
    height: auto;
    display: block;
}

.ourpeople-name {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    /*color: black;*/
    text-align: center;
}

.ourpeople-region {
    font-family: 'Ogilvy Sans', sans-serif;
    font-weight: bold;
    font-size: 14px;
    /*margin: 5px 0;*/
    margin: 0px 0px 5px;
    text-align: center;
}

.ourpeople-contact {
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid black;
    padding-bottom: 2px;
    color: black;
}

.ourpeople-prev,
.ourpeople-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
}

/*.ourpeople-carousel .slick-prev, .ourpeople-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;*/
    /*font-size: 24px;*/
    /*cursor: pointer;*/
    /*padding: 10px;*/
    /*z-index: 10000;
}*/

.ourpeople-carousel .slick-prev {
    left: 0;
}

    /*.ourpeople-carousel .slick-prev:before {*/
        /*left: 0;*/
        /*content: &#10094;
    }*/

.ourpeople-carousel .slick-next {
    right: 0;
}

    .ourpeople-prev {
        left: 0;
    }

.ourpeople-next {
    right: 0;
}

@media (max-width: 768px) {
    /*.ourpeople-card {
        min-width: 310px;
        max-width: 250px;
    }*/
    .ourpeople-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .ourpeople-card {
        flex: 0 0 100%; /* Each card takes full width */
        max-width: 100%;
        margin-right: 20px;
    }

    .ourpeople-prev,
    .ourpeople-next {
        top: 45%; /* adjust button alignment */
    }
}

/*OurPartner component classes*/
.ourpartner-section {
    /*padding: 40px;*/
    padding: 40px 20px 60px 20px;
    font-family: Arial, sans-serif;
    /*max-width: 1000px;*/
    /*margin: auto;*/
    margin: 10px 10px 0px 0px;
}

.ourpartner-title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 60px;
    text-align: center;
    font-family: "Ogilvy Serif";
}

.ourpartner-title-role {
    font-family: Arial, sans-serif;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 15px;
}

.ourpartner-carousel {
    position: relative;
    overflow: hidden;
}

.ourpartner-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ourpartner-card {
    min-width: 300px;
    max-width: 300px;
    margin-right: 20px;
    text-align: left;
    /*background: #fff;*/
    background: #111;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ourpartner-image {
    width: 100%;
    height: auto;
    display: block;
}

.ourpartner-name {
    font-family: 'Ogilvy Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.ourpartner-region {
    font-family: 'Ogilvy Sans', sans-serif;
    font-weight: bold;
    font-size: 14px;
    /*margin: 5px 0;*/
    margin: 0px 0px 5px;
    text-align: center;
}

.ourpartner-contact {
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid black;
    padding-bottom: 2px;
    color: black;
}

.ourpartner-prev,
.ourpartner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.ourpartner-prev {
    left: 0;
}

.ourpartner-next {
    right: 0;
}

@media (max-width: 768px) {
    /*.ourpartner-card {
        min-width: 250px;
        max-width: 250px;
    }*/
    .ourpartner-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .ourpartner-card {
        flex: 0 0 100%; /* Each card takes full width */
        max-width: 100%;
        margin-right: 20px;
    }

    .ourpartner-prev,
    .ourpartner-next {
        top: 45%; /* adjust button alignment */
    }

    .masthead{
        display:none;
    }

    /*.ogilvy_one__con-wrap .slick-list {
        padding: 80px 0 !important;
    }*/
}

/*Scroll slowly*/
html {
    scroll-behavior: smooth;
}

/*21082025*/
/*.slick-prev:before,
.slick-next:before {
    content: '';*/ /* remove default arrow text */
    /*font-size: 45px !important;
}*/

/*.ogilvy_one__con-wrap .slick-list {
    padding: 90px 0 !important;
}

.slick-arrow.slick-next{
    right: 25px !important;
}*/

.ourpeople-carousel .slick-prev, .ourpeople-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    font-size: 0;
}
    .ourpeople-carousel .slick-prev:hover,
    .ourpeople-carousel .slick-prev:focus,
    .ourpeople-carousel .slick-next:hover,
    .ourpeople-carousel .slick-next:focus {
        background: white;
    }

    .ourpeople-carousel .slick-prev:before {
        content: '';
        display: block;
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(135deg);
    }

    .ourpeople-carousel .slick-next:before {
        content: '';
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(-45deg);
    }

.ourpeople-carousel .slick-arrow {
    width: 37px;
    height: 47px !important;
}

/*OurPartner 21082025*/
.ourpartner-carousel .slick-prev, .ourpartner-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    font-size: 0;
}

    .ourpartner-carousel .slick-prev:hover,
    .ourpartner-carousel .slick-prev:focus,
    .ourpartner-carousel .slick-next:hover,
    .ourpartner-carousel .slick-next:focus {
        background: white;
    }

    .ourpartner-carousel .slick-prev:before {
        content: '';
        display: block;
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(135deg);
    }

    .ourpartner-carousel .slick-next:before {
        content: '';
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(-45deg);
    }

.ourpartner-carousel .slick-arrow {
    width: 37px;
    height: 47px !important;
}

.ourpartner-carousel .slick-initialized .slick-slide {
    text-align:center;
    padding-top:10px;
}