/* ============================================
   INDIRA CONSULTANCY - ABOUT PAGE STYLES
   Exact match to Figma design specifications
   Colors: Navy #1E2A3A, Gold #F8CA3B, White #FFFFFF
   Fonts: Kaisei Decol (headings), Poppins (body)
   ============================================ */

/* ============================================
   ABOUT HERO SECTION (SLIDER) - Figma Design
   ============================================ */
.about-hero {
    position: relative;
    min-height: 600px;
    height: 70vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slider (Owl Carousel) - Each slide has its own content */
.about-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-slider .owl-stage-outer,
.about-hero-slider .owl-stage,
.about-hero-slider .owl-item {
    height: 100%;
}

/* Each Slide Item - Contains background, overlay, and content */
.about-hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Legacy support for old slide structure */
.about-hero-slide {
    width: 100%;
    height: 100%;
}

.about-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 100px;
}

/* Content Animation for Slides */
.about-hero-slide-item .about-hero-badge,
.about-hero-slide-item .about-hero-title,
.about-hero-slide-item .about-hero-subtitle,
.about-hero-slide-item .about-hero-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.owl-item.active .about-hero-slide-item .about-hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.owl-item.active .about-hero-slide-item .about-hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.owl-item.active .about-hero-slide-item .about-hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.owl-item.active .about-hero-slide-item .about-hero-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Hero Slider Navigation - Progress Bar Style */
.about-hero-nav {
    position: absolute;
    bottom: 50px;
    right: 15%;
    z-index: 4;
}

.about-hero-progress {
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.about-hero-progress-bar {
    height: 100%;
    background-color: #FFFFFF;
    width: 0%;
    transition: width 0.1s linear;
}

.about-hero-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.about-hero-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-hero-dots .owl-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.about-hero-dots .owl-dot.active {
    background-color: #F8CA3B;
    border-color: #F8CA3B;
    transform: scale(1.2);
}

/* Badge */
.about-hero-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    margin-bottom: 16px;
}

/* Title */
.about-hero-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 52px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Subtitle */
.about-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 32px;
}

/* Button */
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F8CA3B;
    color: #1E2A3A;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero-btn:hover {
    background-color: #fad564;
    color: #1E2A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.about-hero-btn i {
    font-size: 14px;
}

/* ============================================
   WHO WE ARE SECTION (Intro) - Figma Design
   ============================================ */
.who-we-are-section {
    padding: 100px 0 80px;
    background-color: #FAF8F5;
}

.who-we-are-section .row {
    text-align: center;
}

.who-we-are-section .col-lg-7 {
    text-align: left;
}

.who-we-are-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #000;
}

.who-we-are-video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.who-we-are-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.who-we-are-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 24px;
}

.who-we-are-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 400;
    color: #3D4F5F;
    line-height: 1.35;
    max-width: 950px;
    margin: 0 0 28px;
}

.who-we-are-section .col-lg-12 .who-we-are-title {
    margin: 0 auto 28px;
    text-align: center;
}

.who-we-are-title .highlight {
    color: #F8CA3B;
    font-style: italic;
}

.who-we-are-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 0 40px;
}

.who-we-are-section .col-lg-12 .who-we-are-desc {
    margin: 0 auto 40px;
    text-align: center;
}

.who-we-are-divider {
    width: 100px;
    height: 3px;
    background-color: #F8CA3B;
    margin: 0;
}

.who-we-are-section .col-lg-12 .who-we-are-divider {
    margin: 0 auto;
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */
.vm-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #1E2A3A 0%, #1E2A3A 100%);
    position: relative;
    overflow: hidden;
}

.vm-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248,202,59,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vm-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248,202,59,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vm-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Individual Card */
.vm-card {
    flex: 1;
    position: relative;
    padding: 48px 44px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
}

.vm-card-inner {
    position: relative;
    z-index: 2;
}

/* Gold accent line at top */
.vm-accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #F8CA3B, #D4A537);
    margin-bottom: 28px;
    transition: width 0.4s ease;
}

.vm-card:hover .vm-accent-line {
    width: 80px;
}

/* Label row */
.vm-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.vm-label-icon {
    width: 32px;
    height: 32px;
    background: rgba(248, 202, 59, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8CA3B;
    font-size: 13px;
}

.vm-label-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #F8CA3B;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Quote text */
.vm-quote {
    font-family: 'Kaisei Decol', serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 0;
    border: none;
}

/* Mission sub-text */
.vm-sub-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    padding-left: 16px;
    border-left: 2px solid rgba(248, 202, 59, 0.3);
    margin-top: 20px;
}

/* Large watermark letter */
.vm-watermark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Kaisei Decol', serif;
    font-size: 220px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    transition: color 0.4s ease;
}

.vm-card:hover .vm-watermark {
    color: rgba(248, 202, 59, 0.04);
}

/* Center Divider */
.vm-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    flex-shrink: 0;
    width: 40px;
}

.vm-divider-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, transparent, rgba(248,202,59,0.4), transparent);
}

.vm-divider-dot {
    width: 10px;
    height: 10px;
    background: #F8CA3B;
    border-radius: 50%;
    margin: 12px 0;
    box-shadow: 0 0 12px rgba(248,202,59,0.35);
}

/* Tagline Bar */
.vm-tagline-bar {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.vm-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ── Vision & Mission Responsive ── */
@media (max-width: 991px) {
    .vm-section {
        padding: 80px 0 60px;
    }
    
    .vm-grid {
        flex-direction: column;
    }
    
    .vm-divider {
        flex-direction: row;
        width: 100%;
        padding: 0 40px;
        height: 40px;
    }
    
    .vm-divider-line {
        width: auto;
        height: 1px;
        flex: 1;
    }
    
    .vm-divider-dot {
        margin: 0 12px;
    }
    
    .vm-card {
        padding: 40px 32px;
    }
    
    .vm-quote {
        font-size: 22px;
    }
    
    .vm-watermark {
        font-size: 160px;
    }
}

@media (max-width: 576px) {
    .vm-section {
        padding: 60px 0 48px;
    }
    
    .vm-card {
        padding: 32px 20px;
    }
    
    .vm-quote {
        font-size: 19px;
    }
    
    .vm-watermark {
        font-size: 120px;
        right: 10px;
        top: -10px;
    }
    
    .vm-tagline {
        font-size: 11px;
        letter-spacing: 3px;
    }
}

/* ============================================
   THREE PILLARS SECTION (Bond • Breakthrough • Build) - Figma
   ============================================ */
.three-pillars-section {
    padding: 100px 0;
    background-color: #1E2A3A;
}

.three-pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.three-pillars-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 16px;
}

.three-pillars-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.three-pillars-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Layout - New Design */
.pillars-timeline {
    position: relative;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Image on Left */
.pillars-image {
    width: 35%;
    flex-shrink: 0;
}

.pillars-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Timeline on Right */
.pillars-steps {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.pillars-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: rgba(248, 202, 59, 0.3);
}

.pillar-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 30px;
}

.pillar-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot */
.pillar-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 24px;
    width: 16px;
    height: 16px;
    background-color: #1E2A3A;
    border: 3px solid #F8CA3B;
    border-radius: 50%;
    z-index: 2;
}

.pillar-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(248, 202, 59, 0.2);
    line-height: 1;
    margin-bottom: -15px;
}

.pillar-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 32px;
    font-weight: 700;
    color: #F8CA3B;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(248, 202, 59, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 500px;
}

/* Mobile Timeline */
@media (max-width: 991px) {
    .pillars-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .pillars-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pillars-steps {
        padding-left: 30px;
    }
    
    .pillar-item {
        padding-left: 20px;
    }
    
    .pillar-item::before {
        left: -22px;
    }
    
    .pillar-title {
        font-size: 26px;
    }
    
    .pillar-number {
        font-size: 36px;
    }
}

/* ============================================
   CORE VALUES SECTION - White Theme (Expandable Cards)
   ============================================ */
.core-values-section {
    padding: 80px 0 100px;
    background-color: #FAF8F5;
}

.core-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.core-values-badge {
    display: inline-block;
    background-color: transparent;
    color: #D4A537;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 16px;
}

.core-values-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 400;
    color: #1E2A3A;
    margin-bottom: 12px;
}

.core-values-title .highlight {
    color: #D4A537;
}

.core-values-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6B7280;
}

/* Values Expandable Cards - Like Mastering Section */
.values-grid {
    display: flex;
    gap: 12px;
    height: 450px;
}

.value-card {
    position: relative;
    flex: 1;
    min-width: 80px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.value-card.active {
    flex: 4;
}

.values-grid:hover .value-card {
    flex: 1;
}

.values-grid:hover .value-card:hover {
    flex: 4;
}

.value-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.value-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.value-card:not(.active) .value-card-image img {
    filter: grayscale(50%);
}

.value-card.active .value-card-image img,
.values-grid:hover .value-card:hover .value-card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.value-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(30, 42, 58, 0.15) 0%,
        rgba(30, 42, 58, 0.88) 100%
    );
    transition: background 0.5s ease;
}

/* Icon in top left */
.value-card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8CA3B;
    font-size: 22px;
    z-index: 2;
}

/* Expanded Content (first card or active) */
.value-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.value-card.active .value-card-content {
    opacity: 1;
    transform: translateY(0);
}

.values-grid:hover .value-card:hover .value-card-content {
    opacity: 1;
    transform: translateY(0);
}

.value-card-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
    position: relative;
}

.value-card-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #F8CA3B;
    margin-top: 12px;
}

.value-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: white;
    line-height: 1.6;
    margin-top: 16px;
}

/* Collapsed Content (vertical text) */
.value-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateX(-50%) rotate(180deg);
    white-space: nowrap;
    letter-spacing: 1px;
}

.value-card.active .value-label {
    opacity: 0;
}

.values-grid:hover .value-card:hover .value-label {
    opacity: 0;
}

.values-grid:hover .value-card:not(:hover) .value-label {
    opacity: 1;
}

@media (max-width: 1200px) {
    .values-grid {
        height: 400px;
    }
    
    .core-values-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .values-grid {
        flex-wrap: wrap;
        height: auto;
        gap: 16px;
    }
    
    .value-card {
        flex: 1 1 calc(50% - 8px);
        min-height: 300px;
        min-width: auto;
    }
    
    .value-card:first-child {
        flex: 1 1 100%;
    }
    
    .value-label {
        display: none;
    }
    
    .value-card-content {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .core-values-title {
        font-size: 32px;
    }
    
    .value-card {
        flex: 1 1 100%;
        min-height: 280px;
    }
}

/* ============================================
   DUAL MARKET EXPERTISE BANNER - Figma Design
   ============================================ */
.expertise-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #2a2a2a;
}

.expertise-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.expertise-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
}

.expertise-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.expertise-banner-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 400;
    color: #F8CA3B;
    margin-bottom: 24px;
    font-style: italic;
}

.expertise-banner-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .expertise-banner-title {
        font-size: 36px;
    }
    
    .expertise-banner-quote {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .expertise-banner {
        padding: 80px 0;
    }
    
    .expertise-banner-title {
        font-size: 28px;
    }
    
    .expertise-banner-quote {
        font-size: 15px;
    }
}

/* ============================================
   WHAT MAKES US DIFFERENT SECTION - Figma Design
   ============================================ */
.differentiators-section {
    padding: 80px 0 100px;
    background-color: #FAF8F5;
}

.differentiators-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.differentiators-header {
    flex: 1;
}

.differentiators-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 12px;
}

.differentiators-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0;
}

.differentiators-right {
    max-width: 400px;
    text-align: right;
    padding-left: 40px;
    border-left: 3px solid #F8CA3B;
}

.differentiators-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Differentiator Cards - Dark Navy */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.diff-card {
    background-color: #1E2A3A;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 24px;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.diff-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: rgba(139, 127, 102, 0.5);
    line-height: 1;
    margin-bottom: 12px;
}

.diff-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.diff-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

@media (max-width: 1200px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .differentiators-row {
        flex-direction: column;
    }
    
    .differentiators-right {
        text-align: left;
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 3px solid #F8CA3B;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .differentiators-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel Navigation */
.diff-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.diff-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    background: transparent;
    color: #6B7280;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-nav-btn:hover {
    border-color: #1E2A3A;
    color: #1E2A3A;
}

/* ============================================
   WHY PARTNER SECTION - Figma Design
   ============================================ */
.why-partner-section {
    padding: 80px 0 100px;
    background-color: #1E2A3A;
}

.why-partner-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-partner-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 16px;
}

.why-partner-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.why-partner-title .highlight {
    color: #F8CA3B;
}

.why-partner-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partner Features Grid - Dark Cards */
.partner-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.partner-feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
}

.partner-feature-card::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 28px;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.partner-feature-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(248, 202, 59, 0.3);
    transform: translateY(-5px);
}

.partner-feature-icon {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 2px solid #F8CA3B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8CA3B;
    font-size: 20px;
    margin-bottom: 24px;
}

.partner-feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.partner-feature-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.partner-feature-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

@media (max-width: 991px) {
    .partner-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-partner-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .partner-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-partner-title {
        font-size: 28px;
    }
}

/* ============================================
   CTA SECTION - Figma Design
   ============================================ */
.about-cta-section {
    padding: 100px 0;
    background-color: #FAF8F5;
    text-align: center;
}

.about-cta-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6B7280;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F8CA3B;
    color: #1E2A3A;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid #F8CA3B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn-primary:hover {
    background-color: #fad564;
    border-color: #fad564;
    color: #1E2A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.about-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #4A5568;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn-outline:hover {
    border-color: #1E2A3A;
    color: #1E2A3A;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .about-hero {
        min-height: 500px;
        height: 60vh;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-content {
        padding: 100px 0 80px;
    }
    
    .about-hero-nav {
        right: 10%;
    }

    .who-we-are-title {
        font-size: 32px;
    }
    
    .core-values-title {
        font-size: 36px;
    }
    
    .differentiators-title {
        font-size: 32px;
    }
    
    .why-partner-title {
        font-size: 36px;
    }
    
    .about-cta-title {
        font-size: 32px;
    }

    .three-pillars-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 450px;
        height: 55vh;
    }
    
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .about-hero-nav {
        right: 5%;
        bottom: 30px;
    }

    .who-we-are-section {
        padding: 60px 0 50px;
    }
    
    .who-we-are-section .col-lg-7 {
        text-align: center;
    }
    
    .who-we-are-video {
        margin-bottom: 40px;
    }

    .who-we-are-section,
    .three-pillars-section,
    .core-values-section,
    .differentiators-section,
    .why-partner-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .pillar-title {
        font-size: 26px;
    }
    
    .who-we-are-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 15px;
    }
    
    .about-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .about-hero {
        min-height: 60vh;
    }

    .about-hero-content {
        padding: 80px 10px 60px;
    }

    .who-we-are-title {
        font-size: 24px;
    }
    
    .core-values-title {
        font-size: 28px;
    }
    
    .differentiators-title {
        font-size: 26px;
    }
    
    .why-partner-title {
        font-size: 26px;
    }
    
    .about-cta-title {
        font-size: 26px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn-primary,
    .about-cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}
