:root {
    --primary-color: #7b5fed;
    --primary-hover: #694ce6;
    --light-purple: #f4f0ff;
    --light-purple-text: #7b5fed;
    --light-grey: #f5f5f5;
    --text-dark: #111111;
    --text-medium: #444444;
    --text-light: #777777;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --star-color: #ffb800;
}

html {
    overscroll-behavior-x: none;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fcfcfc;
    padding-top: 78px; /* offset for fixed navbar */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 16px 5%;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    /* Explicitly lock font so Tailwind body classes don't bleed in */
    font-family: 'Roboto', sans-serif;
    color: var(--text-medium);
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 176.86px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.55rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.nav-links a {
    font-size: 0.96rem;
    color: var(--text-medium);
    font-weight: 400;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: 'Roboto', sans-serif;
}

.nav-action {
    margin-left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Burger button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.burger-btn:hover {
    background: #f5f0ff;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hide mobile-only contact link on desktop */
.nav-contact-mobile {
    display: none;
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 78px; /* matches navbar height */
        left: 0;
        right: 0;
        max-height: calc(100vh - 78px);
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f0f0f0;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
    }

    .nav-links > a {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
        border-bottom: 1px solid #f5f5f5;
        font-family: 'Roboto', sans-serif;
        color: var(--text-medium);
    }

    .nav-links > a:last-child {
        border-bottom: none;
    }

    /* Contact us button at bottom of mobile menu */
    .nav-contact-mobile {
        display: block !important;
        margin: 12px 16px 4px !important;
        padding: 12px 20px !important;
        background-color: var(--light-purple) !important;
        color: var(--primary-color) !important;
        border-radius: 30px !important;
        text-align: center !important;
        font-weight: 500 !important;
        font-size: 0.95rem !important;
        border-bottom: none !important;
        width: calc(100% - 32px) !important;
    }
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hide the navbar Contact us button on mobile (replaced by bottom menu button) */
@media (max-width: 768px) {
    .nav-action .btn-light-purple {
        display: none;
    }
}

/* ── Dropdown ── */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.96rem;
    color: var(--text-medium);
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.dropbtn:hover {
    color: var(--primary-color);
}

/* Chevron arrow inside dropbtn — hidden on all viewports */
.dropbtn-arrow {
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-6px);
}

/* Transparent bridge fills the gap between button and panel so
   moving the mouse downward doesn't leave the hover zone */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
}

/* small arrow pointer */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Roboto', sans-serif;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f5f0ff;
    color: var(--primary-color);
}

.dropdown-content .dropdown-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f5f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* ── Mobile dropdown ── */
@media (max-width: 768px) {

    /* Kill ALL desktop hover behaviour on mobile — must come before .open rules */
    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: none !important;
        visibility: hidden !important;
    }

    .dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .dropbtn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
        justify-content: space-between;
        border-bottom: 1px solid #f5f5f5;
        font-family: 'Roboto', sans-serif;
        color: var(--text-medium);
    }

    /* Show chevron arrow on mobile dropbtn */
    .dropbtn-arrow {
        display: inline-block !important;
        margin-left: auto;
        font-size: 0.75rem;
        transition: transform 0.25s ease;
    }

    /* Rotate chevron when dropdown is open */
    .dropdown.open > .dropbtn .dropbtn-arrow {
        transform: rotate(180deg);
    }

    /* Active state on open dropbtn */
    .dropdown.open > .dropbtn {
        color: var(--primary-color);
        background: #f8f4ff;
    }

    /* Reset all desktop positioning/animation on dropdown-content */
    .dropdown-content {
        display: none !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        min-height: 0 !important;
        overflow: visible !important;
        width: 100% !important;
        background: #f4f0ff !important;
        padding: 4px 0 !important;
        z-index: 1 !important;
    }

    .dropdown-content::before {
        display: none !important;
    }

    /* Show dropdown when parent has .open class — highest specificity wins */
    .dropdown.open > .dropdown-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .dropdown-content a {
        display: flex !important;
        align-items: center !important;
        gap: 10px;
        padding: 11px 20px 11px 32px;
        font-size: 0.9rem !important;
        color: #333333 !important;
        font-weight: 400;
        font-family: 'Roboto', sans-serif !important;
        white-space: normal;
        border-bottom: 1px solid #e8e0ff;
        background: transparent !important;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-content a:last-child {
        border-bottom: none !important;
    }

    .dropdown-content a:active,
    .dropdown-content a:focus {
        background: #e8e0ff !important;
        color: #7b5fed !important;
    }

    .dropdown-content .dropdown-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        background: #ede8ff;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.8rem;
        color: #7b5fed;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-light-purple {
    background-color: var(--light-purple);
    color: var(--primary-color);
    font-size: 0.96rem;
    padding: 8px 18px;
}

.btn-light-purple:hover {
    background-color: #e8e0ff;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 36px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-light-grey {
    background-color: var(--light-grey);
    color: var(--text-medium);
    padding: 14px 36px;
}

.btn-light-grey:hover {
    background-color: #ebebeb;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Split Layout */
.hero.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    text-align: left;
    padding: 10px 40px 60px;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-left .badge {
    display: inline-flex;
}

.hero-left .hero-actions {
    justify-content: flex-start;
}

.hero-right {
    flex: 0 0 auto;
    width: 420px;
}

/* School of AI Card */
.school-ai-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 28px 20px;
    box-shadow: 0 4px 32px rgba(120, 80, 220, 0.10), 0 1px 6px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    will-change: transform;
    cursor: default;
}

.school-ai-card:hover::before {
    animation: ai-glow-pulse 1.8s ease-in-out infinite alternate;
}

.school-ai-card:hover .ai-icon {
    animation: ai-icon-spin 0.5s ease forwards;
}

.school-ai-card:hover .school-ai-link {
    color: #7c3aed;
    letter-spacing: 0.02em;
}

@keyframes ai-glow-pulse {
    from { opacity: 0.7; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.15); }
}

@keyframes ai-icon-spin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(20deg) scale(1.3); }
    100% { transform: rotate(0deg) scale(1); }
}

.school-ai-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(180, 140, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.school-ai-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(180, 140, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.school-ai-header {
    margin-bottom: 20px;
}

.school-ai-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.school-ai-subtitle {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.school-ai-section {
    margin-bottom: 16px;
}

.school-ai-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-medium);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.school-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.school-ai-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.ai-icon {
    font-size: 1rem;
    background: linear-gradient(135deg, #f5c842, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.school-ai-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-medium);
    text-decoration: none;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.school-ai-link:hover {
    color: var(--text-dark);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #d4ee27; /* Approximate greenish-yellow border */
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    background-color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Image Section */
.image-section {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 500px;
    overflow: visible;
}

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

/* Floating Cards wrapper — desktop cards are absolute, so this is a no-op there */
.cards-row {
    display: contents; /* transparent on desktop — cards use absolute positioning */
}

/* Floating Cards */
.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.left-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    left: -150px;
    top: 33%;
    transform: translateY(-50%);
    width: 220px;
}

.stat-block h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.stat-block p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.stat-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 20px 0;
}

.right-card {
    background-color: var(--white);
    padding: 24px;
    right: -120px;
    bottom: -60px;
    border: 1px solid var(--border-color);
    text-align: center;
    border-radius: 12px;
    min-width: 220px;
}

.right-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--star-color);
    margin-bottom: 12px;
}

.rating-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 8px;
}

.review-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Tablet: pull cards inside the image ── */
@media (max-width: 992px) and (min-width: 769px) {
    .image-section {
        padding: 0 20px;
    }

    .image-container {
        overflow: hidden;
        height: 420px;
    }

    .left-card {
        left: 16px;
        top: 16px;
        transform: none;
        width: 180px;
        padding: 20px 16px;
    }

    .right-card {
        right: 16px;
        bottom: 16px;
        min-width: 180px;
        padding: 16px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .image-section {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    /* Stack image then cards row below */
    .image-container {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: visible;
        border-radius: 0;
    }

    .main-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    /* Cards row: flex side by side below the image */
    .cards-row {
        display: flex;
        gap: 10px;
        margin-top: 12px;
    }

    /* Reset absolute positioning on both cards */
    .floating-card {
        position: static !important;
        transform: none !important;
        animation: none !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    }

    .left-card {
        flex: 1;
        width: auto;
        min-width: 0;
        padding: 16px;
        border-radius: 12px;
        top: auto;
        left: auto;
    }

    .right-card {
        flex: 1;
        min-width: 0;
        width: auto;
        padding: 16px;
        border-radius: 12px;
        right: auto;
        bottom: auto;
        text-align: center;
    }

    .stat-block h3 {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .stat-block p {
        font-size: 0.75rem;
    }

    .stat-divider {
        margin: 8px 0;
    }

    .right-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .stars {
        gap: 3px;
        font-size: 0.85rem;
        margin-bottom: 4px;
        justify-content: center;
    }

    .rating-text {
        font-size: 0.8rem;
        margin-left: 4px;
    }

    .review-count {
        font-size: 0.72rem;
    }
}

/* Trusted Clients Section */
.trusted-clients {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    margin-top: 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1250px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .clients-grid {
        gap: 30px;
    }
    
    .client-logo img {
        height: 50px;
    }
}

/* Products & Services Section */
.products-services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background-color: #f7f9fce9;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.product-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding-right: 0;
    padding-bottom: 0;
    min-height: 480px;
}

.product-card.full-width .card-content {
    flex: 1;
    max-width: 50%;
    padding-bottom: 40px;
}

.product-card.full-width .card-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

.product-card.full-width .card-action-top {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    margin-bottom: 30px;
    z-index: 10;
}

.product-card.full-width .btn-learn-more {
    font-size: 1.05rem;
    padding: 12px 28px;
    border-radius: 40px;
    background-color: #ededed; /* Grey button as in image */
    color: var(--text-dark);
}

.product-card.full-width .btn-learn-more:hover {
    background-color: #e2e2e2;
}

.product-card.full-width .card-image {
    width: 100%;
    margin-bottom: -15%;
    margin-right: -40px;
    display: flex;
    justify-content: flex-end;
}

.product-card.full-width .card-image img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    object-position: left top;
    border-top-left-radius: 12px;
    box-shadow: -15px -15px 40px rgba(0,0,0,0.04);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.taptap-icon, .bbx-icon { background-color: #000; color: #00e676; }
.pg-icon { background-color: #6200ea; }
.train-icon { background-color: #ff9100; }
.place-icon { background-color: #651fff; }

.brand-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.brand-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-small {
    padding: 10px 28px;
    font-size: 1.1rem;
    background-color: #e2e8f0;
    color: var(--text-dark);
}

.btn-small:hover {
    background-color: #cbd5e1;
}

.card-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-card.full-width .card-title {
    font-size: 2.1rem;
}

.card-desc {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.full-width {
        flex-direction: column;
        padding-right: 32px;
        padding-bottom: 0px;
    }
    
    .product-card.full-width .card-content {
        max-width: 100%;
        padding-bottom: 0px;
    }
    
    .product-card.full-width .card-action-top {
        justify-content: flex-start;
        padding-right: 0;
    }

    .product-card.full-width .card-image {
        margin-right: -32px;
    }
}

/* Latest News Section */
.latest-news {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.latest-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-view-all {
    padding: 10px 24px;
    font-size: 0.95rem;
    background-color: #f0f0f0;
    color: var(--text-dark);
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-view-all:hover {
    background-color: #e2e2e2;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.news-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.news-image-wrap {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    background-color: #f0f0f0;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.news-image.news-image-cover {
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
}

.title-icon {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.news-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.news-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}

.tag-purple {
    background-color: #f4f0ff;
    color: #7b5fed;
}

.tag-blue {
    background-color: #f0f7ff;
    color: #007bff;
}

.tag-orange {
    background-color: #fff5f0;
    color: #ff6b00;
}

.tag-green {
    background-color: #f0fff5;
    color: #1a8a47;
}

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

@media (max-width: 600px) {
    .latest-news-grid {
        grid-template-columns: 1fr;
    }

    .latest-news {
        padding: 0 20px;
    }
}

/* Results Section */
.results-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.results-header .section-title {
    font-size: 3rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.results-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.results-col:first-child .metric-card:first-child { flex: 0.8; } /* Student Score Improvement */
.results-col:first-child .metric-card:last-child  { flex: 1.2; } /* Avg. Employability Score */
.results-col:last-child  .metric-card:first-child { flex: 1.2; } /* Confidence Boost */
.results-col:last-child  .metric-card:last-child  { flex: 0.8; } /* Recommendations */

.metric-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.metric-header h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background-color: #e6fcf0;
    color: #00c853;
    border: 1px solid #bdf2d5;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-badge i {
    font-size: 0.75rem;
}

.metric-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.metric-image {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
    margin-top: 10px;
}

/* Coded Charts */
.chart-wrap {
    margin-top: 12px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.line-chart-svg,
.radar-svg,
.donut-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Horizontal Bar Chart */
.hbar-chart {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

.hbar-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hbar-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.hbar-track {
    width: 100%;
    background: #ece8fd;
    border-radius: 4px;
    height: 28px;
    overflow: hidden;
    position: relative;
}

.hbar-fill {
    height: 100%;
    background: #8c6cf5;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.hbar-val {
    display: none;
}

.hbar-axis {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 4px;
}

/* Donut / semicircle */
.donut-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    flex: 1;
}

.donut-svg {
    width: 85%;
    max-width: 260px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* Awards Section */
.awards-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.awards-header {
    margin-bottom: 60px;
    text-align: left;
}

.awards-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.awards-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(90deg, #7162bd 0%, #57a0b8 50%, #68cfb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 32px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* ── Flip card container ── */
.award-card {
    perspective: 1200px;
    height: 310px;
    cursor: pointer;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.award-card:hover {
    box-shadow: 0 16px 40px rgba(99,71,211,0.25);
}

.award-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 22px;
}

.award-card:hover .award-card-inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

/* ── Front & Back shared ── */
.award-card-front,
.award-card-back {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Front face ── */
.award-card-front {
    background: #f5f5f7;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 1px solid #e0e0e6;
    transform: rotateY(0deg);
}

/* Top coloured accent bar */
.award-card-front::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7b5fed, #5eadd4, #a78bfa);
    border-radius: 22px 22px 0 0;
    z-index: 3;
}

/* No grid overlay */
.award-card-front::after {
    content: none;
}

/* Image frame */
.award-img-frame {
    width: 100%;
    height: 200px;
    margin: 0;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(160deg, #eef0ff 0%, #f8f8ff 100%);
    border: none;
    border-bottom: 1px solid #e8e8ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transform: translateZ(1px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.award-card-front img {
    width: auto;
    height: 140px;
    max-width: 85%;
    object-fit: contain;
    display: block;
    padding: 0;
    border-radius: 0;
    filter: none;
    transition: transform 0.4s ease;
}

.award-card:hover .award-card-front img {
    transform: scale(1.08);
}

.award-front-body {
    width: 100%;
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 0 0 22px 22px;
    flex: 1;
    justify-content: center;
}

.award-front-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.award-front-sub {
    font-size: 0.75rem;
    color: #9b9baf;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Star badge — hidden */
.award-star {
    display: none;
}

/* Shimmer sweep */
.award-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,0.08) 50%,
        transparent 65%
    );
    background-size: 250% 100%;
    background-position: 250% 0;
    border-radius: 22px;
    z-index: 5;
    pointer-events: none;
}

.award-card:hover .award-shine {
    background-position: -250% 0;
    transition: background-position 0.8s ease;
}

/* ── Back face — each card gets its own gradient via nth-child ── */
.award-card-back {
    transform: rotateY(180deg);
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 30px 26px;
    text-align: center;
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.award-card:nth-child(2) .award-card-back {
    background: linear-gradient(145deg, #0f2027 0%, #134e5e 55%, #1a7a8a 100%);
}
.award-card:nth-child(3) .award-card-back {
    background: linear-gradient(145deg, #1a0533 0%, #4a1278 55%, #7b2fbf 100%);
}
.award-card:nth-child(4) .award-card-back {
    background: linear-gradient(145deg, #0d1f2d 0%, #1b4332 55%, #2d6a4f 100%);
}
.award-card:nth-child(5) .award-card-back {
    background: linear-gradient(145deg, #1c1a2e 0%, #3b2d6e 55%, #6247c9 100%);
}
.award-card:nth-child(6) .award-card-back {
    background: linear-gradient(145deg, #1a0a00 0%, #7c2d00 55%, #c2410c 100%);
}

/* decorative circles on back */
.award-back-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -60px;
    right: -50px;
    pointer-events: none;
}

.award-back-glow::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

.award-back-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.award-back-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.award-card-back p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.award-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .awards-title {
        font-size: 2.2rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .award-card {
        height: 300px;
    }

    .award-img-frame {
        height: 130px;
        margin: 14px 12px 0;
    }

    .award-card-front img {
        height: 95px;
    }
}

@media (max-width: 540px) {
    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .award-card {
        height: 270px;
    }
}

.award-item {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-item img {
    width: 120px;
    height: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .awards-title {
        font-size: 2.2rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    
    .award-card {
        height: 240px;
    }
}

/* Anniversary Section */
.anniversary-section {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.anniversary-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.anniversary-logo {
    flex-shrink: 0;
}

.anniversary-logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.anniversary-content {
    flex: 1;
}

.anniversary-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.decade-gradient {
    background: linear-gradient(90deg, #6fd3ae 0%, #46abb1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.anniversary-text {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
    max-width: 950px;
}

@media (max-width: 768px) {
    .anniversary-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .anniversary-title {
        font-size: 2rem;
    }
    
    .anniversary-logo img {
        max-width: 150px;
    }
}

/* Trusted Colleges Region Section */
.trusted-colleges-region {
    padding: 60px 5%;
}

.region-container {
    background-color: #fdf5f0;
    border-radius: 24px;
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.region-content {
    flex: 1;
    max-width: 650px;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Slightly tighter gap */
    font-size: 0.85rem; /* Smaller font matching the image */
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px; /* More letter spacing for small caps look */
    margin-bottom: 25px;
}

.region-badge svg {
    transform: rotate(45deg); /* Tilted pin to match original */
}

.region-content h2 {
    font-size: 3rem; /* Slightly smaller to match proportion */
    line-height: 1.2;
    color: #2b2d31; /* Darker, crisper color */
    margin-bottom: 24px;
    font-weight: 400; /* Medium weight */
}

.region-content p {
    font-size: 1.1rem;
    color: #55585b; /* Grayer text matching image */
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 100%;
}

.btn-white {
    background-color: var(--white);
    color: #4a4d52; /* More subtle button text color */
    padding: 14px 34px;
    border-radius: 40px; /* Fully rounded pill shape */
    font-size: 0.95rem; /* Smaller font inside button */
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    border: none; /* No border, cleaner look */
}

.btn-white.shadow-sm {
    box-shadow: 0 4px 14px rgba(0,0,0,0.06); /* Softer, slightly more visible shadow */
}

.btn-white:hover {
    background-color: #fcfcfc;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.region-map {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map-image {
    max-width: 100%;
    height: auto;
    width: 520px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .region-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .region-content {
        max-width: 100%;
        text-align: center;
    }
    
    .region-map {
        justify-content: center;
        margin-top: 40px;
    }
    
    .region-content h2 {
        font-size: 2.5rem;
    }
}

/* Milestones Section */
.milestones-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--white);
    margin-top: 40px;
    margin-bottom: 60px;
}

.milestones-title {
    font-size: 2rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 50px;
}

.milestones-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

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

.milestone-number {
    font-size: 3.2rem;
    color: #8c6cf5; /* Matched to the soft purple in the image */
    font-weight: 350;
    line-height: 1.1;
    margin-bottom: 5px;
}

.milestone-text {
    font-size: 1.5rem;
    color: #3b3f46;
    font-weight: 400;
}

@media (max-width: 768px) {
    .milestones-grid {
        gap: 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .milestone-item {
        text-align: center;
    }
}

/* Collaborations Section */
.collaborations-section {
    padding: 60px 5%;
    margin-bottom: 80px;
}

.collaborations-container {
    background-color: #f2f5fc; /* Soft bluish-gray background */
    border-radius: 20px;
    padding: 80px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

.collaborations-content {
    flex: 1;
    max-width: 800px;
}

.collab-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #7b8084;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.collab-title {
    font-size: 3rem;
    line-height: 1.15;
    color: #2b2d31;
    margin-bottom: 28px;
    font-weight: 400;
}

.collab-desc {
    font-size: 1.15rem;
    color: #55585b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
}

.collab-btn {
    border-radius: 40px;
    padding: 14px 34px;
}

.collaborations-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
}

.logo-circles-wrapper {
    position: relative;
    width: 450px;
    height: 350px;
}

.circle-logo {
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 15px;
}

.circle-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Specific positioning to match the uploaded image precisely */
.logo-ap {
    bottom: 20px;
    left: 30px;
    width: 150px;
    height: 150px;
}

.logo-tn {
    top: 20px;
    right: 150px;
    width: 150px;
    height: 150px;
}

.logo-task {
    bottom: 20px;
    right: 0px;
    width: 150px;
    height: 150px;
}

@media (max-width: 1100px) {
    .collaborations-container {
        flex-direction: column;
        padding: 60px 40px;
    }
    
    .collaborations-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .collaborations-visual {
        width: 100%;
    }
    
    .logo-circles-wrapper {
        width: 100%;
        max-width: 500px;
        transform: scale(0.8);
    }
}

@media (max-width: 600px) {
    .collab-title {
        font-size: 2.5rem;
    }
    .logo-circles-wrapper {
        transform: scale(0.6);
        left: -15%;
    }
}

/* PG Programs Section */
.pg-programs-section {
    padding: 90px 80px 110px 80px;
}

.pg-programs-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 42px;
    align-items: start;
}

.pg-programs-left {
    padding-top: 80px;
    max-width: 520px;
}

.pg-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    color: #2f3135;
    margin-bottom: 18px;
}

.pg-subtitle {
    font-size: 1.5rem;
    color: #52555b;
    font-weight: 400;
    margin-bottom: 24px;
}

.pg-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #575b61;
    margin-bottom: 30px;
}

.pg-btn {
    padding: 14px 36px;
    border-radius: 999px;
    color: #4d4f55;
    font-size: 1rem;
}

.pg-programs-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.uni-card {
    background: #dedede;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.uni-card-top {
    padding: 18px 18px 14px;
}

.uni-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.uni-card-description {
    font-size: 0.90rem;
    line-height: 1.45;
    color: #3f4248;
}

.uni-brand img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.uni-brand h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2d31;
    margin-bottom: 2px;
}

.uni-brand span {
    display: block;
    font-size: 0.9rem;
    color: #6f7278;
}

.uni-card-top p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #3f4248;
}

.uni-card-image {
    width: 100%;
    flex: 1;
    min-height: 145px;
    object-fit: cover;
    display: block;
    background-color: #fff;
}

@media (max-width: 1200px) {
    .pg-programs-container {
        grid-template-columns: 1fr;
    }

    .pg-programs-left {
        max-width: 760px;
        padding-top: 20px;
    }
}

@media (max-width: 900px) {
    .pg-title {
        font-size: 3rem;
    }

    .pg-subtitle {
        font-size: 1.55rem;
    }

    .pg-programs-right {
        grid-template-columns: 1fr;
    }
}

/* Companies Section */
.companies-section {
    background-color: #ececec;
    padding: 90px 80px 90px 80px;
}

.companies-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.companies-left {
    padding-top: 30px;
    max-width: 650px;
}

.companies-title {
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 400;
    color: #101114;
    margin-bottom: 20px;
}

.companies-subtitle {
    font-size: 1.15rem; /* Increased font size slightly more */
    line-height: 1.4;
    color: #555960;
    font-weight: 200;
    margin-bottom: 30px;
    max-width: 44ch; /* Expanded line width to secure ~7 words per line */
}

.companies-description {
    font-size: 1.05rem; /* Increased font size slightly more */
    line-height: 1.65;
    color: #5a5e66;
    max-width: 48ch; /* Expanded line width to secure ~7 words per line */
}

.companies-right {
    padding-top: 10px;
}

.companies-right img {
    width: 100%;
    max-width: 950px; 
    transform: scale(1.30) translateX(-4%); /* Zoomed and shifted slightly more to the left */
    transform-origin: center;
    height: auto;
    object-fit: contain;
    /* Adjusted the fade-out effect on the left edge so it's not too aggressive */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 85%, transparent 100%);
}

.logo-wall img {
    width: 100%;
    /* max-width: 122px; */
    height: auto;
    object-fit: contain;
    opacity: 0.93;
    justify-self: center;
}

@media (max-width: 1200px) {
    .companies-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .companies-left {
        max-width: 760px;
        padding-top: 0;
    }

    .companies-description {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .companies-title {
        font-size: 2.85rem;
    }

    .companies-subtitle {
        font-size: 1.35rem;
    }

    .logo-wall {
        grid-template-columns: repeat(4, minmax(64px, 1fr));
        gap: 16px 16px;
    }

    .logo-wall img {
        height: 30px;
    }
}

/* Webinars Section */
.webinars-section {
    background-color: #f4f6fb;
    padding: 30px 90px; /* Greatly reduced top and bottom padding */
    overflow: hidden; /* Hide overflowing grid items */
    --card-width: clamp(200px, 14vw, 233.44px);
    --card-gap: 42px;
}

.webinars-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
}

.webinars-left {
    padding-bottom: 0px; /* Removed the massive 200px padding below the text */
    /* margin-top: -46px; */
    align-items: start;
}

.webinars-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    color: #101114;
    margin-bottom: 18px;
}

.webinars-subtitle {
    font-size: 1.25rem;
    line-height: 1.35;
    color: #6d727b;
    font-weight: 300;
    margin-bottom: 24px;
}

.webinars-description {
    font-size: 1rem;
    line-height: 1.55;
    color: #838890;
    font-weight: 400;
}

.webinars-right {
    height: 480px; /* Reduced from 700px to act as a tighter scroll window */
    position: relative;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--card-width));
    gap: var(--card-gap);
    position: absolute;
    top: -50px; /* Shift the whole grid up slightly */
    width: 100%;
    justify-content: right;
}

.webinars-col {
    overflow: hidden;
    position: relative;
    height: 100%; /* Fill the grid height securely */
    /* Add a smooth top-bottom fade out so scrolling items disappear gracefully */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, transparent 100%);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    will-change: transform;
}

/* Scroll from top to bottom */
.track-down {
    animation: scrollDown 22s linear infinite;
}

/* Scroll from bottom to top */
.track-up {
    animation: scrollUp 22s linear infinite;
}

/* Hover to pause animations */
.webinars-grid:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollDown {
    /* Translate exactly one complete set (50% of track height + half a gap) */
    0% { transform: translateY(calc(-50% - (var(--card-gap) / 2))); }
    100% { transform: translateY(0); }
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - (var(--card-gap) / 2))); }
}

/* Stagger columns using margin so overflow container stays in place */
.webinars-col-1 { margin-top: -60px; }
.webinars-col-2 { margin-top: 20px; }
.webinars-col-3 { margin-top: -120px; }

.speaker-card {
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    width: var(--card-width);
    flex-shrink: 0;
}

.speaker-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

.speaker-info {
    padding: 16px 20px 22px;
    text-align: center;
}

.speaker-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.speaker-info p {
    font-size: 0.75rem;
    color: #555;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .webinars-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .webinars-left {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }
    
    .webinars-right {
        height: auto;
        padding-top: 40px;
    }

    .webinars-grid {
        position: relative;
        top: 0;
    }

    .webinars-col {
        transform: translateY(0) !important; /* Remove stagger on mobile */
        margin-top: 0 !important;
    }
}

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

/* Team Section */
.team-section {
    padding: 100px 5% 120px;
    background-color: var(--white);
    max-width: 1540px;
    margin: 0 auto;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.team-header-content {
    max-width: 800px;
}

.team-header-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.team-header-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.btn-lime {
    background-color: #c4f014; /* Lime green from image */
    color: #000;
    padding: 14px 44px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-lime:hover {
    background-color: #b3df0e;
}

.team-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;          /* hide overflow — animation handles movement */
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
     height: 500px;      /* Increase as needed */
    align-items: center; /* Centers the cards vertically */
    padding: 20px 0;
}

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

/* Inner track that actually animates */
.team-grid-track {
    display: flex;
    gap: 20px;
    animation: scrollTeam 45s linear infinite;
    will-change: transform;
}

.team-grid:hover .team-grid-track {
    animation-play-state: paused;
}

@keyframes scrollTeam {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.team-card {
    flex: 0 0 320px;
    width:380px;      /* Keep same */
    height:360px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s ease;
    position:relative;
    background:#ffffff;
}
.team-card::before{
    content:"";
    position:absolute;

    width:340px;
    height:340px;

    left:50%;
    top:45px;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(124,58,237,.75) 0%,
        rgba(139,92,246,.45) 40%,
        rgba(139,92,246,.18) 65%,
        transparent 90%
    );

    filter:blur(45px);

    z-index:1;
}
.team-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:170px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
    pointer-events:none;
}
.team-member-img {
    width:100%;
    height:420px;
    object-fit:cover;
    transition:transform .5s ease;
    position:relative;
z-index:2;
}
.team-card:hover .team-member-img{
    transform:scale(1.08);
}
/* Apply specific tint for Anuradha's card image specifically to mirror original */
/* .primary-card .team-member-img {
    background-color: #e5e5e5;
} */

.team-info{
    position:absolute;
    left:10px;
    right:10px;
    bottom:5px;

    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-radius:16px;

    padding:13px;

    z-index:5;
}

.team-info h5{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:2px;
}

.team-info p{
    font-size:13px;
    color:#444;
}

/* Hover: violet fill on the info area */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}



/* Primary Card overrides (Anuradha's block with purple footer) */
/* .primary-card .team-info {
    background-color: #ffffff; /* White by default like all cards 
    color: #111;
} */

.primary-card .team-info h3 {
    color: #111;
}

.primary-card .team-info p {
    color: #777;
}

@media (max-width: 992px) {
    .team-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-header-content p br {
        display: none; /* Let text wrap naturally on smaller screens */
    }
}

/* Testimonials / Students Section */
.testimonials-section {
    padding: 100px 5% 120px;
    background-color: #fafafa; /* Very light gray to match image bg */
    max-width: 1540px;
    margin: 0 auto;
    overflow: hidden; /* Prevent bubble from breaking out too far */
    
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.testimonials-header-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.testimonials-header-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #2b2d31;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.testimonials-header-content p {
    font-size: 1.15rem;
    color: #5d6368;
    line-height: 1.6;
}

/* Creating the large purple speech bubble via CSS shapes */
.testimonials-header-visual {
    position: absolute;
    right: 0;
    top: -120%; /* Shifted upward as it flows out of the top bounds in the image */
    z-index: 1;
}

.speech-bubble {
    width: 320px;
    height: 260px;
    background-color: #8c6cf5;
    border-radius: 32px;
    position: relative;
}

/* Adding the tail to the speech bubble */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -38px;
    right: 60px;
    width: 50px;
    height: 60px;
    background-color: #8c6cf5;
    border-bottom-right-radius: 32px;
    box-shadow: -10px -20px 0 10px #8c6cf5, inset -20px -20px 0 20px #8c6cf5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.testimonials-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;          /* hide overflow — animation handles movement */
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
    height: 390px;      /* Increase as needed */
    align-items: center; /* Centers the cards vertically */
    padding: 20px 0;
    
}

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

/* Inner track that actually animates */
.testimonials-grid-track {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 80s linear infinite;
    will-change: transform;
}
.testimonials-grid-track-reverse {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 80s linear infinite reverse;
    will-change: transform;
}
.testimonials-grid:hover .testimonials-grid-track{
    animation-play-state: paused;

}
.testimonials-grid:hover .testimonials-grid-track-reverse{
    animation-play-state: paused;

}

@keyframes scrollTestimonials {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.video-card {
    flex: 0 0 340px;
    min-width: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-card::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    height: 45%;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 10px;
    object-fit: cover;
    background-color: #111;
    display: block;
}

/* Specifically style the native video controls if possible to dark theme */
video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

@media (max-width: 900px) {
    .testimonials-header-content h2 {
        font-size: 2.8rem;
    }
    
    .testimonials-header-content p br {
        display: none;
    }
    
    .video-card {
        flex: 0 0 85%;
    }
    
    .speech-bubble {
        transform: scale(0.6) translate(30%, -50%);
        opacity: 0.3; /* Wash it out if on small device blocking text */
    }
}

/* Footer */
.site-footer {
    padding: 72px 5% 64px;
    background-color: #f3f3f4;
    color: #4a4a4a;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    border-top: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 78px;
    justify-content: space-between;
}

.footer-left {
    flex: 0 0 35%;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-brand img {
    width: 313px;
    height: 86.35px;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    color: #666;
    line-height: 1.5;
    margin-bottom: 28px;
    font-size: 0.95rem;
    max-width: 323px;
}

.footer-app-links {
    margin-top: 36px;
}

.footer-heading {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 42px;
    height: 2px;
    background-color: #ff8a65; /* Matches salmon red */
}

.app-buttons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.app-buttons img {
    width: 183.59px;
    height: 54.41px;
    object-fit: cover;
}

.app-btn {
    width: 180px;
    height: 55px;
    border-radius: 6px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 15px;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-small {
    font-size: 0.65rem;
    line-height: 1.1;
    color: #ddd;
    text-transform: uppercase;
}

.app-btn-large {
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 500;
    margin-top: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    line-height: 1.55;
}

.footer-column ul li a:hover {
    color: #111;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-addresses p {
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-left {
        flex: none;
    }

    .footer-logo-brand img {
        width: min(313px, 100%);
        height: auto;
    }

    .app-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.nav-logo-icon {
    width: 32px;
    height: auto;
    object-fit: contain;
}

/* Meet Our Team Page */
.team-page {
    background-color: #f3f3f4;
    min-height: 100vh;
}

.team-navbar {
    background-color: inherit;
}

.team-logo-link {
    display: inline-flex;
    align-items: center;
}

.team-logo {
    width: 168px;
    height: auto;
}

.team-main {
    max-width: 1440px;
    margin: 0 auto;
}

.team-hero-section {
    min-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f4f5f8;
    padding: 80px 24px 90px;
    gap: 0;
}

.team-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #d4a800;
    border-radius: 999px;
    padding: 6px 18px;
    background-color: #ffffff;
    color: #3a3a3a;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.team-hero-title {
    font-size: clamp(3.6rem, 5vw, 6.15rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #020307;
    margin-bottom: 24px;
}

.team-hero-subtitle {
    max-width: 560px;
    color: #555b6e;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 44px;
}

.team-hero-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 202px;
    padding: 14px 36px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, #7f69ea 0%, #6f58db 100%);
    font-size: 1.05rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(111, 88, 219, 0.3);
}

.team-culture-section {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 510px);
    gap: 56px;
    align-items: center;
    padding: 40px 90px 70px;
}

.team-culture-copy {
    max-width: 620px;
}

.team-culture-copy h2 {
    font-size: clamp(2rem, 3.05vw, 3.35rem);
    line-height: 1.3;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
    color: #080a0f;
    margin-bottom: 24px;
}

.team-quote-mark {
    color: #7d66ea;
    margin-right: 8px;
    font-style: normal;
    font-weight: 700;
}

.team-culture-copy p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #5e6269;
    max-width: 610px;
}

.team-culture-visual {
    justify-self: end;
    width: min(100%, 510px);
}

.team-culture-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.team-founder-section {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 269px 1fr;
    gap: 28px;
    align-items: start;
    padding: 18px 14px 80px;
}

.team-founder-card {
    overflow: hidden;
    border-radius: 14px;
    background-color: #ffffff;
}

.team-founder-photo {
    width: 100%;
    height: 297px;
    object-fit: cover;
    display: block;
}

.team-founder-meta {
    background-color: #7e63ea;
    color: #ffffff;
    padding: 16px;
}

.team-founder-meta h3 {
    font-size: 1.85rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 6px;
}

.team-founder-meta p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.team-founder-content {
    color: #4f545b;
    border: 1px solid #e4e4e6;
    border-left: 0;
    border-right: 0;
}

.team-founder-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    padding: 10px 18px 22px;
}

.team-founder-quote {
    font-size: 1.85rem;
    line-height: 1.45;
    font-style: italic;
    color: #2c3036;
    margin: 0;
    padding: 0 18px 22px;
    border-top: 1px solid #ececef;
}

.team-founder-points {
    list-style: none;
    margin: 0;
    padding: 10px 18px 0;
    border-top: 1px solid #ececef;
}

.team-founder-points li {
    position: relative;
    padding-left: 26px;
    font-size: 1.125rem;
    line-height: 2.1;
    color: #5a5f66;
}

.team-founder-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #666b73;
}

.team-founder-points strong {
    font-weight: 600;
    color: #2d3239;
}

.team-members-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 10px 14px 120px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 26px;
    align-items: start;
}

.member-tile {
    background: #f5f5f5;
    border-radius: 9px;
    height: 314px;
    position: relative;
    overflow: hidden;
}

.member-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.member-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 6px;
    padding: 10px 12px;
    backdrop-filter: blur(1px);
}

.member-overlay h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    color: #1f2328;
    font-weight: 500;
    margin-bottom: 3px;
}

.member-overlay p {
    font-size: 0.78rem;
    color: #6a7078;
    line-height: 1.3;
}

.member-tile:nth-child(2) img {
    object-position: center 12%;
}

.member-tile:nth-child(3) img {
    object-position: center 6%;
}

.member-tile:nth-child(4) img {
    object-position: center 5%;
}

.member-tile:nth-child(5) img {
    object-position: center 5%;
}

.member-tile:nth-child(6) img {
    object-position: center 5%;
}

.member-tile:nth-child(7) img {
    object-position: center 5%;
}

.member-tile:nth-child(8) img {
    object-position: center 5%;
}

.team-philosophy-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 34px 86px 120px;
}

.team-philosophy-header {
    text-align: center;
    margin-bottom: 28px;
}

.team-philosophy-header h2 {
    font-size: 3.1rem;
    line-height: 1.15;
    font-weight: 500;
    color: #30343a;
    margin-bottom: 8px;
}

.team-philosophy-header p {
    font-size: 1rem;
    color: #656a72;
}

.team-philosophy-layout {
    display: grid;
    grid-template-columns: minmax(380px, 520px) 1fr;
    align-items: center;
    gap: 40px;
}

.team-philosophy-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.team-philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: min(604px, 100%);
    justify-self: start;
    padding-bottom: 0;
}

.team-philosophy-point {
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.45;
    color: #666a71;
    background-color: #f6f6f6;
    border-radius: 3px;
    padding: 0 22px;
}

@media (max-width: 1024px) {
    .team-hero-section {
        min-height: unset;
        padding-top: 20px;
    }

    .team-hero-badge {
        font-size: 1rem;
    }

    .team-hero-cta {
        font-size: 1.2rem;
    }

    .team-culture-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 24px 56px;
    }

    .team-culture-copy {
        max-width: 100%;
    }

    .team-culture-visual {
        justify-self: center;
    }

    .team-founder-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 24px 60px;
    }

    .team-founder-card {
        max-width: 360px;
    }

    .team-founder-content {
        border-left: 1px solid #e4e4e6;
        border-right: 1px solid #e4e4e6;
    }

    .team-members-section {
        padding: 0 24px 80px;
    }

    .team-members-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .team-philosophy-section {
        padding: 20px 24px 90px;
    }

    .team-philosophy-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .team-philosophy-illustration {
        max-width: 520px;
        justify-self: center;
    }

    .team-philosophy-points {
        width: 100%;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .team-navbar .nav-links {
        display: none;
    }

    .team-hero-section {
        min-height: unset;
        justify-content: flex-start;
        padding: 40px 16px 50px;
    }

    .team-hero-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

    .team-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 95%;
    }

    .team-culture-section {
        padding: 20px 16px 40px;
    }

    .team-culture-copy h2 {
        font-size: 1.75rem;
    }

    .team-culture-copy p {
        font-size: 1rem;
    }

    .team-founder-section {
        grid-template-columns: 1fr;
        padding: 0 16px 48px;
        gap: 16px;
    }

    .team-founder-card {
        max-width: 100%;
        width: 100%;
    }

    .team-founder-photo {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: top center;
    }

    .team-founder-meta h3 {
        font-size: 1.3rem;
    }

    .team-founder-meta p {
        font-size: 0.95rem;
    }

    .team-founder-intro {
        font-size: 1rem;
        line-height: 1.5;
        padding-left: 14px;
        padding-right: 14px;
    }

    .team-founder-quote {
        font-size: 1.3rem;
        padding-left: 14px;
        padding-right: 14px;
    }

    .team-founder-points {
        padding-left: 14px;
        padding-right: 14px;
    }

    .team-founder-points li {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 18px;
        margin-bottom: 12px;
    }

    .team-members-section {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 64px;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .member-tile {
        height: 260px;
        border-radius: 14px;
    }

    .member-overlay {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 8px 10px;
    }

    .member-overlay h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .member-overlay p {
        font-size: 0.75rem;
    }

    .team-philosophy-section {
        padding: 0 16px 70px;
    }

    .team-philosophy-header {
        margin-bottom: 20px;
    }

    .team-philosophy-header h2 {
        font-size: 1.9rem;
    }

    .team-philosophy-points {
        width: 100%;
    }

    .team-philosophy-point {
        font-size: 1rem;
        line-height: 1.5;
        padding: 12px 14px;
        min-height: unset;
    }
}

/* ── Team page: very small phones (≤400px) ── */
@media (max-width: 400px) {
    .team-members-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .member-tile {
        height: 280px;
    }

    .member-overlay h3 {
        font-size: 1rem;
    }

    .member-overlay p {
        font-size: 0.78rem;
    }

    .team-hero-title {
        font-size: 2.2rem !important;
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES  (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* ── Global section padding ── */
    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    /* Featured apps strip and companies section need full width */
    .featured-apps-strip,
    .featured-apps-track-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* ── Hero ── */
    .hero {
        padding: 48px 20px 40px;
        text-align: center;
    }
    .hero.hero-split {
        flex-direction: column;
        text-align: center;
        padding: 32px 16px 32px;
        gap: 24px;
    }
    .hero-left .hero-actions {
        justify-content: center;
    }
    .hero-right {
        width: 100%;
    }
    .school-ai-card {
        max-width: 100%;
    }
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .hero-title br { display: none; }
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .hero-subtitle br { display: none; }
    .hero-actions {
        justify-content: center;
    }
    .badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    /* ── Global section titles ── */
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }
    .section-title.left-align {
        font-size: 1.6rem !important;
    }

    /* ── Trusted clients ── */
    .trusted-clients {
        padding: 32px 16px;
    }
    .clients-grid {
        gap: 20px;
        justify-content: center;
    }
    .client-logo img {
        height: 40px;
    }

    /* ── Products & Services ── */
    .products-services {
        padding: 0 16px;
        margin: 40px auto;
    }
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .product-card {
        padding: 20px;
    }
    .product-card.full-width {
        flex-direction: column !important;
        padding: 20px !important;
        min-height: auto !important;
    }
    .product-card.full-width .card-content {
        max-width: 100% !important;
        padding-bottom: 0 !important;
    }
    .product-card.full-width .card-right-section {
        padding-top: 0;
    }
    .product-card.full-width .card-action-top {
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 16px;
    }
    .product-card.full-width .card-image {
        margin: 0;
    }
    .card-title {
        font-size: 1.1rem !important;
    }
    .card-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    .btn-small {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* ── Latest News ── */
    .latest-news {
        padding: 0 16px;
        margin: 40px auto;
    }
    .latest-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }
    .latest-news-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* ── Results ── */
    .results-section {
        padding: 0 16px;
        margin: 40px auto;
    }
    .results-header .section-title {
        font-size: 1.6rem !important;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .metric-card {
        padding: 20px 16px;
    }
    /* Gauge SVG: allow natural scaling */
    .gauge-box svg {
        width: 100% !important;
        max-width: 220px;
        height: auto !important;
    }

    /* ── Awards ── */
    .awards-section {
        padding: 0 16px;
        margin: 40px auto;
    }
    .awards-title {
        font-size: 1.6rem !important;
    }
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .award-card {
        height: 210px;
    }
    .award-img-frame {
        height: 120px;
    }
    .award-card-front img {
        height: 80px;
    }

    /* ── Anniversary ── */
    .anniversary-section {
        padding: 32px 16px;
        margin: 40px auto;
    }
    .anniversary-title {
        font-size: 1.5rem !important;
    }
    .anniversary-text {
        font-size: 0.95rem;
    }

    /* ── Trusted Colleges Region ── */
    .trusted-colleges-region {
        padding: 0 16px;
    }
    .region-container {
        padding: 28px 16px !important;
        flex-direction: column;
        gap: 24px;
    }
    .region-content h2 {
        font-size: 1.6rem !important;
    }
    .region-content p {
        font-size: 0.95rem;
    }
    .region-content {
        text-align: center;
    }
    .region-badge {
        justify-content: center;
    }
    .map-image {
        max-width: 100%;
        width: 100%;
    }

    /* ── Milestones ── */
    .milestones-section {
        padding: 32px 16px;
    }
    .milestones-title {
        font-size: 1.4rem;
    }
    .milestones-grid {
        gap: 28px !important;
        flex-direction: column;
    }
    .milestone-number {
        font-size: 2rem;
    }
    .milestone-text {
        font-size: 1rem;
    }

    /* ── Collaborations ── */
    .collaborations-section {
        padding: 32px 16px;
        margin-bottom: 40px;
    }
    .collaborations-container {
        padding: 28px 16px !important;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .collab-title {
        font-size: 1.6rem !important;
    }
    .collab-desc {
        font-size: 1rem;
    }
    .collaborations-visual {
        width: 100%;
        min-height: auto;
        overflow: hidden;
    }
    .logo-circles-wrapper {
        width: 100% !important;
        max-width: 300px !important;
        transform: none !important;
        left: 0 !important;
        height: auto !important;
        position: relative !important;
        margin: 0 auto;
    }
    .logo-circles-wrapper img {
        width: 100%;
        height: auto;
    }
    .circle-logo {
        width: 80px !important;
        height: 80px !important;
    }
    .logo-ap { bottom: 10px !important; left: 10px !important; }
    .logo-tn { top: 10px !important; right: 60px !important; }
    .logo-task { bottom: 10px !important; right: 0 !important; }

    /* ── PG Programs ── */
    .pg-programs-section {
        padding: 32px 16px;
    }
    .pg-programs-container {
        grid-template-columns: 1fr !important;
    }
    .pg-programs-left {
        padding-top: 0;
    }
    .pg-title {
        font-size: 1.75rem !important;
    }
    .pg-subtitle {
        font-size: 1.1rem !important;
    }
    .pg-programs-right {
        grid-template-columns: 1fr !important;
    }

    /* ── Prepare Section ── */
    .prepare-section {
        padding: 0 16px;
        margin: 40px auto;
    }
    .prepare-title {
        font-size: 1.6rem !important;
    }
    .prepare-banner {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
    }
    .prepare-headline {
        font-size: 1.3rem !important;
    }
    .prepare-img {
        max-width: 100%;
    }

    /* ── Companies ── */
    .companies-section {
        padding: 32px 16px;
    }
    .companies-container {
        grid-template-columns: 1fr !important;
    }
    .companies-title {
        font-size: 1.6rem !important;
    }
    .companies-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    .companies-description {
        max-width: 100%;
        font-size: 0.95rem;
    }
    .companies-right img {
        transform: none !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        width: 100%;
    }
    .logo-wall {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    .logo-wall img {
        height: 24px !important;
    }

    /* ── Webinars ── */
    .webinars-section {
        padding: 32px 16px;
    }
    .webinars-container {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .webinars-left {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        padding-bottom: 0;
    }
    .webinars-title {
        font-size: 1.6rem !important;
    }
    .webinars-right {
        height: 300px;
    }
    .webinars-grid {
        grid-template-columns: repeat(2, var(--card-width)) !important;
        justify-content: center;
    }
    /* Hide the 3rd column on mobile */
    .webinars-col-3 {
        display: none !important;
    }
    .webinars-col {
        margin-top: 0 !important;
    }

    /* ── Team section ── */
    .team-section {
        padding: 32px 16px;
    }
    .team-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 32px;
    }
    .team-header-content h2 {
        font-size: 1.6rem;
    }
    .team-header-content p br { display: none; }
    /* Team grid: allow cards to show properly on mobile */
    .team-grid {
        height: 300px;
    }
    .team-card {
        flex: 0 0 220px !important;
        width: 220px !important;
        height: 280px !important;
    }
    .team-member-img {
        height: 280px;
    }

    /* ── Testimonials ── */
    .testimonials-section {
        padding: 32px 16px;
        overflow: hidden;
    }
    .testimonials-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    .testimonials-header-content h2 {
        font-size: 1.6rem !important;
    }
    .testimonials-header-content p {
        font-size: 0.95rem;
    }
    .testimonials-header-content p br { display: none; }
    .speech-bubble {
        display: none;
    }
    /* Testimonials scrolling row */
    .testimonials-grid {
        height: auto !important;
        min-height: 0;
    }
    /* Text + video cards: fix fixed widths */
    .testimonial-text-card {
        width: 280px !important;
        height: 300px !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    .testimonial-text-card p {
        height: auto !important;
        max-height: 130px !important;
        overflow: hidden !important;
        font-size: 13px !important;
    }
    .video-card {
        width: 280px !important;
        height: 300px !important;
        flex: 0 0 280px !important;
        min-width: 0 !important;
    }

    /* ── CRN Event section ── */
    .crn-section {
        padding: 40px 16px;
    }
    .crn-container {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    .crn-title {
        font-size: 1.6rem !important;
    }

    /* ── Footer ── */
    .site-footer {
        padding: 40px 16px;
    }
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
    .footer-left {
        flex: none;
    }
    .footer-logo-brand img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .footer-addresses p {
        font-size: 0.8rem;
    }
    .app-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .app-buttons img {
        width: auto;
        height: 40px;
    }
}

/* ── Extra small screens (≤ 400px) ── */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    .awards-grid {
        grid-template-columns: 1fr !important;
    }
    .award-card {
        height: 240px !important;
    }
    .award-img-frame {
        height: 140px !important;
    }
    .award-card-front img {
        height: 100px !important;
    }
    .webinars-grid {
        grid-template-columns: 1fr !important;
    }
    .webinars-col-2 { display: none !important; }
    .team-card {
        flex: 0 0 180px !important;
        width: 180px !important;
        height: 240px !important;
    }
    .testimonial-text-card {
        width: 240px !important;
        height: 280px !important;
    }
    .video-card {
        width: 240px !important;
        height: 280px !important;
        flex: 0 0 240px !important;
    }
}

/* ── Featured Apps Auto-Scroll Strip ── */
.featured-apps-strip {
  width: 100%;
  background: #fcfcfc;
  padding: 14px 0;
  overflow: hidden;
}

.featured-apps-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #999;
  text-transform: uppercase;
  padding: 0 32px 8px;
  margin: 0;
}

.featured-apps-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.featured-apps-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: appsScroll 22s linear infinite;
  padding: 0 12px;
}

.featured-apps-track:hover {
  animation-play-state: paused;
}

@keyframes appsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.featured-app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 220px;
  max-width: 240px;
  flex-shrink: 0;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.featured-app-card:hover {
  background: #f0eeff;
  border-color: #c4b5fd;
}

.app-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.app-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.app-desc {
  font-size: 0.72rem;
  color: #777;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .featured-app-card {
    min-width: 180px;
    padding: 10px 14px;
  }
}

/* ── Prepare Section ── */
.prepare-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.prepare-header {
    text-align: center;
    margin-bottom: 40px;
}

.prepare-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.prepare-subtitle {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

.prepare-banner {
    background: #ffffff;
    border-radius: 24px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

/* subtle radial glow top-left */
.prepare-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123,95,237,0.18) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    pointer-events: none;
}

.prepare-banner-left {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap:22px;
}

.prepare-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7b5fed;
}

.prepare-headline {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111111;
    margin: 0;
}

.prepare-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    max-width: 520px;
}

.prepare-badge {
    display: inline-block;
    border: 1px solid #e5e7eb;
    color: #374151;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: default;
}

.prepare-badge:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.prepare-banner-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.prepare-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
box-shadow:0 18px 45px rgba(0,0,0,.12);}

@media (max-width: 900px) {
    .prepare-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .prepare-title {
        font-size: 2rem;
    }

    .prepare-banner {
        flex-direction: column;
        padding: 36px 28px;
        gap: 32px;
    }

    .prepare-headline {
        font-size: 1.4rem;
    }

    .prepare-img {
        max-width: 100%;
    }
}

/* ── CRN Event Section ── */
.crn-section {
    background: #0a0a0a;
    padding: 72px 40px;
}

.crn-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

/* Left — invite card */
.crn-left {
    flex-shrink: unset;
}

.crn-card-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}

.crn-invite-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right — details */
.crn-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crn-network-tag {
    font-size: 0.92rem;
    font-weight: 600;
    color: #c8f135;
    margin: 0;
    letter-spacing: 0.2px;
}

.crn-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Meta list */
.crn-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crn-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.crn-meta-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Schedule */
.crn-schedule {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crn-schedule-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #e05a5a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crn-schedule-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crn-schedule-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

/* Register & RSVP */
.crn-register {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.crn-register a {
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.crn-register a:hover {
    color: #c8f135;
}

.crn-rsvp {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .crn-section {
        padding: 48px 20px;
    }

    .crn-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .crn-card-wrap {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .crn-title {
        font-size: 1.8rem;
    }
}
