/* index.css - Pristine Design based on exact reference */

:root {
    /* User Brand Colors */
    --brand-orange: #f58533;
    --brand-blue: #006ba1;
    
    /* Other Colors from Image References */
    --card-dark: #006ba1;     /* User Brand Blue for Mission box */
    --card-gold: #f58533;     /* User Brand Orange for Vision box */
    --bg-page: #F8F9FA;       /* Very light off-white background */
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-main: #1F2937;     /* Very dark gray for headings */
    --text-body: #6B7280;     /* Medium gray for paragraphs */
    
    /* Status/Icon Colors (from Services/Steps images) */
    --icon-purple: #7C3AED;
    --icon-green: #10B981;
    --icon-yellow: #F59E0B;
    --icon-blue: #3B82F6;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Effects */
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-icon { margin-bottom: 1.5rem; }
.text-white { color: var(--bg-white); }
.text-dark { color: var(--text-main); }
.text-gray { color: var(--text-body); }
.text-light { color: #D1D5DB; }
.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.tracking-widest { letter-spacing: 0.1em; }
.text-sm { font-size: 0.875rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-padding { padding: 100px 0; }
.bg-soft { background-color: #F8F9FA; }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--card-dark); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #004b73; /* Darker blue */
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #003350; /* Even darker on hover */
    transform: translateY(-2px);
}

/* Header */
.pristine-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    transition: var(--transition);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 14px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 35px rgba(0, 46, 91, 0.09);
}
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    height: 42px;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover { color: var(--brand-blue); }
.nav-action .btn-primary {
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 0.95rem;
    background: var(--brand-orange);
    color: #fff;
}
.nav-action .btn-primary:hover {
    background: #e66f1f;
    color: #fff;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 107, 161, 0.08);
}
.nav-action {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(135deg, rgba(0, 45, 91, 0.95), rgba(0, 107, 161, 0.92)),
        url('footer.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    transition: right 0.4s ease;
    overflow: hidden;
}
.mobile-menu::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    pointer-events: none;
}
.mobile-menu.active { right: 0; }
.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    z-index: 2;
}
.mobile-link {
    position: relative;
    z-index: 2;
    width: min(100%, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.mobile-link:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.mobile-link.btn-primary {
    background: var(--brand-orange);
    color: #fff;
    border-color: transparent;
    margin-top: 0.7rem;
    box-shadow: 0 16px 30px rgba(245, 133, 51, 0.28);
}
.mobile-link.btn-primary:hover {
    background: #e66f1f;
    color: #fff;
}

/* Hero Slider */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slider-container {
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}
.slide.active { opacity: 1; }
.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.slide-tuition .slide-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.slide-fanshawe .slide-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.slide-tuition::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 251, 255, 0.96) 0%, rgba(248, 251, 255, 0.86) 24%, rgba(248, 251, 255, 0.34) 48%, rgba(248, 251, 255, 0) 72%);
    z-index: 1;
    pointer-events: none;
}
.slide-nursing .slide-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.slide-intake .slide-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #111827;
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: #f3f4f6; transform: translateY(-50%) scale(1.05); }
.prev-btn { left: 30px; }
.next-btn { right: 30px; }

/* Slider Side Caption */
.slide-content-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.slide-content-left { left: 7%; }
.slide-content-right { right: 5%; display: flex; justify-content: flex-end; }
.caption-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.7);
    max-width: 520px;
    text-align: left;
}
.slide-tuition .caption-card {
    max-width: 620px;
    padding: 2rem;
    margin-top: 42px;
}
.slide-fanshawe .caption-card {
    max-width: 620px;
    padding: 2rem;
    margin-top: 42px;
}
.fanshawe-card .tuition-headline span {
    color: #f58533;
}
.tuition-card {
    position: relative;
    overflow: hidden;
}
.tuition-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
    pointer-events: none;
}
.tuition-badge {
    display: inline-flex;
    align-items: center;
    background: #F3F7FF;
    color: #34405f;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.tuition-badge-icon {
    background: #2563EB;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.slide-tuition .caption-card h2 {
    font-size: 2.15rem !important;
    line-height: 1.2 !important;
}
.tuition-headline span {
    color: #2563EB;
}
.tuition-divider {
    height: 3px;
    width: 54px;
    background: #F97316;
    border-radius: 2px;
    margin: 1.35rem 0;
}
.tuition-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
}
.tuition-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
    line-height: 1.45;
}
.tuition-list i {
    color: #00BFA6;
    margin-top: 0.18rem;
    flex-shrink: 0;
}
.tuition-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid #EEF2F7;
}
.tuition-footer p {
    max-width: 62%;
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Slide 3: Advanced Nursing Card */
.nursing-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.7);
    max-width: 620px;
    margin-top: 42px;
}
.nursing-badge {
    display: inline-flex;
    align-items: center;
    background: #F3F4F6;
    color: #4B5563;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.nursing-badge-icon {
    background: #2563EB;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 10px;
}
.nursing-headline {
    font-size: 2rem;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.nursing-divider {
    height: 3px;
    width: 50px;
    background: #F97316;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.nursing-courses-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.nursing-course-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-radius: 100px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 1rem;
}
.flex-align { display: flex; align-items: center; }
.nursing-features {
    display: flex;
    justify-content: space-between;
    margin-top: 1.4rem;
    padding: 1.1rem 0;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}
.nursing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.nf-icon {
    background: #EFF6FF;
    color: #2563EB;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.nf-text { display: flex; flex-direction: column; }
.nf-text strong { font-size: 0.85rem; color: #111827; margin-bottom: 4px; }
.nf-text span { font-size: 0.75rem; color: #6B7280; line-height: 1.4; }
.nursing-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.4rem;
}
.nursing-footer p { font-size: 0.9rem; color: #6B7280; line-height: 1.6; max-width: 68%; margin-bottom: 0; }
.nursing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #2563EB;
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}
.nursing-btn i {
    flex-shrink: 0;
}
.nursing-btn:hover { background: #1D4ED8; color: white; transform: translateY(-2px); }

/* Slide 4: New Intake */
.intake-card {
    max-width: 560px;
    margin-top: 42px;
    padding: 2.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 48px rgba(0, 40, 90, 0.1);
}
.intake-badge {
    display: inline-flex;
    align-items: center;
    background: #F3F7FF;
    color: #34405f;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.intake-badge-icon {
    background: #2563EB;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.intake-card h2 {
    color: #071545;
    font-size: 3.1rem;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.intake-card h2 span {
    color: #2563EB;
}
.intake-divider {
    height: 3px;
    width: 54px;
    background: #F97316;
    border-radius: 2px;
    margin-bottom: 1.35rem;
}
.intake-card p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 92%;
    margin-bottom: 1.7rem;
}

/* Split Slide Layout */
.slide-split {
    display: flex;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
}
.slide-split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 10%;
    z-index: 10;
}
.slide-split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.text-brand-orange { color: var(--brand-orange); }
.text-lg { font-size: 1.25rem; font-family: var(--font-heading); }
.inline-block { display: inline-block; }

/* Image 1: Advanced Bento Layout */
.bento-section {
    background:
        radial-gradient(circle at 7% 12%, rgba(0, 107, 161, 0.06) 0 1.2px, transparent 1.4px) 0 0 / 12px 12px,
        radial-gradient(circle at 96% 82%, rgba(124, 58, 237, 0.05) 0 1.2px, transparent 1.4px) 0 0 / 12px 12px,
        linear-gradient(135deg, #fbfdff 0%, #f8fbff 42%, #fffaf5 100%);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 260px 220px, 280px 240px, auto;
    background-position: left 40px top 36px, right 20px bottom 28px, center;
    position: relative;
    overflow: hidden;
}
.bento-section .container {
    max-width: 1280px;
}
.bento-layout {
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    min-height: 560px;
}
.bento-main {
    background-color: var(--bg-white);
    background-image: url('whychooseus.png');
    border-radius: var(--radius-xl);
    padding: 2.7rem 2.8rem 2.4rem;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.08);
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bento-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 31%, rgba(255,255,255,0.68) 52%, rgba(255,255,255,0.08) 82%),
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.74) 100%);
    pointer-events: none;
}
.bento-main::after {
    content: "";
    position: absolute;
    left: 41%;
    bottom: -18%;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.26), rgba(47, 128, 237, 0.08) 48%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}
.bento-main-content {
    max-width: 72%;
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}
.mb-4 { margin-bottom: 2rem; }
.badge-pill {
    display: inline-flex;
    align-items: center;
    background: #ecf2ff;
    color: #071545;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}
.bento-heading {
    font-size: clamp(1.65rem, 2.1vw, 2.1rem);
    margin-bottom: 1rem;
    line-height: 1.18;
    position: relative;
    z-index: 2;
    color: #071545;
}
.text-gradient {
    background: linear-gradient(90deg, #8b18d8 0%, #7b4cff 45%, #1d7af2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bento-text {
    font-size: 0.9rem;
    color: #303b5f;
    max-width: 66%;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.75;
}
.bento-stats {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.icon-purple {
    background: linear-gradient(135deg, #8b18d8, #6d5dfc);
    color: #fff;
}
.icon-blue {
    background: linear-gradient(135deg, #3358ff, #1d9bf0);
    color: #fff;
}
.stat-text {
    display: flex;
    flex-direction: column;
}
.stat-text strong {
    font-size: 1.25rem;
    color: #071545;
    line-height: 1;
}
.stat-text span {
    font-size: 0.76rem;
    color: #253050;
    line-height: 1.35;
    margin-top: 4px;
}
.stat-divider {
    height: 40px;
    width: 1px;
    background: #E5E7EB;
}

/* Right Side Cards */
.bento-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 560px;
}
.bento-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    flex: 0 0 280px;
}
.bento-card {
    border-radius: var(--radius-xl);
    padding: 2rem 2rem;
    box-shadow: 0 24px 55px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* Mission Card */
.card-mission {
    background:
        linear-gradient(155deg, #0744b7 0%, #00318f 52%, #021d5f 100%);
    color: white;
    min-height: 280px;
}
.card-mission::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -18%;
    width: 118%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.12), transparent 62%);
    opacity: 0.45;
}
.card-mission h3 { color: white; font-size: 1.45rem; margin-top: 1.4rem; margin-bottom: 0.55rem; position: relative; z-index: 2; }
.card-mission p { color: rgba(255,255,255,0.9); font-size: 0.9rem; line-height: 1.55; position: relative; z-index: 2; }

/* Vision Card */
.card-vision {
    background:
        linear-gradient(160deg, #ff8a16 0%, #f57419 45%, #f15b16 100%);
    color: white;
    min-height: 280px;
}
.card-vision::after {
    content: "";
    position: absolute;
    inset: auto -10% -2px 2%;
    height: 38%;
    background: linear-gradient(0deg, rgba(156, 50, 0, 0.14), transparent), radial-gradient(ellipse at 72% 100%, rgba(255,255,255,0.18), transparent 58%);
    opacity: 0.65;
    clip-path: polygon(0 80%, 18% 48%, 33% 72%, 48% 35%, 65% 82%, 82% 42%, 100% 75%, 100% 100%, 0 100%);
}
.card-vision h3 { color: white; font-size: 1.45rem; margin-top: 1.4rem; margin-bottom: 0.55rem; position: relative; z-index: 2; }
.card-vision p { color: rgba(255,255,255,0.95); font-size: 0.9rem; line-height: 1.55; position: relative; z-index: 2; }

/* Partnerships Card */
.card-partnerships {
    background: var(--bg-white);
    min-height: 256px;
    padding: 1.6rem 2rem;
    justify-content: center;
    flex: 1 1 256px;
}
.partnerships-content-wrap {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    max-width: 52%;
    position: relative;
    z-index: 2;
}
.partnerships-text h3 { font-size: 1.65rem; margin-bottom: 0.75rem; line-height: 1.12; }
.partnerships-text p { font-size: 0.88rem; line-height: 1.55; }
.partnership-map {
    position: absolute;
    top: 22px;
    right: 24px;
    bottom: 18px;
    width: 42%;
    opacity: 0.72;
    background:
        radial-gradient(circle at 55% 35%, rgba(0, 107, 161, 0.16) 0 1.6px, transparent 1.8px) 0 0 / 8px 8px;
}
.partnership-map::before {
    content: "";
    position: absolute;
    left: 13%;
    top: 28%;
    width: 73%;
    height: 56%;
    border: 2px dashed rgba(0, 191, 166, 0.42);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0 0 140px 140px;
    transform: rotate(-6deg);
}
.map-pin {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00a99a;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 6px 14px rgba(0, 169, 154, 0.24);
}
.map-pin::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
}
.pin-one { left: 13%; top: 50%; }
.pin-two { left: 53%; top: 76%; }
.pin-three { right: 4%; top: 43%; }

/* Glow Icons */
.glow-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.icon-glow-blue {
    background: linear-gradient(135deg, #11b7ff, #0576d9);
    box-shadow: 0 18px 30px rgba(0, 75, 180, 0.28);
}
.icon-glow-orange {
    background: linear-gradient(135deg, #ffc53d, #ff8a0a);
    box-shadow: 0 18px 30px rgba(195, 84, 0, 0.24);
}
.icon-glow-green {
    background: linear-gradient(135deg, #12cdbb, #009581);
    box-shadow: 0 18px 28px rgba(0, 149, 129, 0.22);
}

/* Card Dividers */
.card-line {
    height: 3px;
    width: 38px;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}
.line-blue { background: #00A3FF; }
.line-white { background: rgba(255,255,255,0.8); }

/* Image 2: Services Overview (New Design) */
.services-section-new {
    position: relative;
    padding: 80px 0 96px;
    background:
        radial-gradient(circle at 56% 12%, rgba(0, 107, 161, 0.08) 0 1.5px, transparent 1.7px) 0 0 / 9px 9px,
        linear-gradient(135deg, #ffffff 0%, #eef7ff 48%, #dff0ff 100%);
    overflow: hidden;
    isolation: isolate;
}
.services-section-new::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -92px;
    height: 190px;
    background: linear-gradient(100deg, #075bd7 0%, #165ee9 48%, #7c54ff 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}
.services-bg-new {
    position: absolute;
    top: 26px;
    right: 0;
    width: 53%;
    height: calc(100% - 26px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
    z-index: 1;
}
.services-left-content {
    position: relative;
    z-index: 2;
    max-width: 64%;
    padding-right: 0;
}
.border-blue { border: 1px solid #005682; }
.text-blue { color: #005682; }
.services-heading-new {
    font-size: 3.25rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.15;
    max-width: 760px;
}
.services-desc-new {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}
.gradient-line-small {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #9b51e0, #2f80ed);
    border-radius: 2px;
}
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 760px;
}
.service-card-new {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 215px;
}
.service-card-new:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.sc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.sc-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.sc-number {
    font-size: 2.35rem;
    font-weight: 800;
    color: #F3F4F6;
    line-height: 1;
}
.service-card-new h3 {
    font-size: 1.14rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.service-card-new p {
    font-size: 0.86rem;
    color: #6B7280;
    line-height: 1.5;
}
.sc-line {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 25px;
    height: 3px;
    border-radius: 2px;
}
.sc-swoosh {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top-left-radius: 100%;
}
.bg-orange { background: #FF7B00; }
.bg-purple-solid { background: #9b51e0; }
.bg-green-solid { background: #00BFA6; }
.bg-blue-solid { background: #005682; }
.bg-yellow-solid { background: #FFB300; }
.bg-red-solid { background: #E11D48; }

.line-orange { background: #FF7B00; }
.line-purple-solid { background: #9b51e0; }
.line-green-solid { background: #00BFA6; }
.line-blue-solid { background: #005682; }
.line-yellow-solid { background: #FFB300; }
.line-red-solid { background: #E11D48; }

.swoosh-orange { background: #FF7B00; }
.swoosh-purple-solid { background: #9b51e0; }
.swoosh-green-solid { background: #00BFA6; }
.swoosh-blue-solid { background: #005682; }
.swoosh-yellow-solid { background: #FFB300; }
.swoosh-red-solid { background: #E11D48; }

/* Image 3: Steps / Process Section */
.steps-section {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}
.steps-bg-element {
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0.82;
    z-index: 1;
}
.steps-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 38%;
    width: 26%;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0) 100%);
    z-index: 2;
    pointer-events: none;
}
.steps-container {
    position: relative;
    z-index: 10;
}
.steps-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.steps-header p {
    font-size: 1.1rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
}
.step-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-number {
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}
.bg-orange { background: var(--brand-orange); }
.bg-green { background: var(--icon-green); }
.bg-blue { background: var(--brand-blue); }
.bg-yellow { background: var(--icon-yellow); }
.step-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.95rem; }

/* Countries Section */
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }
.countries-section-title {
    font-size: 2.8rem;
    line-height: 1.2;
}
.text-red { color: #E11D48; }
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.country-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.country-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.country-flag {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.country-info { text-align: left; }
.country-info h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.country-info p { font-size: 0.9rem; margin: 0; }

/* Student Testimonials */
.testimonials-section {
    position: relative;
    padding: 74px 0 44px;
    background-image: url('student testimonials.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}
.testimonials-section .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}
.testimonials-header {
    margin-bottom: 4.2rem;
}
.testimonials-header h2 {
    color: #071545;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.92;
    margin-bottom: 1rem;
}
.testimonials-header h2 span {
    color: #175adf;
}
.testimonials-header p {
    color: #071545;
    font-size: 1.25rem;
    font-weight: 600;
}
.testimonials-divider {
    width: 90px;
    height: 3px;
    margin: 0.8rem auto 0;
    border-radius: 2px;
    background: var(--brand-orange);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    align-items: stretch;
    margin-top: 0.6rem;
}
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 4.5rem 2.3rem 1.7rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}
.quote-mark {
    position: absolute;
    top: 1.4rem;
    left: 1.7rem;
    color: rgba(23, 90, 223, 0.38);
    font-size: 2.3rem;
}
.testimonial-avatar {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 4px solid currentColor;
    color: #175adf;
    font-size: 2.4rem;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.16);
}
.testimonial-text {
    color: #071545;
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
    flex: 1;
}
.testimonial-text strong {
    color: currentColor;
    font-weight: 800;
}
.testimonial-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: currentColor;
    margin: 1.5rem 0 1.1rem;
}
.testimonial-rule::before,
.testimonial-rule::after {
    content: "";
    flex: 1;
    height: 2px;
    background: currentColor;
    opacity: 0.75;
}
.testimonial-rule span {
    font-size: 1.6rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    color: currentColor;
    flex-shrink: 0;
}
.testimonial-author h3 {
    color: #071545;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.testimonial-author p {
    margin: 0;
    color: #65708d;
}
.testimonial-pink { color: #e21d68; }
.testimonial-blue { color: #1456df; }
.testimonial-purple { color: #6730b7; }
.testimonial-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2.2rem;
    padding: 1.3rem 1.5rem;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(100deg, #075bd7 0%, #165ee9 54%, #004fb6 100%);
    color: #fff;
}
.testimonial-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.testimonial-feature:last-child {
    border-right: none;
}
.testimonial-feature > i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
}
.testimonial-feature h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.testimonial-feature p {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    font-size: 0.88rem;
}

/* Partners Marquee */
.partners-section {
    position: relative;
    padding: 96px 0 72px;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    background-image: url('partners universities.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}
.partners-section::before {
    display: none;
}
.partners-section::after {
    display: none;
}
.partners-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3.4rem;
}
.partners-eyebrow {
    display: inline-block;
    color: #071545;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.partners-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #2563eb;
    margin-bottom: 1.6rem;
}
.partners-divider span {
    display: block;
    width: 70px;
    height: 1px;
    background: rgba(37, 99, 235, 0.35);
}
.partners-header h2 {
    color: #071545;
    font-size: clamp(2rem, 4vw, 3.05rem);
    line-height: 1.12;
    margin-bottom: 1.2rem;
}
.partners-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #65708d;
    font-size: 1.08rem;
    line-height: 1.6;
}
.marquee-container {
    display: flex; overflow: hidden; width: 100%; position: relative;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex; align-items: center; gap: 4rem; padding: 0 2rem;
    animation: marquee-scroll 40s linear infinite;
    min-width: 100%; flex-shrink: 0;
}
.marquee-content img {
    height: 75px; /* Increased size significantly */
    object-fit: contain;
    transition: var(--transition);
}
.marquee-content img:hover {
    transform: scale(1.1); /* Slight zoom on hover instead of colorization */
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* CTA Section */
.cta-section {
    position: relative;
    width: min(94%, 1320px);
    margin: 80px auto;
    padding: 96px 2rem;
    border-radius: 18px;
    background-image: linear-gradient(rgba(0, 35, 87, 0.1), rgba(0, 35, 87, 0.1)), url('ready to start your journey.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(0, 44, 109, 0.22);
}
.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.65;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 190px;
    border: none;
    border-radius: 12px;
    padding: 18px 34px;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
    white-space: nowrap;
    transition: var(--transition);
}
.cta-btn:hover {
    transform: translateY(-2px);
    background: #e66f1f;
    color: #fff;
    box-shadow: 0 18px 34px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    padding: 86px 0 34px;
    background-image: linear-gradient(rgba(0, 18, 48, 0.52), rgba(0, 18, 48, 0.76)), url('footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 22%, rgba(37, 99, 235, 0.2), transparent 30%);
    pointer-events: none;
}
.site-footer .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 3.5rem;
}
.footer-brand {
    padding-right: 1.8rem;
}
.footer-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}
.footer-accent,
.footer-line {
    width: 44px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 3px;
}
.footer-accent {
    margin: 2rem 0;
}
.footer-socials {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}
.footer-certification {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.4rem;
    padding: 0.85rem 1rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}
.footer-certification:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 126, 24, 0.22);
    border-color: rgba(255, 126, 24, 0.55);
}
.footer-certification img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-certification span {
    display: block;
    font-size: 0.88rem;
    line-height: 1.25;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
}
.footer-address {
    min-height: 300px;
    padding-left: 1.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-pin {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    margin-bottom: 1.65rem;
}
.footer-address h3 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.footer-address .footer-line {
    margin-bottom: 1.35rem;
}
.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}
.footer-address p i {
    width: 18px;
    margin-top: 0.22rem;
    color: #8fc5ff;
    flex-shrink: 0;
}
.footer-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.2rem;
}
.footer-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-right: 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-feature:last-child {
    border-right: none;
}
.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9ecff;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(143, 197, 255, 0.3);
    flex-shrink: 0;
}
.footer-feature h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.footer-feature p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}
.footer-bottom > p {
    margin: 0;
}
.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.footer-policy-links a {
    color: rgba(255, 255, 255, 0.82);
}
.footer-policy-links a:hover {
    color: #fff;
}
.footer-policy-links a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 1.2rem;
}
.footer-help {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.footer-help > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(143, 197, 255, 0.25);
}
.footer-help p {
    margin: 0 0 0.25rem;
    color: rgba(255, 255, 255, 0.82);
}
.footer-help strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
}


/* Animations */
.animate-on-scroll { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-up { transform: translateY(40px); }
.slide-right { transform: translateX(-40px); }
.scale-up { transform: scale(0.95); }
.is-visible { opacity: 1; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1024px) {
    .pristine-header {
        width: 94%;
    }
    .nav-container {
        padding: 12px 20px;
    }
    .nav-links {
        gap: 1.3rem;
    }
    .nav-link {
        font-size: 0.88rem;
    }
    .nav-action .btn-primary {
        padding: 10px 22px;
        font-size: 0.88rem;
    }
    .slide-tuition .caption-card,
    .slide-fanshawe .caption-card,
    .nursing-card {
        max-width: 520px;
    }
    .bento-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .bento-main {
        min-height: 560px;
        background-size: auto 90%;
    }
    .bento-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partnerships-content-wrap { max-width: 68%; }
    .services-section-new {
        padding: 72px 0 88px;
    }
    .services-bg-new {
        width: 50%;
        opacity: 0.58;
        background-position: right bottom;
    }
    .services-left-content {
        max-width: 70%;
        padding-right: 0;
    }
    .services-heading-new {
        font-size: 2.65rem;
    }
    .services-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 650px;
    }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-bg-element {
        width: 42%;
        opacity: 0.45;
        background-size: cover;
        background-position: center bottom;
    }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-section {
        padding: 68px 0 38px;
        background-position: center top;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3.3rem;
        max-width: 640px;
        margin: 0 auto;
    }
    .testimonial-card {
        min-height: auto;
    }
    .testimonial-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 24px;
    }
    .testimonial-feature:nth-child(2) {
        border-right: none;
    }
    .services-bg-solid { width: 100%; }
    .services-bg-image { display: none; }
    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }
    .footer-feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-feature:nth-child(2) {
        border-right: none;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-policy-links,
    .footer-help {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-action { display: none; }
    .hamburger { display: flex; }
    .pristine-header {
        top: 14px;
        width: 92%;
    }
    .nav-container {
        padding: 10px 16px;
    }
    .logo img {
        height: 36px;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        background: #eef6ff;
    }
    .slider-container,
    .slide {
        min-height: 100vh;
    }
    .slide-image-only .slide-bg {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #eef6ff;
    }
    .slide-content-side {
        left: 0;
        top: auto;
        bottom: 72px;
        transform: none;
        width: 100%;
        padding: 0 1rem;
    }
    .slide-content-left {
        left: 0;
    }
    .slide-tuition .slide-bg {
        background-size: cover;
        background-position: 60% center;
        opacity: 0.82;
    }
    .slide-fanshawe .slide-bg {
        background-size: cover;
        background-position: 58% center;
        opacity: 0.76;
    }
    .slide-tuition::before {
        background: linear-gradient(180deg, rgba(248, 251, 255, 0.94) 0%, rgba(248, 251, 255, 0.82) 38%, rgba(248, 251, 255, 0.18) 100%);
    }
    .slide-intake .slide-bg {
        background-size: cover;
        background-position: 68% center;
        opacity: 0.42;
    }
    .slide-tuition .caption-card {
        max-width: 100%;
        padding: 1.5rem;
        margin-top: 0;
    }
    .slide-fanshawe .caption-card {
        max-width: 100%;
        padding: 1.5rem;
        margin-top: 0;
    }
    .slide-tuition .caption-card h2 {
        font-size: 1.55rem !important;
    }
    .tuition-list {
        grid-template-columns: 1fr;
        font-size: 0.9rem !important;
    }
    .tuition-list li {
        gap: 0.7rem;
        padding: 0.75rem 0.85rem;
    }
    .tuition-footer {
        flex-direction: column;
        gap: 1rem;
    }
    .tuition-footer p {
        max-width: 100%;
    }
    .slide-nursing .slide-bg {
        background-size: cover;
        background-position: 62% center;
        opacity: 0.34;
    }
    .slide-nursing .slide-content-side {
        top: 55%;
        bottom: auto;
        transform: translateY(-50%);
    }
    .nursing-card {
        max-width: 100%;
        padding: 1.05rem;
        margin-top: 0;
        border-radius: 18px;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }
    .intake-card {
        max-width: 100%;
        padding: 1.35rem;
        margin-top: 0;
        border-radius: 18px;
    }
    .nursing-badge {
        font-size: 0.68rem;
        margin-bottom: 0.75rem;
        padding-right: 12px;
    }
    .nursing-headline {
        font-size: 1.22rem;
        margin-bottom: 0.85rem;
    }
    .intake-card h2 {
        font-size: 2.1rem;
    }
    .intake-card p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .nursing-divider {
        margin-bottom: 0.85rem;
    }
    .nursing-courses-title {
        margin-bottom: 0.65rem;
    }
    .nursing-course-pill {
        padding: 0.75rem 1rem;
        margin-bottom: 0.7rem;
        border-radius: 16px;
    }
    .nursing-features,
    .nursing-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .nursing-features {
        margin-top: 0.85rem;
        padding: 0.85rem 0;
    }
    .nursing-feature-item {
        width: 100%;
    }
    .nf-icon {
        width: 34px;
        height: 34px;
    }
    .nf-text strong {
        font-size: 0.78rem;
    }
    .nf-text span {
        font-size: 0.7rem;
    }
    .nursing-footer {
        margin-top: 0.85rem;
    }
    .nursing-footer p {
        font-size: 0.78rem;
        line-height: 1.45;
        max-width: 100%;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .prev-btn { left: 14px; }
    .next-btn { right: 14px; }
    .partners-section {
        padding: 70px 0 56px;
        background-size: cover;
        background-position: center top;
    }
    .partners-section::before {
        left: -18%;
        right: -18%;
        top: 145px;
        height: 180px;
    }
    .partners-section::after {
        display: none;
    }
    .partners-header {
        margin-bottom: 2.4rem;
    }
    .partners-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.28em;
    }
    .partners-header h2 {
        font-size: 2rem;
    }
    .partners-header p {
        font-size: 0.95rem;
    }
    .cta-section {
        width: 92%;
        margin: 56px auto;
        padding: 64px 1.25rem;
        border-radius: 16px;
    }
    .cta-section p {
        font-size: 0.95rem;
    }
    .cta-btn {
        padding: 15px 26px;
        min-width: 160px;
    }
    .services-section-new {
        padding: 70px 0;
        background: linear-gradient(180deg, #f6fbff 0%, #eaf4ff 100%);
    }
    .services-section-new .container {
        width: 92%;
    }
    .services-bg-new {
        top: auto;
        right: -38%;
        bottom: 0;
        width: 118%;
        height: 48%;
        opacity: 0.18;
        background-size: contain;
        background-position: right bottom;
        background-attachment: scroll;
    }
    .services-left-content {
        max-width: 100%;
        padding-right: 0;
    }
    .services-heading-new {
        font-size: 2.05rem;
        line-height: 1.18;
    }
    .services-heading-new .text-blue {
        display: inline-block;
        margin-left: 0.18em;
        margin-right: 0.2em;
    }
    .services-desc-new {
        font-size: 0.98rem;
    }
    .services-desc-new br,
    .services-heading-new br {
        display: none;
    }
    .services-grid-new, .countries-grid { grid-template-columns: 1fr; }
    .testimonials-section {
        padding: 58px 0 32px;
        background-size: auto 100%;
        background-position: center top;
    }
    .testimonials-header {
        margin-bottom: 3.6rem;
    }
    .testimonials-header h2 {
        font-size: 2.55rem;
    }
    .testimonials-header p {
        font-size: 1rem;
    }
    .testimonial-card {
        padding: 4rem 1.35rem 1.35rem;
        border-radius: 20px;
    }
    .testimonial-text {
        font-size: 0.94rem;
        line-height: 1.68;
    }
    .testimonial-avatar {
        width: 82px;
        height: 82px;
        top: -36px;
        font-size: 2rem;
    }
    .quote-mark {
        top: 1.2rem;
        left: 1.25rem;
        font-size: 1.9rem;
    }
    .testimonial-features {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1rem;
        margin-top: 1.8rem;
    }
    .testimonial-feature {
        border-right: none;
        padding-right: 0;
    }
    .services-grid-new {
        gap: 1rem;
        margin-top: 2.2rem;
        max-width: 100%;
    }
    .service-card-new {
        padding: 1.45rem;
        min-height: 178px;
    }
    .sc-top {
        margin-bottom: 1rem;
    }
    .sc-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .sc-number {
        font-size: 2rem;
    }
    .site-footer {
        padding: 64px 0 28px;
        background-position: center top;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        padding-right: 0;
        text-align: left;
    }
    .footer-logo {
        height: 48px;
        margin-bottom: 1.4rem;
    }
    .footer-certification {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 0.85rem;
    }
    .footer-certification img {
        width: 48px;
        height: 48px;
    }
    .footer-certification span {
        font-size: 0.8rem;
    }
    .footer-socials a { margin: 0; }
    .footer-address {
        min-height: auto;
        padding-left: 1.2rem;
    }
    .footer-feature-strip {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer-feature,
    .footer-feature:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }
    .footer-policy-links {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    .footer-policy-links a + a {
        padding-left: 0.8rem;
    }
    .footer-help {
        align-items: center;
    }
    .section-padding { padding: 70px 0; }
    .bento-layout { gap: 1rem; }
    .bento-main {
        min-height: 650px;
        padding: 2.2rem 1.4rem;
        background-size: auto 62%;
        background-position: center bottom;
    }
    .bento-main::before {
        background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.98) 48%, rgba(255,255,255,0.52) 73%, rgba(255,255,255,0) 100%);
    }
    .bento-main-content {
        max-width: 100%;
    }
    .bento-main h2 { font-size: 2.3rem; }
    .bento-text {
        max-width: 100%;
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }
    .bento-stats {
        align-items: flex-start;
        gap: 1rem;
    }
    .stat-item { gap: 0.75rem; }
    .stat-divider { display: none; }
    .bento-top { grid-template-columns: 1fr; }
    .card-mission,
    .card-vision {
        min-height: 280px;
    }
    .card-partnerships {
        min-height: 280px;
        justify-content: flex-start;
    }
    .partnerships-content-wrap {
        max-width: 100%;
        align-items: flex-start;
        gap: 1.1rem;
    }
    .partnership-map {
        width: 100%;
        top: 44%;
        left: 0;
        right: 0;
        opacity: 0.5;
    }
    .section-title, .services-header h2, .steps-header h2 { font-size: 2rem; }
    .countries-section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .steps-bg-element {
        width: 100%;
        height: 42%;
        top: auto;
        bottom: 0;
        opacity: 0.16;
        background-size: auto 120%;
        background-position: center bottom;
        background-attachment: scroll;
    }
    .steps-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-image-only .slide-bg {
        background-size: contain;
        background-position: center center;
    }
    .slide-tuition .slide-content-side {
        bottom: 58px;
    }
    .slide-fanshawe .slide-content-side {
        bottom: 58px;
    }
    .slide-intake .slide-content-side {
        bottom: 64px;
    }
    .slide-nursing .slide-content-side {
        top: 57%;
    }
    .slide-tuition .caption-card,
    .slide-fanshawe .caption-card,
    .nursing-card,
    .intake-card {
        padding: 0.95rem;
    }
    .tuition-badge,
    .nursing-badge,
    .intake-badge {
        font-size: 0.64rem;
    }
    .slide-tuition .caption-card h2,
    .nursing-headline,
    .intake-card h2 {
        font-size: 1.08rem !important;
    }
    .tuition-footer p,
    .nursing-footer p,
    .intake-card p {
        display: none;
    }
    .nursing-card {
        max-height: calc(100vh - 130px);
    }
    .bento-main {
        min-height: 610px;
        background-size: auto 50%;
    }
    .bento-heading {
        font-size: 2rem;
    }
    .bento-stats {
        flex-direction: column;
    }
    .bento-card {
        padding: 2rem 1.5rem;
    }
    .glow-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 1.35rem;
    }
    .testimonials-header h2 {
        font-size: 2.05rem;
    }
    .testimonial-card {
        padding: 3.8rem 1.1rem 1.2rem;
    }
    .testimonial-text {
        font-size: 0.88rem;
    }
    .testimonial-author h3 {
        font-size: 1rem;
    }
    .testimonial-feature > i {
        width: 46px;
        height: 46px;
    }
    .services-section-new {
        padding: 58px 0;
    }
    .services-heading-new {
        font-size: 1.75rem;
    }
    .service-card-new h3 {
        font-size: 1.08rem;
    }
    .service-card-new p {
        font-size: 0.84rem;
    }
}
