/* ══════════════════════════════════════════════════
   ZIUKE INFOTECH — style.css
   Brand: #1878F3 blue | #031137 navy | #525352 grey
   Fonts: Myriad Pro (headings) | Lato (body) | Glacial Indifference (footer)
   ══════════════════════════════════════════════════ */

/* ── Gradient text utility ── */
.gradient-text,
.gradient-heading {
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── CSS Variables ── */
:root {
    --blue:   #1878F3;
    --dark:   #031137;
    --grey:   #525352;
    --light:  #A9A9A9;
    --white:  #FFFFFF;
    --blue-mid: #3566A3;

    --font-heading: 'Plus Jakarta Sans', 'Myriad Pro', 'Arial', sans-serif;
    --font-body:    'Lato', 'Arial', sans-serif;
    --font-footer:  'Josefin Sans', 'Glacial Indifference', 'Arial', sans-serif;

    --radius: 8px;
    --shadow: 0 4px 16px rgba(3,17,55,0.10);
    --shadow-hover: 0 8px 28px rgba(3,17,55,0.16);
    --transition: all 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--grey);
    background: var(--white);
    line-height: 1.7;
    font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

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

/* ══════════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5rem 0; }
.bg-light { background: #f8faff; }
.text-center { text-align: center; }
.d-block { display: block; }
.text-blue { color: var(--blue); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.65rem;
}

.section-title { font-size: 2rem; margin-bottom: 1rem; color: var(--dark); }
.section-subtitle { color: var(--light); margin-bottom: 2.5rem; font-size: 1rem; }
.page-title { font-size: 2.25rem; margin-bottom: 0.75rem; }
.page-subtitle { font-size: 1.15rem; color: var(--grey); margin-bottom: 1rem; }
.page-desc { color: var(--grey); max-width: 680px; margin: 0 auto; }

/* ── Gradient border button (wrapper style — used for Read More) ── */
.btn-gradient-border {
    display: inline-block;
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    padding: 2px;
    border-radius: 8px;
}
.btn-gradient-inner {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}
.btn-gradient-inner:hover {
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    color: var(--white);
}

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}
/* Transparent state — white links */
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.95); font-weight: 600; }
.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active { color: var(--white); border-bottom-color: var(--white); }
.navbar:not(.scrolled) .btn-login {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}
.navbar:not(.scrolled) .btn-login:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}
/* Scrolled state — solid white */
.navbar.scrolled {
    background: var(--white);
    border-bottom: 1px solid rgba(24,120,243,0.1);
    box-shadow: 0 2px 20px rgba(3,17,55,0.10);
    padding: 0.65rem 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand img { display: block; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    align-items: center;
}
.nav-links a {
    color: var(--grey);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.15);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 210px;
    box-shadow: var(--shadow-hover);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--grey) !important;
    font-size: 0.9rem;
    border-bottom: none;
    font-weight: 500;
}
.dropdown-menu li a:hover { background: rgba(24,120,243,0.05); color: var(--blue) !important; }

/* Nav right: ISO badge + login */
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.iso-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue);
    border: 1px solid rgba(24,120,243,0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
}
.btn-login {
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    padding: 0.4rem 1rem;
    white-space: nowrap;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    border: 2px solid transparent;
    color: var(--dark);
}
.btn-login:hover {
    background:
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    color: var(--white);
}

/* Mobile hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    border: 2px solid transparent;
    color: var(--dark);
}
.btn-primary:hover {
    background:
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}
.btn-outline {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    border: 2px solid transparent;
    color: var(--dark);
}
.btn-outline:hover {
    background:
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    border: 2px solid transparent;
    color: var(--white);
}
.btn-outline-white:hover {
    background:
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) padding-box,
        linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%) border-box;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 0.9rem 2.5rem; font-size: 1rem; }

/* ══════════════════════════════════════════════════
   MESSAGES / ALERTS
   ══════════════════════════════════════════════════ */
.messages-container { padding: 1rem 1.5rem; }
.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: inherit; opacity: 0.6; }

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hero-section { position: relative; overflow: hidden; }
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}
.hero-slide.active {
    transform: translateX(0);
    z-index: 1;
}
.hero-slide.slide-out-left  { transform: translateX(-100%); z-index: 0; }
.hero-slide.slide-out-right { transform: translateX(100%);  z-index: 0; }

.hero-content { width: 100%; }
.hero-text { max-width: 640px; }

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 5.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(270deg, #22d3ee, #a855f7, #f43f5e, #fbbf24, #22d3ee);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradientShift 5s ease infinite;
}

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

/* Hero buttons — override global style for dark background */
.hero-actions .btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Primary hero button — solid gradient fill */
.hero-actions .btn-primary {
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    background-size: 200% auto;
    border: none;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(99,102,241,0.45);
}
.hero-actions .btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.65), 0 0 60px rgba(99,102,241,0.2);
    color: var(--white);
}

/* Secondary hero button — glass + gradient border */
.hero-actions .btn-outline-white {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-actions .btn-outline-white:hover {
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(24,120,243,0.15);
    color: #60a5fa;
    border: 1px solid rgba(24,120,243,0.3);
    border-radius: 20px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 1.25rem;
}
.hero-text h1 { font-size: 2.75rem; color: var(--white); margin-bottom: 1rem; }
.hero-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero controls */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }
.hero-prev:hover, .hero-next:hover { background: var(--blue); }

.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   WHO WE ARE
   ══════════════════════════════════════════════════ */
.who-we-are-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.who-image { position: relative; border-radius: 12px; overflow: hidden; background: #f0f4ff; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.who-image img { border-radius: 12px; width: 100%; object-fit: cover; }
.who-image-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--light); font-size: 0.9rem; padding: 3rem; }
.who-image-placeholder i { font-size: 4rem; color: rgba(24,120,243,0.3); }

/* ══════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.stat-card {
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.15);
    border-radius: 12px;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-card.dark {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-card.dark .stat-value { color: #60a5fa; }
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--light);
}
.stat-card.dark .stat-label { color: rgba(255,255,255,0.5); }

/* Fun Facts — R&L style layout */
.facts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.facts-text .section-title { margin-bottom: 0; }
.facts-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
}
.facts-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.facts-stat-val {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.facts-stat-lbl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════
   SERVICES / FEATURES GRID
   ══════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.services-grid-large { grid-template-columns: repeat(2, 1fr); }

.service-card {
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.12);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.service-icon {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1rem;
    width: 56px; height: 56px;
    background: rgba(24,120,243,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; line-height: 1.65; color: var(--grey); margin-bottom: 1rem; }
.card-link { font-size: 0.88rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 0.35rem; }
.card-link:hover { gap: 0.6rem; }

/* Gradient border animation */
@keyframes borderRotate {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Standard service card (v2) — gradient border + gradient icon, no animation */
.service-card-v2 {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(270deg, #0891b2, #6366f1, #db2777, #0891b2);
    background-size: 300% 300%;
    animation: borderRotate 4s ease infinite;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.service-card-v2::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: var(--white);
    z-index: 1;
}
.service-card-v2 > * { position: relative; z-index: 2; }
.service-card-v2:hover::before { opacity: 1; }
.service-card-v2:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(99,102,241,0.2); }
.service-icon-v2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #0891b2 0%, #6366f1 60%, #db2777 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}
.service-card-v2 h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.service-card-v2 p { font-size: 0.9rem; line-height: 1.65; color: var(--grey); margin-bottom: 1rem; }

/* ── 3D Flip card (first card test) ── */
.service-card-flip {
    perspective: 1000px;
    height: 260px;
    position: relative;
}
.service-card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 14px;
}
.service-card-flip:hover .service-card-flip-inner {
    transform: rotateY(180deg);
}
/* Front face */
.service-card-flip-front,
.service-card-flip-back {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 2rem;
    overflow: hidden;
}
.service-card-flip-front {
    background: var(--white);
    border: 2px solid rgba(99,102,241,0.15);
    display: flex;
    flex-direction: column;
}
.service-card-flip-front::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(270deg, #0891b2, #6366f1, #db2777, #0891b2);
    background-size: 300% 300%;
    animation: borderRotate 4s ease infinite;
    z-index: 0;
    opacity: 0.5;
}
.service-card-flip-front::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: var(--white);
    z-index: 1;
}
.service-card-flip-front > * { position: relative; z-index: 2; }
/* Back face */
.service-card-flip-back {
    background: linear-gradient(135deg, #031137 0%, #1e1b4b 50%, #0e1a40 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}
.service-card-flip-back .flip-back-icon {
    font-size: 2.2rem;
    color: var(--white);
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #0891b2, #6366f1, #db2777);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(99,102,241,0.5);
}
.service-card-flip-back h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.service-card-flip-back p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0; }
.service-card-flip-back .card-link-back {
    background: linear-gradient(90deg, #0891b2, #6366f1);
    color: var(--white);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════
   R&L SECTION (homepage)
   ══════════════════════════════════════════════════ */
.rl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Top row: image (wider) + text */
.rl-top-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Image column */
.rl-image-col {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}
.rl-section-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 16px 48px rgba(3,17,55,0.15);
}
.rl-img-fallback {
    height: 420px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 16px;
    border: 2px dashed rgba(24,120,243,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating badge on image */
.rl-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(3,17,55,0.15);
    text-align: center;
    border: 1px solid rgba(24,120,243,0.1);
    z-index: 2;
}
.rl-badge-val {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0891b2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.rl-badge-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--light);
    margin-top: 0.3rem;
}
.rl-outcomes { display: flex; gap: 2rem; margin-top: 1.5rem; }
.rl-outcome { text-align: center; }
.outcome-val { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); }
.outcome-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--light); }

/* R&L dark strip — stats */
.rl-dark-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 0.5rem;
}
.rl-dark-stat { text-align: center; }
.rl-dark-val {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.rl-dark-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
    display: block;
}
/* R&L dark strip — cards */
.rl-card-dark {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.8) !important;
}
.rl-card-dark h4 { color: var(--white); }
.rl-card-dark p { color: rgba(255,255,255,0.6); }
.rl-card-dark i { color: #60a5fa; }
.rl-card-dark:hover { border-color: #6366f1 !important; transform: translateY(-4px); }

.rl-cards { display: flex; flex-direction: row; gap: 1rem; }
.rl-card {
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.12);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition);
    color: var(--grey);
}
.rl-card:hover { border-color: var(--blue); transform: translateY(-4px); color: var(--grey); }
.rl-card i { font-size: 1.5rem; color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
.rl-card h4 { margin-bottom: 0.25rem; }
.rl-card p { font-size: 0.88rem; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.testimonial-quote { font-size: 1.75rem; color: var(--blue); opacity: 0.25; margin-bottom: 0.75rem; }
.testimonial-content { font-size: 0.92rem; line-height: 1.7; color: var(--grey); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-photo-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 0.15rem; }
.author-info strong { color: var(--dark); font-size: 0.9rem; }
.author-info span { font-size: 0.8rem; color: var(--light); }
.author-country { color: var(--blue) !important; }

/* ══════════════════════════════════════════════════
   TESTIMONIAL — split bg-image + gradient-border card
   ══════════════════════════════════════════════════ */

/* Section: full-bleed background image */
.t-section {
    position: relative;
    background-color: #07080d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Dark overlay so card reads clearly */
.t-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 8, 13, 0.35) 0%,
        rgba(7, 8, 13, 0.55) 45%,
        rgba(7, 8, 13, 0.92) 65%,
        rgba(7, 8, 13, 0.98) 100%
    );
    z-index: 1;
}

/* Two-column layout: left empty, right card */
.t-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    gap: 2rem;
    align-items: center;
}
.t-left-col { /* background shows through naturally */ }
.t-right-col { display: flex; flex-direction: column; gap: 1.25rem; }

/* Slides container */
.t-slides { position: relative; }
.t-slide { display: none; }
.t-slide.active { display: block; }

/* ── Gradient border: thick 4px wrapper ── */
.t-card-border {
    background: linear-gradient(160deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    padding: 4px;              /* border thickness */
    border-radius: 14px;
    width: 100%;
}

/* Inner dark card */
.t-card {
    background: #0d1117;
    border-radius: 11px;
    padding: 2.25rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 360px;
}

.t-card-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.t-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}
.t-card-body {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.58);
    flex: 1;
    /* allow internal scroll like screenshot */
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.t-card-body::-webkit-scrollbar { width: 4px; }
.t-card-body::-webkit-scrollbar-track { background: transparent; }
.t-card-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}
.t-author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.18);
}
.t-author-initials {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t-author-info { display: flex; flex-direction: column; gap: 0.2rem; }
.t-author-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.t-author-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Dots — right-aligned under card (matches screenshot) */
.t-dots {
    display: flex;
    justify-content: flex-end;
    gap: 0.45rem;
    padding-right: 0.25rem;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.t-dot.active { background: #22d3ee; transform: scale(1.25); }

/* Responsive */
@media (max-width: 900px) {
    .t-layout { grid-template-columns: 1fr; }
    .t-left-col { display: none; }
    .t-overlay {
        background: rgba(7, 8, 13, 0.88);
    }
}

/* ══════════════════════════════════════════════════
   INTERNSHIP PAGE — CERTIFICATES & COURSES
   ══════════════════════════════════════════════════ */
.section-header { margin-bottom: 3rem; }

.certificate-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.cert-benefits { list-style: none; margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.cert-benefits li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.cert-benefits li i { color: var(--blue); }
.cert-placeholder {
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border: 2px dashed rgba(24,120,243,0.3);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--light);
}
.cert-placeholder i { font-size: 5rem; color: rgba(24,120,243,0.3); margin-bottom: 1rem; display: block; }
.cert-placeholder p { font-size: 1rem; color: var(--grey); font-weight: 600; }

/* Courses */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.filter-btn {
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(24,120,243,0.2);
    border-radius: 20px;
    background: var(--white);
    color: var(--grey);
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 0;
}
.course-card {
    background: var(--white);
    border: 1px solid rgba(24,120,243,0.12);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--grey);
    transition: var(--transition);
}
.course-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24,120,243,0.12);
    color: var(--grey);
}
.course-icon { font-size: 1.75rem; color: var(--blue); }
.course-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 7px;
    margin-bottom: 0.25rem;
}
.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.course-card:hover .course-img { transform: scale(1.05); }
.course-title { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.course-duration { font-size: 0.8rem; color: var(--light); }
.course-tag {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    background: rgba(24,120,243,0.08);
    color: var(--blue);
    border-radius: 20px;
    width: fit-content;
}

.no-courses-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light);
}
.no-courses-placeholder i { font-size: 4rem; color: rgba(24,120,243,0.2); margin-bottom: 1rem; display: block; }

/* Course detail */
.course-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.sidebar-card { background: #f8faff; border: 1px solid rgba(24,120,243,0.12); border-radius: 12px; padding: 1.75rem; }
.sidebar-card h4 { margin-bottom: 1rem; }
.detail-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.detail-table td { padding: 0.6rem 0; border-bottom: 1px solid rgba(24,120,243,0.08); }
.detail-table td:first-child { color: var(--light); white-space: nowrap; width: 40%; }
.detail-table td i { color: var(--blue); margin-right: 0.4rem; }
.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.highlights-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.highlights-list li i { color: var(--blue); }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item > i { font-size: 1.4rem; color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
.value-item strong { display: block; color: var(--dark); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.9rem; }

/* Mission / Vision / Goals — image + numbered list */
.mvg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}
.mvg-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}
.mvg-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
}
.mvg-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.6s ease;
}
.mvg-image-col:hover .mvg-img { transform: scale(1.04); }
.mvg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,145,178,0.15) 0%, rgba(99,102,241,0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}
.mvg-img-fallback {
    height: 520px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}
/* Numbered items */
.mvg-items { display: flex; flex-direction: column; gap: 0; flex: 1; justify-content: space-between; margin-top: 1.5rem; }
.mvg-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: default;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}
.mvg-item:last-child { border-bottom: none; }
.mvg-item.mvg-visible {
    opacity: 1;
    transform: translateX(0);
}
.mvg-item:hover { border-color: rgba(99,102,241,0.4); }
.mvg-number {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99,102,241,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mvg-item:hover .mvg-number {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(99,102,241,0.65);
}
.mvg-item-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mvg-item-body p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin: 0;
}

/* ── Transformation Strip ── */
.transformation-strip {
    padding: 4rem 0;
    background: linear-gradient(135deg, #020c2e 0%, #031137 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.transformation-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.transformation-headline {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a5b4fc 40%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

/* ── Why Choose Us — split layout ── */
.why-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.why-split-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
}

.why-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.why-split-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3,17,55,0.3) 0%, transparent 60%);
    border-radius: 20px;
    pointer-events: none;
}

.why-img-fallback {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    background: rgba(3, 17, 55, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    z-index: 2;
}

.why-badge-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.why-badge-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0891b2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why-badge-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.why-badge-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.why-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-point-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.why-point-body h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.why-point-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ── How We Work ── */
/* ── How We Work ── */
.process-steps {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    position: relative;
}

/* Connecting line behind all circles */
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px; /* half of circle height (56px / 2) */
    left: calc(1.5rem + 28px); /* start at centre of first circle */
    right: calc(1.5rem + 28px); /* end at centre of last circle */
    height: 2px;
    background: linear-gradient(90deg, #0891b2, #6366f1, #db2777);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: left;
    padding: 0 1.25rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.process-step.process-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Aura glow behind each card */
.process-step::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0.7);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.18) 0%, rgba(8,145,178,0.1) 40%, transparent 75%);
    border-radius: 50%;
    filter: blur(24px);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.process-step:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.process-step-card {
    margin-top: 1.5rem;
    padding: 1.5rem 1.25rem 1.5rem 1.75rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(3,17,55,0.07);
    box-shadow:
        0 2px 4px rgba(3,17,55,0.06),
        0 8px 24px rgba(3,17,55,0.10),
        0 20px 40px rgba(3,17,55,0.07);
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Left accent bar */
.process-step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0891b2, #6366f1);
    border-radius: 0 4px 4px 0;
    transform: translateY(-50%);
    transition: height 0.35s ease;
}

.process-step:hover .process-step-card {
    transform: translateY(-6px);
    box-shadow:
        0 2px 4px rgba(3,17,55,0.06),
        0 12px 32px rgba(3,17,55,0.14),
        0 32px 56px rgba(3,17,55,0.10);
    background: linear-gradient(135deg, rgba(8,145,178,0.05) 0%, rgba(99,102,241,0.04) 100%);
}

.process-step:hover .process-step-card::before {
    height: 60%;
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px #f8faff, 0 0 0 6px rgba(99,102,241,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.12);
    box-shadow: 0 0 0 4px #f8faff, 0 6px 24px rgba(99,102,241,0.65);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

.process-arrow { display: none; }

/* ══════════════════════════════════════════════════
   CAREERS PAGE
   ══════════════════════════════════════════════════ */

/* Life at Ziuke — dark gradient section */
.perks-section {
    background:
        linear-gradient(180deg, #020b28 0%, #031137 40%, #071a4a 70%, #0d1f5c 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}
.perks-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(24,120,243,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(99,102,241,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Perks grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.perk-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.25rem 2rem;
    box-shadow:
        0 4px 16px rgba(0,0,0,0.25),
        0 1px 0 rgba(255,255,255,0.05) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 4px; height: 0;
    background: linear-gradient(180deg, #0891b2, #6366f1);
    border-radius: 0 4px 4px 0;
    transform: translateY(-50%);
    transition: height 0.35s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(24,120,243,0.4);
    box-shadow:
        0 0 0 1px rgba(24,120,243,0.2),
        0 12px 40px rgba(8,145,178,0.15),
        0 32px 64px rgba(3,17,55,0.4);
}
.perk-card:hover::before { height: 60%; }

.perk-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: #fff;
    margin-bottom: 1.25rem;
}

.perk-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.perk-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* Culture strip */
.career-culture-strip {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #0d1f5c 0%, #031137 60%, #020b28 100%);
    position: relative;
    overflow: hidden;
}
.career-culture-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(99,102,241,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.culture-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, #fff 0%, #a5b4fc 40%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative; z-index: 1;
    margin-bottom: 0.75rem;
}
.culture-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    position: relative; z-index: 1;
}

/* Job listings */
.job-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.job-card-new {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(3,17,55,0.07);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(3,17,55,0.07), 0 8px 32px rgba(3,17,55,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0891b2, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.job-card-new:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(3,17,55,0.12); }
.job-card-new:hover::before { transform: scaleX(1); }

.job-card-internship { border: 2px solid rgba(99,102,241,0.2); background: linear-gradient(135deg, rgba(8,145,178,0.03), rgba(99,102,241,0.04)); }
.job-card-internship::before { transform: scaleX(1); }

.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    flex-shrink: 0;
}

.job-card-new h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.4rem; }

.job-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }

.job-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
}
.job-tag-type   { background: rgba(8,145,178,0.1);  color: #0891b2; }
.job-tag-loc    { background: rgba(3,17,55,0.07);   color: var(--dark); }
.job-tag-dept   { background: rgba(99,102,241,0.1); color: #6366f1; }
.job-tag-intern { background: rgba(219,39,119,0.1); color: #db2777; }

.job-card-new > p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; flex: 1; }

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}
.job-skills li {
    font-size: 0.78rem;
    background: #f8faff;
    border: 1px solid rgba(3,17,55,0.08);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

/* ── Career application form ── */
.career-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.career-form-left h2 { margin-bottom: 1rem; }

.career-contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.career-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.career-contact-item i {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #0891b2;
    flex-shrink: 0;
}

/* What happens next — vertical timeline */
.cf-timeline {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cf-timeline-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.cf-timeline-steps { display: flex; flex-direction: column; }

.cf-timeline-step {
    display: grid;
    grid-template-columns: 52px 2px 1fr;
    gap: 0 1rem;
    align-items: start;
}

.cf-tl-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.08), 0 0 0 7px rgba(99,102,241,0.25);
    z-index: 1;
}

.cf-tl-line {
    width: 2px;
    background: linear-gradient(180deg, rgba(99,102,241,0.5), rgba(8,145,178,0.2));
    min-height: 36px;
    margin: 4px auto 0;
    border-radius: 2px;
}

.cf-tl-line-last { background: transparent; }

.cf-tl-body {
    padding-bottom: 1.5rem;
}

.cf-tl-body h5 {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    margin-top: 0.35rem;
}

.cf-tl-body p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* Form card */
.career-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.career-form-card-header {
    background: linear-gradient(135deg, #0891b2, #6366f1);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.career-form-card-header i { font-size: 1rem; }

.career-form-card form { padding: 2rem; }

.career-form-card .form-group { margin-bottom: 1.25rem; }

.career-form-card label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cf-label-icon { color: #0891b2; font-size: 0.78rem; }
.cf-required    { color: #e11d48; }
.cf-hint        { font-size: 0.75rem; color: var(--light); font-weight: 400; text-transform: none; letter-spacing: 0; }

.career-form-card .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(3,17,55,0.1);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: #f8faff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
}

.career-form-card .form-control:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
    background: #fff;
}

/* Custom file upload zone */
.cf-upload-zone {
    border: 2px dashed rgba(3,17,55,0.15);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    background: #f8faff;
    transition: border-color 0.25s ease, background 0.25s ease;
    position: relative;
}

.cf-upload-zone:hover,
.cf-upload-zone.drag-over {
    border-color: #0891b2;
    background: rgba(8,145,178,0.04);
}

.cf-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.cf-upload-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #0891b2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.cf-upload-text {
    font-size: 0.88rem;
    color: var(--grey);
    margin: 0;
}

.cf-upload-name {
    font-size: 0.8rem;
    color: #0891b2;
    font-weight: 600;
    margin: 0.35rem 0 0;
}

/* Submit button */
.cf-submit-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #1878F3, #0891b2);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(24,120,243,0.35);
}

.cf-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24,120,243,0.45);
}

.form-error { font-size: 0.8rem; color: #e11d48; margin-top: 0.25rem; display: block; }

/* About page CTA strip */
.about-cta-strip {
    padding: 5rem 0;
    background: linear-gradient(135deg, #031137 0%, #0f172a 40%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}
.about-cta-strip::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.about-cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(90deg, #0891b2 0%, #6366f1 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.about-cta-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   TRAINING PAGE
   ══════════════════════════════════════════════════ */
.training-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.training-card { background: var(--white); border: 1px solid rgba(24,120,243,0.12); border-radius: 12px; padding: 2rem; }
.training-icon { font-size: 2.5rem; color: var(--blue); margin-bottom: 1rem; }
.training-card h3 { margin-bottom: 0.75rem; }
.training-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 1rem; }
.training-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--light); }
.training-meta span i { color: var(--blue); margin-right: 0.3rem; }

/* ══════════════════════════════════════════════════
   R&L PROGRAMME PAGE
   ══════════════════════════════════════════════════ */
.rl-programme-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rl-programme-card { background: var(--white); border: 1px solid rgba(24,120,243,0.12); border-radius: 12px; padding: 2rem; text-align: center; }
.rl-programme-icon { font-size: 3rem; color: var(--blue); margin-bottom: 1rem; }
.rl-programme-card h3 { margin-bottom: 0.75rem; }
.rl-programme-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 1.25rem; }
.rl-stats { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.rl-stats span { font-size: 0.75rem; background: rgba(24,120,243,0.08); color: var(--blue); padding: 0.2rem 0.65rem; border-radius: 20px; }

/* ══════════════════════════════════════════════════
   CAREERS PAGE
   ══════════════════════════════════════════════════ */
.job-listings { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.job-card { background: var(--white); border: 1px solid rgba(24,120,243,0.12); border-radius: var(--radius); padding: 1.25rem; }
.job-card h4 { margin-bottom: 0.25rem; }
.job-type { display: inline-block; font-size: 0.72rem; background: rgba(24,120,243,0.08); color: var(--blue); padding: 0.15rem 0.55rem; border-radius: 20px; margin-bottom: 0.5rem; }
.job-card p { font-size: 0.88rem; color: var(--grey); margin-bottom: 0.75rem; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.form-group .form-control {
    border: 1px solid rgba(24,120,243,0.2);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--grey);
    transition: border-color 0.2s;
    width: 100%;
}
.form-group .form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,120,243,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { font-size: 0.8rem; color: #dc2626; }

.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(24,120,243,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--dark); margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-info-item p { font-size: 0.88rem; }
.contact-info-item a { color: var(--grey); }
.contact-info-item a:hover { color: var(--blue); }
.contact-social { margin-top: 2rem; }
.contact-social strong { font-size: 0.9rem; color: var(--dark); }

/* ══════════════════════════════════════════════════
   POLICY PAGES
   ══════════════════════════════════════════════════ */
.policy-content h2 { margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.policy-content p { margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.75; }
.policy-content:first-child h2 { margin-top: 0; }

/* ══════════════════════════════════════════════════
   GRADIENT CTA SECTION
   ══════════════════════════════════════════════════ */
.cta-gradient-section {
    background: #0a0a0a;
    padding: 6rem 0;
    text-align: center;
}
.cta-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}
.cta-gradient-heading {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #22d3ee 0%, #6366f1 35%, #a855f7 65%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    line-height: 1.15;
}
.btn-cta-outline {
    display: inline-block;
    padding: 0.85rem 2.75rem;
    border: 1.5px solid rgba(255,255,255,0.55);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-cta-outline:hover {
    background: var(--white);
    color: #0a0a0a;
    border-color: var(--white);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
    background: #0d0d0d;
    color: #94a3b8;
    padding: 3.5rem 0 1.5rem;
    font-family: var(--font-footer);
}
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-list a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-nav-list a:hover { color: #fff; }
.footer-nav-list i { font-size: 0.6rem; color: var(--blue); }

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}
.footer-col-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}
.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    line-height: 1.6;
}
.footer-contact-item i {
    color: var(--blue);
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.footer-contact-item strong { display: block; color: var(--white); margin-bottom: 0.2rem; font-size: 0.88rem; }
.footer-contact-item p { margin: 0; color: #94a3b8; }
.footer-contact-item a { color: #94a3b8; }
.footer-contact-item a:hover { color: var(--blue); }

.footer-col-center { text-align: center; }
.footer-iso { max-width: 100px; margin: 0 auto; display: block; }

.footer-social { display: flex; gap: 0.75rem; justify-content: center; margin-top: 0.5rem; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.footer-map { margin-bottom: 1.5rem; }
.footer-map iframe { border-radius: 8px; }
.footer-legal-links { display: flex; gap: 1rem; align-items: center; font-size: 0.88rem; }
.footer-legal-links a { color: #94a3b8; }
.footer-legal-links a:hover { color: var(--blue); }
.footer-legal-links span { color: rgba(255,255,255,0.2); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.82rem;
    color: #4b5563;
}

/* social-links used in Let's Talk page */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--blue); color: var(--white); }

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ══════════════════════════════════════════════════
   PAGE BANNER
   ══════════════════════════════════════════════════ */
.page-hero-simple { }
.page-banner {
    min-height: 280px;
    padding-top: 80px;
    display: flex;
    align-items: center;
}
/* Full-viewport page banner — matches homepage hero height */
.page-hero-banner {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ══════════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   ══════════════════════════════════════════════════ */
.scroll-fade {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-fade.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger left/right for grid children */
.who-we-are-grid > *:first-child.scroll-fade,
.rl-top-row > *:first-child.scroll-fade,
.about-grid > *:first-child.scroll-fade {
    transform: translateX(-32px);
}
.who-we-are-grid > *:last-child.scroll-fade,
.rl-top-row > *:last-child.scroll-fade,
.about-grid > *:last-child.scroll-fade {
    transform: translateX(32px);
}
.who-we-are-grid > *.scroll-visible,
.rl-top-row > *.scroll-visible,
.about-grid > *.scroll-visible {
    transform: translate(0);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-fade { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .facts-layout { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-split-image-col { min-height: 300px; }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .job-listings-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; gap: 1rem; }
    .process-steps::before { display: none; }
    .process-step { flex: 1 1 calc(50% - 1rem); padding: 0; }
    .services-grid-large { grid-template-columns: 1fr; }
    .training-cards { grid-template-columns: 1fr; }
    .rl-programme-cards { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-main-grid > .footer-col:last-child { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .rl-grid { grid-template-columns: 1fr; }
    .rl-top-row { grid-template-columns: 1fr 1fr; }
    .rl-image-col { grid-column: 1 / -1; }
    .rl-section-img { height: 280px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 3.5rem 0; }
    .section-title { font-size: 1.6rem; }

    /* Navbar mobile */
    .navbar-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(24,120,243,0.1);
        box-shadow: var(--shadow-hover);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(24,120,243,0.06); }
    .nav-links a { padding: 0.85rem 1.5rem; display: block; }
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(24,120,243,0.06);
        background: #f8faff;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-right { display: none; }

    /* Hero */
    .hero-slider { height: 100vh; min-height: 480px; }
    .hero-text h1 { font-size: 2rem; }

    /* Grids */
    .who-we-are-grid { grid-template-columns: 1fr; }
    .who-image { min-height: 200px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .facts-layout { grid-template-columns: 1fr; gap: 2rem; }
    .facts-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .rl-grid { grid-template-columns: 1fr; }
    .rl-top-row { grid-template-columns: 1fr; }
    .rl-cards { flex-direction: column; }
    .rl-section-img { height: 240px; }
    .rl-img-badge { bottom: -14px; right: 12px; }
    .rl-outcomes { gap: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .certificate-inner { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .course-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-mvg-grid { grid-template-columns: 1fr; }
    .mvg-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .mvg-img { height: 300px; }
    .why-split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .why-split-image-col { min-height: 260px; }
    .perks-grid { grid-template-columns: 1fr; }
    .job-listings-grid { grid-template-columns: 1fr; }
    .career-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps { flex-direction: column; gap: 1rem; }
    .process-steps::before { display: none; }
    .process-step { flex: 1 1 auto; padding: 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col-center { text-align: left; }
    .footer-social { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .hero-slider { height: 100vh; min-height: 400px; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-actions { flex-direction: column; }
}
