
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  
    /* better mobile behavior than vh */
    min-height: min(100svh, 1000px);
  
    /* don't vertically-center the whole hero */
    display: flex;
    align-items: center;
  
    padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
    isolation: isolate;
  }
  

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

/* UAE Skyline Background */
.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
height: 100%; /* Changed: Was 60% */
    width: 100%;  /* Added: Ensures full width */
    background-image: url('BgImage.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: brightness(0.4) contrast(1.3);
    z-index: 2;
}

/* Base gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 41, 107, 0.92) 0%,
        rgba(46, 77, 161, 0.88) 50%,
        rgba(83, 105, 174, 0.85) 100%
    );
    z-index: 1;
}

/* Dark gradient overlay from top for text readability */
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(
        to bottom,
        rgba(18, 41, 107, 0.95) 0%,
        rgba(18, 41, 107, 0.8) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* Light gradient overlay from bottom */
.hero-light-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(18, 41, 107, 0.9) 0%,
        rgba(18, 41, 107, 0.65) 50%,
        transparent 100%
    );
    z-index: 2;
}

/* Subtle pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.hero-content {
    text-align: left;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1.25rem, 2vw, 1.5rem);
    background: var(--white);
    border-radius: 8px;
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    margin-top: 0;
    color: var(--primary-navy);
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 700;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.75;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.75rem, 3vw, 2.25rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-family: 'Instrument Sans', sans-serif;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-buttons .btn {
    flex: 0 1 auto;
    min-width: fit-content;
}

.hero-image-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.25rem);
  
    /* Responsive width and height that scales with viewport */
    width: min(520px, 100%);
    height: clamp(300px, 40vw, 620px);
    max-width: 100%;
  }

  .hero-image-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  
    /* prevents weird stretching/collapse */
    min-height: 0;
  }
  

  .hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    
  }

.hero-image-item:hover img {
  transform: scale(1.05);
}

.hero-image-with-tags,
.hero-image-with-card {
    position: relative;
}

.hero-tags {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(18, 41, 107, 0.95);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-info-cards {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-image-with-card .hero-info-cards {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-info-card {
    background: var(--white);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    flex: 1;
    backdrop-filter: blur(10px);
}

.info-card-avatars {
    display: flex;
    gap: -0.5rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
    border: 2px solid var(--white);
    margin-left: -5px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-info-card p {
    font-size: 0.75rem;
    color: var(--dark-text);
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.info-card-stat {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.15rem;
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1;
}

.hero-info-card p:last-child {
    font-size: 0.7rem;
    opacity: 0.85;
    line-height: 1.2;
}

/* ============================================
   BUTTON SYSTEM - UNIFIED STYLES
   ============================================ */

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Primary Button - White/Navy (for hero on blue bg) */
.btn-primary {
    background: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-primary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary Button - Dark blue background (for hero) */
.btn-secondary {
    background: var(--primary-navy);
    color: var(--white);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 41, 107, 0.3);
}

/* Blue Button - Secondary blue background */
.btn-blue {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-blue:hover {
    background: #1a5fd4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 212, 0.3);
}

/* Navy Button - Primary navy background */
.btn-navy {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-navy:hover {
    background: #0f2a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 41, 107, 0.3);
}

/* Outline Button - Transparent with border */
.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Large Button */
.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon svg {
    transition: transform 0.3s ease;
}

.btn-icon:hover svg {
    transform: translateX(4px);
}

/* ============================================
   DESIGN SYSTEM - CONSISTENT STYLES
   ============================================ */

/* Section Spacing System */
section {
    padding: 6rem 0;
}

/* Standard Section Header - Used across all pages */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.highlight-text {
    color: var(--secondary-blue);
    position: relative;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-text);
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
}

/* Standard Page Header - Used on all sub-pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================
   SECTION BACKGROUNDS - CONSISTENT PATTERN
   ============================================ */

/* Standard Section Backgrounds */
.section-white {
    background: var(--white);
}

.section-light {
    background: var(--bg-light);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

/* About Home Section */
.about-home-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.about-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(18, 41, 107, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 95, 212, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-home-section .container {
    position: relative;
    z-index: 2;
}

.about-home-section .section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.about-home-section .section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.about-home-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.about-home-section .section-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-home-left {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 95, 212, 0.1) 0%, rgba(18, 41, 107, 0.08) 100%);
    color: var(--secondary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid rgba(26, 95, 212, 0.15);
}

.about-home-left h2 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.75rem;
    margin-top: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.about-home-left p {
    font-size: 1.05rem;
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
}

/* Legacy button classes - standardized */
.btn-about-learn {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 95, 212, 0.25);
}

.btn-about-learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-about-learn:hover::before {
    left: 100%;
}

.btn-about-learn:hover {
    background: #1a5fd4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 212, 0.4);
}

.about-home-center {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 650px;
    box-shadow: 
        0 10px 40px rgba(18, 41, 107, 0.12),
        0 2px 8px rgba(18, 41, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-home-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 41, 107, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-home-center:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(18, 41, 107, 0.15),
        0 4px 12px rgba(18, 41, 107, 0.1);
}

.about-home-center img {
    width: 65%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.about-home-center:hover img {
    transform: scale(1.05);
}

/* Homepage-specific About Us Styles - Larger and More Prominent */
.homepage-about {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #fafbfc 0%, #f8fafc 100%);
}

.homepage-about-grid {
    gap: 5rem;
    align-items: stretch;
}

.homepage-about-left {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-about-heading {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.homepage-about-left p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--dark-text);
    opacity: 0.85;
}

.homepage-about-center {
    min-height: 700px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(18, 41, 107, 0.15),
        0 4px 16px rgba(18, 41, 107, 0.1);
    position: relative;
}

.homepage-about-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 41, 107, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.homepage-about-center img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: 15% center;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.homepage-about-center:hover img {
    transform: scale(1.02);
}

.homepage-about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.homepage-about-card {
    padding: 2rem;
    min-height: auto;
}

.homepage-about-card.about-card-expanded {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1a5fd4 100%);
    border-color: var(--secondary-blue);
    box-shadow: 
        0 12px 40px rgba(26, 95, 212, 0.25),
        0 4px 16px rgba(26, 95, 212, 0.15);
}

.homepage-about-card.about-card-expanded h3,
.homepage-about-card.about-card-expanded p {
    color: var(--white);
}

.homepage-about-card.about-card-expanded .about-card-toggle svg {
    stroke: var(--white);
}

.homepage-about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.homepage-about-card p {
    font-size: 1rem;
    line-height: 1.75;
}

.about-home-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-card {
    background: var(--white);
    border: 1.5px solid rgba(18, 41, 107, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 
        0 2px 12px rgba(18, 41, 107, 0.06),
        0 1px 4px rgba(18, 41, 107, 0.04);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-gold), var(--secondary-blue));
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.about-card:hover::before {
    height: 100%;
}

.about-card:hover {
    box-shadow: 
        0 8px 30px rgba(18, 41, 107, 0.12),
        0 4px 12px rgba(18, 41, 107, 0.08);
    transform: translateY(-4px);
    border-color: rgba(26, 95, 212, 0.2);
}

.about-card-expanded {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1a5fd4 100%);
    border-color: var(--secondary-blue);
    box-shadow: 
        0 10px 35px rgba(26, 95, 212, 0.25),
        0 4px 15px rgba(26, 95, 212, 0.15);
}

.about-card-expanded::before {
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), rgba(255, 215, 0, 0.6));
}

.about-card-expanded:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(26, 95, 212, 0.3),
        0 6px 18px rgba(26, 95, 212, 0.2);
}

.about-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-card-expanded .about-card-header {
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-card-expanded h3 {
    color: var(--white);
}

.about-card-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(18, 41, 107, 0.12);
    border: 2px solid rgba(18, 41, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.about-card-expanded .about-card-toggle {
    background: var(--white);
    color: var(--secondary-blue);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-card-toggle:hover {
    transform: scale(1.15) rotate(90deg);
    background: rgba(26, 95, 212, 0.2);
}

.about-card-expanded .about-card-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.15) rotate(90deg);
}

.about-card-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-expanded .about-card-toggle svg {
    transform: rotate(180deg);
}

.about-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.5s ease, opacity 0.4s ease;
    margin-top: 0;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.about-card-expanded .about-card-content {
    max-height: 500px;
    margin-top: 0;
    opacity: 1;
}

.about-card-content p {
    font-size: 0.975rem;
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.75;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.about-card-expanded .about-card-content p {
    color: var(--white);
    opacity: 0.98;
}

@media (max-width: 1200px) {
    .about-home-section {
        padding: 5rem 0;
    }

    .about-home-section .section-header {
        margin-bottom: 3.5rem;
    }

    .about-home-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-home-right {
        grid-column: span 2;
        flex-direction: row;
        gap: 1rem;
    }
    
    .about-card {
        flex: 1;
        padding: 1.5rem;
    }
}

/* Fix homepage About accordion cards at tablet sizes (768px - 1200px) */
@media (max-width: 1200px) and (min-width: 768px) {
    .about-home-right {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .about-card,
    .homepage-about-card {
        width: 100%;
        max-width: 100%;
        flex: none;
        box-sizing: border-box;
    }

    .about-home-center {
        min-height: 550px;
        padding: 1.75rem;
    }

    .about-home-center img {
        width: 60%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .about-home-section {
        padding: 4rem 0;
    }

    .about-home-section .section-header {
        margin-bottom: 3rem;
    }

    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-home-left {
        padding-right: 0;
    }

    .about-home-center {
        min-height: 400px;
        order: -1;
        border-radius: 12px;
        padding: 1.5rem;
    }

    .about-home-center img {
        width: 55%;
        max-width: 250px;
    }
    
    .about-home-right {
        grid-column: span 1;
        flex-direction: column;
        gap: 1rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.15rem;
    }
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(18, 41, 107, 0.08), transparent);
}

.services-list {
    max-width: 1200px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(18, 41, 107, 0.12);
    border: 1px solid rgba(18, 41, 107, 0.08);
    overflow: hidden;
    position: relative;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-navy), var(--secondary-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-item {
    border-bottom: 1px solid rgba(18, 41, 107, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-blue);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.service-item:hover::before,
.service-item.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item.active {
    background: linear-gradient(135deg, rgba(26, 95, 212, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0 0 30px rgba(26, 95, 212, 0.05);
}

.service-item-header {
    display: flex;
    align-items: flex-start;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item.active .service-item-header {
    padding-bottom: 2rem;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(18, 41, 107, 0.25);
    font-family: 'Instrument Sans', sans-serif;
    min-width: 70px;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.4s ease;
    position: relative;
}

.service-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    transition: width 0.4s ease;
}

.service-item.active .service-number {
    color: var(--secondary-blue);
    font-weight: 400;
    transform: scale(1.1);
}

.service-item.active .service-number::after {
    width: 100%;
}

.service-item-content {
    flex: 1;
}

.service-item h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    position: relative;
}

.service-item:hover h3 {
    color: var(--primary-navy);
    transform: translateX(5px);
}

.service-item.active h3 {
    color: var(--primary-navy);
    transform: translateX(0);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    font-size: 0.8rem;
    color: rgba(18, 41, 107, 0.65);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    background: rgba(18, 41, 107, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-tags span:not(:last-child)::after {
    display: none;
}

.service-item:hover .service-tags span {
    background: rgba(26, 95, 212, 0.1);
    border-color: rgba(26, 95, 212, 0.2);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.service-item.active .service-tags span {
    background: rgba(26, 95, 212, 0.15);
    border-color: rgba(26, 95, 212, 0.3);
    color: var(--secondary-blue);
    font-weight: 600;
}

.service-item-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 3rem;
    opacity: 0;
}

.service-item.active .service-item-expanded {
    max-height: 800px;
    padding: 0 3rem 3rem;
    opacity: 1;
}

.service-expanded-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-expanded-text {
    display: flex;
    flex-direction: column;
}

.service-expanded-text p {
    color: var(--dark-text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
}

.service-item.active .service-expanded-text p {
    color: var(--dark-text);
    opacity: 0.85;
}

.service-expanded-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(18, 41, 107, 0.2);
    height: 350px;
    transition: all 0.4s ease;
}

.service-expanded-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(18, 41, 107, 0.3);
}

.service-expanded-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 212, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.service-expanded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item.active .service-expanded-image img {
    transform: scale(1.05);
}

.btn-service-cta {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
}

.btn-service-cta:hover {
    background: var(--dark-text);
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-list {
        margin: 3rem 1rem 0;
        border-radius: 12px;
    }
    
    .service-item-header {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .service-item.active .service-item-header {
        padding-bottom: 1rem;
    }
    
    .service-item-expanded {
        padding: 0 1.5rem;
    }
    
    .service-item.active .service-item-expanded {
        max-height: 1000px;
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-expanded-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-expanded-image {
        height: 250px;
        order: -1;
    }
    
    .service-expanded-text {
        order: 2;
    }
    
    .service-number {
        min-width: 40px;
        font-size: 1.25rem;
    }
    
    .service-item h3 {
        font-size: 1.25rem;
    }
    
    .service-tags span {
        font-size: 0.8rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(18, 41, 107, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(18, 41, 107, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(18, 41, 107, 0.15);
    border-color: rgba(18, 41, 107, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 41, 107, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-badge {
    background: var(--white);
    color: var(--primary-navy);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-content {
    padding: 2rem 2rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--dark-text);
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: auto;
    font-size: 0.95rem;
    flex-grow: 1;
}

.btn-service-details {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

.btn-service-details:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 41, 107, 0.25);
}

/* Coverage Section */
.coverage-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f9fc 100%);
    padding: clamp(3rem, 8vw, 6.5rem) 0;
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(18, 41, 107, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(26, 95, 212, 0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.coverage-section .container {
    position: relative;
    z-index: 2;
}

.coverage-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.coverage-section .section-header {
    text-align: left;
    margin-bottom: 0;
}

.coverage-section .section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.coverage-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    border-radius: 999px;
}

.coverage-section .section-header p {
    max-width: 640px;
    margin: 1.25rem 0 0;
    font-size: 1.02rem;
    opacity: 0.75;
}

.coverage-slider {
    position: relative;
    margin-top: 3rem;
}

.coverage-grid {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.coverage-grid::-webkit-scrollbar {
    display: none;
}

.coverage-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f5f7fb 100%);
    box-shadow:
        0 10px 40px rgba(18, 41, 107, 0.12),
        0 2px 8px rgba(18, 41, 107, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(18, 41, 107, 0.06);
    flex: 0 0 clamp(280px, 30vw, 360px);
    min-width: 280px;
    max-width: 360px;
    scroll-snap-align: start;
}

.coverage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(26, 95, 212, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.coverage-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 55px rgba(18, 41, 107, 0.18),
        0 6px 16px rgba(18, 41, 107, 0.12);
    border-color: rgba(18, 41, 107, 0.16);
}

.coverage-card:hover::before {
    opacity: 1;
}

.coverage-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.coverage-card-wide {
    grid-column: span 2;
}

.coverage-image {
    position: relative;
    width: 100%;
    height: clamp(180px, 25vw, 220px);
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
}

.coverage-card-large .coverage-image {
    height: 220px;
}

.coverage-card-wide .coverage-image {
    height: 220px;
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: block;
    opacity: 1;
}

.coverage-card:hover .coverage-image img {
    transform: scale(1.1);
}

.coverage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(18, 41, 107, 0.3) 50%,
        rgba(18, 41, 107, 0.85) 100%
    );
    z-index: 1;
}

.coverage-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coverage-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.coverage-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(18, 41, 107, 0.06);
    color: var(--secondary-blue);
    border: 1px solid rgba(18, 41, 107, 0.12);
}

.coverage-type {
    opacity: 0.6;
}

.coverage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.coverage-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.coverage-card-large h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.75rem;
}

.coverage-card p {
    color: var(--dark-text);
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.coverage-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coverage-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #ffffff;
    color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(18, 41, 107, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.coverage-slider-btn svg {
    width: 18px;
    height: 18px;
}

.coverage-slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 41, 107, 0.28);
    background: var(--primary-navy);
    color: #ffffff;
}

.coverage-card-large p {
    font-size: 1.05rem;
}

.coverage-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(18, 41, 107, 0.1);
}

.coverage-features li {
    padding: 0.5rem 0;
    color: var(--dark-text);
    opacity: 0.8;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .coverage-section {
        padding: 5.5rem 0;
    }

    .coverage-header-row {
        align-items: flex-start;
    }

    .coverage-grid {
        gap: 1.5rem;
    }

    .coverage-card {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 4.5rem 0;
    }

    .coverage-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .coverage-slider {
        margin-top: 2.5rem;
    }

    .coverage-grid {
        gap: 1.25rem;
    }

    .coverage-card {
        flex: 0 0 80vw;
        max-width: 80vw;
    }

    .coverage-card-large .coverage-image,
    .coverage-card-wide .coverage-image {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .coverage-card {
        flex: 0 0 88vw;
        max-width: 88vw;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #F6F7FB;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.why-choose-layout {
    display: flex;
    gap: clamp(2rem, 4vw, 2.75rem);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .why-choose-layout {
        flex-direction: column;
        align-items: stretch;
    }
    
    .why-highlight-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.why-highlight-card {
    flex: 0 0 40%;
    max-width: 420px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

@media (max-width: 968px) {
    .why-highlight-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.why-highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-bottom-left-radius: 32px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.why-label {
    font-size: 0.78rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.why-highlight-card h2 {
    margin-top: 2rem;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
}

.why-highlight-card p {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.92;
    max-width: 90%;
}

.why-badges {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.why-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.why-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    row-gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
}

@media (max-width: 768px) {
    .why-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-columns::before {
        display: none;
    }
}

.why-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(18, 41, 107, 0.2), transparent);
    transform: translateX(-50%);
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 768px) {
    .why-column {
        gap: 1.5rem;
    }
}

.why-point h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.why-point p {
    font-size: clamp(0.9rem, 1.5vw, 0.98rem);
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.75;
    max-width: 90%;
}

@media (max-width: 768px) {
    .why-point p {
        max-width: 100%;
    }
}

.why-cta-row {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    justify-content: center;
}

.btn-why-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.875rem, 1.5vw, 1rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 999px;
    border: none;
    background: var(--primary-navy);
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 35px rgba(18, 41, 107, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(18, 41, 107, 0.45);
    background: #0c1b45;
}

/* How It Works - 3 Step Process */
.how-it-works-section {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: #E9ECF4;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-blue);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.process-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.how-it-works-header h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

.process-cards-container {
    display: flex;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: stretch;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.75rem);
    gap: 1.5rem;
    flex: 1;
}

.process-card {
    background: #F6F7FB;
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 18px 35px rgba(18, 41, 107, 0.08);
    display: flex;
    flex-direction: column;
}

.process-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(18, 41, 107, 0.22);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
}

.process-card h4 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--dark-text);
    opacity: 0.78;
    line-height: 1.7;
}

.process-cta-card {
    background: var(--primary-navy);
    color: #ffffff;
    border-radius: 18px;
    padding: 2.75rem 2.5rem;
    width: 360px;
    box-shadow: 0 22px 45px rgba(18, 41, 107, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1.5rem;
}

.process-cta-card h4 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.btn-process-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-process-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    background: #f3f4fb;
}

.btn-process-cta svg {
    width: 16px;
    height: 16px;
}

/* Features Grid - Experience & Capabilities */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #E9ECF0;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(18, 41, 107, 0.15);
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Large background icons for each feature */
.feature-item:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312296b' stroke-width='3'%3E%3Cpath d='M3 12L9 18L21 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    height: 400px;
    bottom: -30%;
    right: -15%;
}

.feature-item:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312296b' stroke-width='3'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6V12L16 14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    height: 400px;
    bottom: -30%;
    right: -15%;
}

.feature-item:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpath d='M12 2L15 8L22 9L17 14L18 21L12 18L6 21L7 14L2 9L9 8L12 2Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    height: 400px;
    bottom: -30%;
    right: -15%;
    opacity: 0.12;
}

.feature-item:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312296b' stroke-width='3'%3E%3Cpath d='M12 1L3 5V11C3 16.55 6.84 21.74 12 23C17.16 21.74 21 16.55 21 11V5L12 1Z'/%3E%3Cpath d='M12 12C10.9 12 10 11.1 10 10C10 8.9 10.9 8 12 8C13.1 8 14 8.9 14 10C14 11.1 13.1 12 12 12Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    height: 400px;
    bottom: -30%;
    right: -15%;
}

.feature-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-navy);
    z-index: 1;
    position: relative;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-light {
    background: #E9ECF0;
}

.feature-featured {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
    color: var(--white);
    grid-column: span 2;
}

.feature-featured .feature-icon {
    color: var(--white);
}

.feature-featured h3 {
    color: var(--white);
    font-size: 1.625rem;
}

.feature-item p {
    color: var(--dark-text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-featured p {
    color: var(--white);
    opacity: 0.95;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-featured {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-featured:hover {
    background: #1a5fd4;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(26, 95, 212, 0.3);
}

.btn-featured svg {
    transition: transform 0.3s ease;
}

.btn-featured:hover svg {
    transform: translateX(4px);
}

.btn-feature-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-feature-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .feature-featured {
        grid-column: span 2;
    }
    
    .feature-item::before {
        width: 300px;
        height: 300px;
    }
    
    .feature-item:nth-child(1)::before,
    .feature-item:nth-child(2)::before,
    .feature-item:nth-child(3)::before,
    .feature-item:nth-child(4)::before {
        width: 300px;
        height: 300px;
    }
    
    .process-cards-container {
        flex-direction: column;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .process-cta-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .feature-featured {
        grid-column: span 1;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-item::before {
        width: 250px;
        height: 250px;
    }
    
    .feature-item:nth-child(1)::before,
    .feature-item:nth-child(2)::before,
    .feature-item:nth-child(3)::before,
    .feature-item:nth-child(4)::before {
        width: 250px;
        height: 250px;
        bottom: -20%;
        right: -10%;
    }
    
    .how-it-works-section {
        margin: 3rem 0 2rem;
    }
    
    .how-it-works-header {
        margin-bottom: 2rem;
    }
    
    .process-cards {
        gap: 1rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .process-card h4 {
        font-size: 1.125rem;
    }
    
    .process-cta-card {
        padding: 2rem;
    }
    
    .process-cta-card h4 {
        font-size: 1.25rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #F6F7FB 0%, #E9ECF0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(18, 41, 107, 0.08), transparent);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 95, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
}

/* Viewport wrapper - clips content */
.testimonials-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    width: 100%;
    position: relative;
    will-change: transform;
}

.testimonial-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(18, 41, 107, 0.1);
    border: 1px solid rgba(18, 41, 107, 0.08);
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--secondary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 16px 60px rgba(18, 41, 107, 0.15);
    border-color: rgba(26, 95, 212, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border: none;
}

.testimonial-featured::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.testimonial-featured .testimonial-text,
.testimonial-featured .testimonial-author-name,
.testimonial-featured .testimonial-author-role {
    color: var(--white);
}

.testimonial-featured .testimonial-quote-icon {
    color: rgba(255, 255, 255, 0.15);
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(18, 41, 107, 0.08);
    z-index: 0;
}

.testimonial-quote-icon svg {
    width: 64px;
    height: 64px;
}

.testimonial-stars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #FFB800;
    flex-shrink: 0;
}

.testimonial-featured .testimonial-stars svg {
    color: #FFD700;
}

.testimonial-text {
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    line-height: 1.85;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

