/* =========================================
   CSS Variables & Theme Setup
========================================= */
:root {
    /* Colors - Premium Blue & Gold Theme */
    --clr-primary: #0A2540;      /* Deep Stripe-like Navy */
    --clr-primary-light: #163B65;
    --clr-secondary: #F6A820;    /* LIC Gold/Yellow */
    --clr-secondary-hover: #E09516;
    
    --clr-bg-base: #FFFFFF;
    --clr-bg-light: #F8FAFC;
    --clr-bg-surface: #F1F5F9;
    --clr-bg-dark: #0A192F;
    
    --clr-text-main: #334155;
    --clr-text-heading: #0F172A;
    --clr-text-light: #94A3B8;
    
    --clr-border: #E2E8F0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --section-py: 5rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 40px -10px rgba(10, 37, 64, 0.08);
    --shadow-hover: 0 25px 50px -12px rgba(10, 37, 64, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --scroll-progress: 0%;
    --hero-move-x: 0px;
    --hero-move-y: 0px;
}

/* =========================================
   Reset & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-base);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(10, 37, 64, 0.04), transparent 38%),
        radial-gradient(circle at 88% 85%, rgba(246, 168, 32, 0.08), transparent 34%);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(10, 37, 64, 0.35);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Typography Utilities
========================================= */
.text-center { text-align: center; }
.text-lead { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-white { color: #FFFFFF !important; }
.text-light { color: var(--clr-text-light); }
.text-muted { color: #64748B; }

.highlight-text { color: var(--clr-primary); }
.highlight-yellow { color: var(--clr-secondary); }
.highlight { color: var(--clr-secondary); font-weight: 800; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* =========================================
   Buttons & Badges
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(120deg, #FFD36B 0%, var(--clr-secondary) 40%, #F6A820 100%);
    color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn::after {
    content: "";
    position: absolute;
    inset: -120% auto -120% -180%;
    width: 130%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: rotate(20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.btn:hover::after {
    left: 120%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-secondary:hover {
    background-color: rgba(10, 37, 64, 0.05);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(10, 37, 64, 0.06);
    color: var(--clr-primary);
    border-color: rgba(10, 37, 64, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    background: rgba(10, 37, 64, 0.1);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(246, 168, 32, 0.15);
    color: var(--clr-secondary-hover);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================================
   Layout & Sections
========================================= */
.section {
    padding: var(--section-py) 0;
}

.bg-light { background-color: var(--clr-bg-light); }
.bg-surface { background-color: var(--clr-bg-surface); border-radius: var(--radius-lg); padding: 3rem; }
.bg-dark { background-color: var(--clr-bg-dark); }
.bg-blue-light { background-color: rgba(10, 37, 64, 0.05); }

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.gap-large { gap: 4rem; }
.align-center { align-items: center; }

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
}

/* =========================================
   Navbar
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: var(--scroll-progress);
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transition: width 0.12s linear;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-cta {
    animation: ctaPulse 2.8s ease-in-out infinite;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    color: var(--clr-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
}

.nav-mobile-link {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-weight: 600;
    color: var(--clr-primary);
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background:
        linear-gradient(160deg, rgba(10, 25, 47, 0.04), rgba(10, 37, 64, 0.01)),
        var(--clr-bg-light);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(246, 168, 32, 0.2);
    top: calc(-100px + var(--hero-move-y));
    right: calc(-100px + var(--hero-move-x));
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(10, 37, 64, 0.1);
    bottom: calc(-150px - var(--hero-move-y));
    left: calc(-150px - var(--hero-move-x));
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
}

.hero-content::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: 6%;
    top: -6%;
    background: radial-gradient(circle, rgba(246, 168, 32, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; line-height: 1.1; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-main);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-hero {
    min-height: auto;
    padding-bottom: 4rem;
}

.home-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 2rem;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.06);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.trust-chip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.35rem;
    min-height: 88px;
    padding: 1.2rem 1.35rem;
    background: transparent;
    box-shadow: none;
    color: var(--clr-primary);
    position: relative;
}

.trust-chip::before {
    content: "";
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--clr-secondary), #ffd36b);
    margin-bottom: 0.45rem;
}

.trust-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.trust-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--clr-primary);
}

.trust-chip + .trust-chip {
    border-left: 1px solid rgba(10, 37, 64, 0.08);
}

/* Glass Card styling for Mentor */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transform: perspective(850px) translate3d(var(--tilt-x, 0px), calc(var(--tilt-y, 0px) + var(--lift-y, 0px)), 0) rotateX(var(--rot-x, 0deg)) rotateY(var(--rot-y, 0deg));
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.3s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--clr-secondary);
}

.glass-card:hover {
    --lift-y: -8px;
    box-shadow: var(--shadow-hover);
    border-color: rgba(246, 168, 32, 0.45);
}

.mentor-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mentor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--clr-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.avatar-icon {
    width: 36px;
    height: 36px;
}

.mentor-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.mentor-title {
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 1rem;
}

.experience-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-bg-surface);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    animation: shimmerTag 4.2s linear infinite;
}

.experience-tag i {
    width: 16px;
    height: 16px;
}

.mentor-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--clr-text-main);
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #E2E8F0;
}

.advisor-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(10, 37, 64, 0.08);
}

.advisor-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.advisor-metric {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(10, 37, 64, 0.06);
}

.advisor-metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1;
    color: var(--clr-primary);
    margin-bottom: 0.35rem;
}

.advisor-metric-label {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #516174;
}

.advisor-card-footer {
    margin-top: 1.5rem;
}

/* =========================================
   Features Grid
========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition-normal), box-shadow 0.45s ease;
    position: relative;
    top: 0;
    transform: perspective(900px) translate3d(var(--tilt-x, 0px), calc(var(--tilt-y, 0px) + var(--lift-y, 0px)), 0) rotateX(var(--rot-x, 0deg)) rotateY(var(--rot-y, 0deg));
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    --lift-y: -8px;
    border-color: rgba(10, 37, 64, 0.1);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -70% auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 168, 32, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(246, 168, 32, 0.15);
    color: var(--clr-secondary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--clr-secondary);
    color: white;
    transform: rotate(-8deg) scale(1.05);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--clr-text-light);
}

/* Span last card in grid to center if odd */
@media (min-width: 900px) {
    .feature-card-span {
        grid-column: 1 / -1;
        max-width: 600px;
        justify-self: center;
        text-align: center;
    }
    .feature-card-span .feature-icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   Split Info Section
========================================= */
.info-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.about-layout {
    align-items: stretch;
}

.about-copy {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    max-width: 60ch;
}

.about-panel {
    display: flex;
    align-items: stretch;
}

.about-panel-card {
    width: 100%;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(10, 37, 64, 0.97), rgba(22, 59, 101, 0.92));
    color: #fff;
    box-shadow: var(--shadow-card);
}

.about-panel-card .block-label,
.about-panel-card strong,
.about-panel-card .section-title {
    color: #fff;
}

.about-panel-card .check-list li {
    color: rgba(255, 255, 255, 0.88);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -55px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 168, 32, 0.18), transparent 70%);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    flex-shrink: 0;
}

.service-note,
.service-support {
    color: #5d6b7a;
}

.service-list {
    display: grid;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.service-list li {
    position: relative;
    padding-left: 1.4rem;
    font-weight: 500;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-secondary);
}

.service-support {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.check-icon {
    color: #10B981; /* Emerald Green */
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-list {
    position: relative;
    padding-left: 2rem;
}

.bullet-list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-secondary);
    border-radius: 50%;
}

/* =========================================
   Career Benefits list
========================================= */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal), box-shadow 0.35s ease;
    transform: perspective(850px) translate3d(var(--tilt-x, 0px), var(--tilt-y, 0px), 0) rotateX(var(--rot-x, 0deg)) rotateY(var(--rot-y, 0deg)) translateX(var(--shift-x, 0px));
    will-change: transform;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    --shift-x: 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-secondary);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.section-subtitle-dark {
    color: rgba(255, 255, 255, 0.7);
}

.review-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 3rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.94));
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.review-actions {
    margin-top: 2rem;
}

.review-highlight {
    display: grid;
    gap: 1rem;
}

.review-mini-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(10, 37, 64, 0.96), rgba(22, 59, 101, 0.92));
    color: #fff;
    box-shadow: var(--shadow-md);
}

.review-mini-card i {
    width: 28px;
    height: 28px;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.review-mini-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.review-mini-card p {
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   Contact & Apply Now
========================================= */
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-info-wrapper {
        grid-template-columns: 1fr 1.5fr;
        padding: 0 2rem;
    }
}

.contact-person h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-address {
    margin-top: 1rem;
    color: #526476;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 1px solid transparent;
    transform: translate3d(var(--tilt-x, 0px), var(--tilt-y, 0px), 0) rotateX(var(--rot-x, 0deg)) rotateY(var(--rot-y, 0deg));
    will-change: transform;
}

.card-hover:hover {
    background: var(--clr-bg-light);
    transform: translate3d(var(--tilt-x, 0px), calc(var(--tilt-y, 0px) - 2px), 0) rotateX(var(--rot-x, 0deg)) rotateY(var(--rot-y, 0deg));
    border-color: rgba(10, 37, 64, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text-heading);
}

.home-contact-layout {
    align-items: center;
}

/* =========================================
   Footer
========================================= */
.footer {
    background: linear-gradient(130deg, #0A2540 0%, #0A192F 80%);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        text-align: right;
    }
}

/* =========================================
   Animations
========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
    filter: blur(3px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246, 168, 32, 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(246, 168, 32, 0); }
}

@keyframes shimmerTag {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246, 168, 32, 0); }
    50% { box-shadow: 0 0 0 6px rgba(246, 168, 32, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 991px) {
    .home-hero-layout,
    .service-grid,
    .review-panel,
    .why-list,
    .hero-trust-strip {
        grid-template-columns: 1fr;
    }

    .advisor-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-strip {
        gap: 0;
    }

    .trust-chip + .trust-chip {
        border-left: 0;
        border-top: 1px solid rgba(10, 37, 64, 0.08);
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .navbar {
        padding: 0.9rem 0;
    }

    .nav-content {
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
    }

    .nav-toggle {
        display: none;
    }

    .nav-mobile-link {
        display: inline-flex;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        font-size: 0.98rem;
        font-weight: 600;
        color: var(--clr-primary);
        flex-shrink: 0;
    }

    .logo {
        min-width: 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        display: none;
        width: 0;
        height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .nav-link {
        width: 100%;
        padding: 0.85rem 0.25rem;
        border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    }

    .nav-cta {
        width: 100%;
        animation: none;
    }

    .hero {
        padding: 9rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .btn-large,
    .btn,
    .btn-ghost {
        width: 100%;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .trust-chip,
    .service-card,
    .review-panel,
    .contact-card,
    .about-panel-card,
    .bg-surface {
        padding: 1.5rem;
    }

    .trust-chip {
        min-height: auto;
        border-radius: 0;
        padding: 1rem 1.1rem;
    }

    .trust-value {
        font-size: 1rem;
    }

    .mentor-header {
        gap: 1rem;
        margin-bottom: 1.2rem;
        align-items: center;
    }

    .mentor-avatar {
        width: 56px;
        height: 56px;
    }

    .avatar-icon {
        width: 24px;
        height: 24px;
    }

    .mentor-name {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .mentor-title {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .advisor-metric {
        padding: 0.9rem 1rem;
    }

    .advisor-metric-value {
        font-size: 1.4rem;
    }

    .advisor-metric-label {
        font-size: 0.88rem;
    }

    .mentor-quote {
        font-size: 1rem;
        line-height: 1.65;
        padding-left: 1rem;
    }

    .experience-tag {
        font-size: 0.78rem;
        line-height: 1.4;
        padding: 0.45rem 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.95rem;
        line-height: 1.18;
    }

    .section-subtitle,
    .text-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .bullet-list {
        padding-left: 1.35rem;
    }

    .bullet-list li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.85rem;
    }

    .bullet-list li::before {
        left: -1.35rem;
    }

    .contact-item {
        align-items: flex-start;
        gap: 1rem;
        padding: 0.9rem 0.85rem;
    }

    .contact-card {
        padding: 2.25rem 1.15rem;
    }

    .contact-header {
        margin-bottom: 1.75rem;
    }

    .contact-info-wrapper {
        gap: 1.5rem;
    }

    .contact-person h3 {
        font-size: 1.45rem;
    }

    .contact-address,
    .text-muted {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
    }

    .contact-label {
        font-size: 0.74rem;
        margin-bottom: 0.15rem;
    }

    .contact-value {
        font-size: 0.98rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.25rem;
        text-align: center;
    }

    .footer-logo .logo-text {
        font-size: 1.35rem;
    }

    .footer-logo p,
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-bottom {
        gap: 0.35rem;
        text-align: center;
    }
}
