*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important;
}

:root {
    --primary: #1a3fa8;
    --primary-light: #eef2ff;
    --secondary: #28a745;
    --secondary-light: #f0fdf4;
    --accent: #2d5ce8;
    --dark: #0f172a;
    --bg-body: #ffffff;
    --bg-soft: #f8fafc;
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Animated background */
.bg-anim {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 50%, rgba(26, 63, 168, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(40, 167, 69, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(45, 92, 232, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

/* Floating orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatOrb 8s ease-in-out infinite;
    z-index: -1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(26, 63, 168, 0.4);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(40, 167, 69, 0.3);
    bottom: -80px;
    right: -80px;
    animation-delay: -3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(45, 92, 232, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 63, 168, 0.2);
    animation: rise linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Grid lines */
.grid-lines {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header Top Bar ── */
.header-top {
    background: #0c1d4e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 100px;
}

header.scrolled .header-top {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-content .contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.header-top-content .contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-content .contact-info .para {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

.header-top-content .contact-info .my-icon {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Map custom icon classes → Font Awesome */
.icon-call-us::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f095';
}

.icon-massage::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f0e0';
}

.icon-time-hour::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f017';
}

.icon-facebook::before {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    content: '\f09a';
}

.icon-twitter::before {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    content: '\f099';
}

.icon-instagram::before {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    content: '\f16d';
}

.icon-be::before {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    content: '\f1b4';
}

.icon-youtube::before {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    content: '\f167';
}

.follow-us-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.follow-us-link .para {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    white-space: nowrap;
}

.follow-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.78rem;
    transition: all 0.3s;
}

.follow-icon a:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Header */
header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.header-nav {
    padding: 10px 0;
}

@media (max-width: 768px) {
    .header-top-content .contact-info li:not(:first-child) {
        display: none;
    }

    .follow-us-link .para {
        display: none;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 4px 10px rgba(26, 63, 168, 0.15));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 10px;
    border: 1px solid var(--border);
    line-height: 1;
}

.menu-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Dropdown Styles */
.nav-links li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
}

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

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-main);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
    padding-left: 20px;
}

/* Mega Menu Styles */
.nav-links li.mega-dropdown {
    position: relative;
}

.mega-menu {
    width: 950px;
    max-width: 90vw;
    left: 50% !important;
    transform: translateX(-70%) translateY(15px) !important;
    padding: 25px !important;
}

.mega-dropdown:hover .mega-menu {
    transform: translateX(-70%) translateY(0) !important;
}

.mega-menu::before {
    left: 70% !important;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-col li a {
    padding: 10px 10px;
    border-radius: 8px;
}

.mega-menu-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    padding: 10px 0;
}

.mega-menu-brand img.mega-menu-logo {
    max-width: 120px;
    margin-bottom: 15px;
    height: auto;
}

.mega-menu-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .nav-links li.mega-dropdown {
        position: relative;
    }

    .mega-menu {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px !important;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-menu-col li a {
        padding: 8px 10px;
    }
}


.btn-primary,
.btn-nav {
    background: linear-gradient(135deg, var(--secondary), #21913c);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.25);
    display: inline-block;
}

.placement-logo-item img {
    width: 100px;
    height: auto;
}

.btn-nav {
    padding: 10px 22px;
    font-size: 14px;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.btn-primary:hover,
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 12px 26px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

/* Sections Common */
section {
    padding: 60px 0;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-light);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span.grad {
    color: #28a745;
}

/* Banner Section */

/* Static Hero Section */
.hero-static {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(26, 63, 168, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(40, 167, 69, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-content-left h1 .highlight {
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-partners {
    margin-bottom: 35px;
}

.hero-partners p {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.partner-logos {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    opacity: 0.8;
}

.partner-item i {
    font-size: 1.4rem;
    color: var(--primary);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.google-badge i.fa-google {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4285F4 0%, #4285F4 30%, #EA4335 30%, #EA4335 55%, #FBBC05 55%, #FBBC05 75%, #34A853 75%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.google-badge .stars {
    color: #FBBC05;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.btn-download {
    background: var(--secondary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.3);
    background: #21913c;
}

/* Hero Form Card */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #21913c;
    transform: translateY(-2px);
}

.form-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-light);
    border-radius: 30px;
    z-index: 1;
}

/* Dark Mode Hero Section Redesign */
.hero-dark-section {
    position: relative;
    background: url('../images/hero.png') center center / cover no-repeat;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(12, 29, 78, 0.90) 0%,
            rgba(12, 29, 78, 0.96) 100%);
    z-index: 1;
}

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

.hero-dark-section .hero-content-left h1 {
    color: #ffffff;
}

.hero-dark-section .hero-content-left h1 .highlight {
    color: #28a745;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.35);
}

.hero-dark-section .hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #00d2ff;
    backdrop-filter: blur(5px);
}

.hero-dark-section .hero-partners p {
    color: rgba(255, 255, 255, 0.6);
}

.hero-dark-section .partner-item {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-dark-section .partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #00d2ff;
}

.hero-dark-section .partner-item i {
    color: #00d2ff;
}

.hero-dark-section .google-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.hero-dark-section .google-badge i {
    color: #ffb300;
}

.hero-dark-section .google-badge .stars {
    color: #ffb300;
}

.hero-dark-section .btn-download {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.35);
}

.hero-dark-section .btn-download:hover {
    background: #21913c;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.5);
    transform: translateY(-3px);
}

.hero-dark-section .hero-form-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-dark-section .form-decor {
    border-color: rgba(40, 167, 69, 0.4);
}

/* Placement Section */
.placement-section {
    padding: 60px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.placement-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.3;
}

.placement-title .count {
    color: var(--secondary);
}

.placement-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.placement-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scrollPlacement 30s linear infinite;
}

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

@keyframes scrollPlacement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.placement-logo-item {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.3s;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placement-logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-partners,
    .google-badge {
        justify-content: center;
    }

    .hero-partners p {
        text-align: center;
    }

    .partner-logos {
        justify-content: center;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 63, 168, 0.02), transparent);
    z-index: 0;
}

.glass-card>* {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 63, 168, 0.15);
    box-shadow: var(--shadow-lg);
}

/* About Section */

.about-section {
    padding-top: 180px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Creative About Image Layout */
.about-img-creative {
    position: relative;
    width: 100%;
    aspect-ratio: 1672 / 940;
}

.img-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

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

.about-img-creative div:hover img {
    transform: scale(1.05);
}

.experience-badge-creative {
    position: absolute;
    bottom: 6%;
    right: 3%;
    z-index: 4;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 20px 25px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 30px rgba(26, 63, 168, 0.4);
    animation: floatingBadge 4s ease-in-out infinite;
}

@keyframes floatingBadge {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@media (max-width: 768px) {
    .about-img-creative {
        aspect-ratio: 1672 / 940;
        margin-bottom: 30px;
    }

    .experience-badge-creative {
        padding: 12px 16px;
        bottom: 5%;
        right: 3%;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-creative {
        order: -1;
    }

    /* Dark section breakout resets for mobile */
    .about-dark-section .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text-wrap {
        padding: 0 20px;
        order: 1;
    }

    .about-dark-section .about-img-creative {
        border-radius: 0;
        order: 0;
    }

    .about-dark-section .img-main {
        border-radius: 0;
    }
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Dark Mode About Section Redesign */
.about-dark-section {
    position: relative;
    background: url('../images/contact-bg.png') center center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.about-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(12, 29, 78, 0.90) 0%,
            rgba(12, 29, 78, 0.96) 100%);
    z-index: 1;
}

/* Dark section breakout grid - text stays container-aligned, image goes to right edge */
.about-dark-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.about-text-wrap {
    padding: 0 50px 0 max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.about-dark-section .section-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #00d2ff;
}

.about-dark-section .section-title {
    color: #ffffff;
}

.about-dark-section .section-title .abtgrad {
    color: #28a745;
}

.about-dark-section .about-text p {
    color: rgba(255, 255, 255, 0.8);
}

.about-dark-section .about-img-creative::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 75%);
    top: 10%;
    left: 10%;
    z-index: 0;
}

.about-dark-section .about-img-creative {
    /* Image column extends to right viewport edge */
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.about-dark-section .img-main {
    border-radius: 20px 0 0 20px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}

.about-dark-section .btn-outline {
    border: 2px solid #00d2ff;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.about-dark-section .btn-outline:hover {
    background: #00d2ff;
    color: #0c1d4e;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.5);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 1.25rem;
}

@media (max-width: 576px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Simplified About Layout */
.about-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box .img-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(26, 63, 168, 0.2), rgba(40, 167, 69, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.glass-placeholder {
    font-size: 6rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 20px rgba(26, 63, 168, 0.1));
}

.about-simple-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background: var(--bg-soft);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    display: flex;
    gap: 25px;
    padding: 40px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(26, 63, 168, 0.2);
}

.mv-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.mv-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {

    .about-simple-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(26, 63, 168, 0.2);
}

.value-card h3 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

/* Courses Section */
.courses-swiper {
    padding: 20px 10px 60px;
    margin: 0 -10px;
}

.courses-swiper .swiper-slide {
    height: auto;
}

.course-card {
    height: 100%;
    padding: 30px;
    margin-bottom: 0;
}


.course-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-icon img {
    width: 80px;
}

.course-card:hover .course-icon {
    transform: translateY(-5px) scale(1.1);
}


.course-icon svg,
.course-icon i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon i {
    font-size: 28px;
    color: #fff;
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.course-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
}

/* Courses Swiper Customization */
.courses-pagination {
    bottom: 0px !important;
}

.courses-pagination .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.courses-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Counter Section */
.counter-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 40px 10px;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: transform 0.3s ease;
    border-right: 1px solid var(--border);
}

.counter-item:last-child {
    border-right: none;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    filter: drop-shadow(0 4px 10px rgba(40, 167, 69, 0.1));
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Why Choose Us */
/* Why Choose Us Redesign */
.why-choose-us {
    padding: 80px 0;
    background: #0c1d4e;
    color: #ffffff;
    overflow: hidden;
}

.why-choose-us .section-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-graphic-wrap {
    position: relative;
}

.why-graphic-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-graphic-main {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 5;
    position: relative;
}

.graphic-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.experience-year {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00d2ff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.why-graphic-main p {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 6;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #00d2ff, #0066ff);
}

.badge-icon.placement-green {
    background: linear-gradient(135deg, var(--secondary), #138833);
}

.badge-icon.labs-blue {
    background: linear-gradient(135deg, #ff9900, #ff5500);
}

.badge-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.badge-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Position and Animations */
.badge-tr {
    top: 20px;
    right: -10px;
    animation: float-badge-1 6s ease-in-out infinite;
}

.badge-bl {
    bottom: 20px;
    left: -10px;
    animation: float-badge-2 8s ease-in-out infinite;
}

.badge-br {
    bottom: 60px;
    right: -20px;
    animation: float-badge-3 7s ease-in-out infinite;
}

/* Decorative circles */
.why-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}

.bg-circle-1 {
    width: 250px;
    height: 250px;
    background: rgba(40, 167, 69, 0.12);
    top: -30px;
    left: -20px;
    animation: rotate-blob 15s linear infinite;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 210, 255, 0.1);
    bottom: -10px;
    right: -10px;
    animation: rotate-blob 20s linear infinite reverse;
}

/* Keyframe Animations */
@keyframes float-badge-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes float-badge-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(12px) rotate(-1deg);
    }
}

@keyframes float-badge-3 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1.5deg);
    }
}

@keyframes rotate-blob {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.why-content h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #ffffff;
}

.why-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-graphic-wrap {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .why-content {
        order: 1;
        text-align: center;
    }

    .why-content h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-graphic-container {
        height: 380px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .why-graphic-main {
        width: 200px;
        height: 200px;
        border-radius: 25px;
    }

    .experience-year {
        font-size: 3.5rem;
    }

    .why-graphic-main p {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .floating-badge {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 12px;
    }

    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .badge-text h3 {
        font-size: 0.85rem;
    }

    .badge-text p {
        font-size: 0.6rem;
    }

    .badge-tr {
        right: -10px;
        top: 20px;
    }

    .badge-bl {
        left: -10px;
        bottom: 20px;
    }

    .badge-br {
        right: -15px;
        bottom: 70px;
    }

    .bg-circle-1 {
        width: 180px;
        height: 180px;
    }

    .bg-circle-2 {
        width: 150px;
        height: 150px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    position: relative;
}

.testimonials-swiper {
    padding: 20px 10px 60px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.quote-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-pagination {
    bottom: 0px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.3;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Mentors Section */
.mentors-section {
    padding: 60px 0;
    position: relative;
}

.mentors-swiper {
    padding: 20px 10px 60px;
}

.mentor-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.mentor-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.mentor-img {
    height: 280px;
    background: var(--primary-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-placeholder {
    font-size: 6rem;
    color: rgba(26, 63, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentor-card:hover .mentor-photo {
    transform: scale(1.05);
}

.mentor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

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

.mentor-socials {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentor-card:hover .mentor-socials {
    transform: translateY(0);
}

.mentor-socials a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mentor-socials a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.mentor-info {
    padding: 25px;
}

.mentor-info h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.mentor-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mentors-pagination {
    bottom: 0px !important;
}

.mentors-pagination .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.3;
}

.mentors-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-img {
    height: 200px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary);
}

/* Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Contact Split Layout (Homepage) ── */
.contact-section-bg {
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

/* Left — image panel */
.contact-image-panel {
    position: relative;
    background: url('../images/contact-bg.png') center center / cover no-repeat;
    min-height: 700px;
}

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(12, 29, 78, 0.82) 0%,
            rgba(12, 29, 78, 0.92) 100%);
    display: flex;
    align-items: center;
}

.contact-image-content {
    padding: 40px 100px;
    color: #ffffff;
}

.contact-image-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
}

.contact-image-content h2 span {
    color: var(--secondary);
}

.contact-image-content>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Info items on image */
.contact-info-stacked {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 20px;
    transition: background 0.3s;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-image-panel {
        min-height: 650px !important;
    }
}

/* Right — dark navy form panel */
.contact-form-panel {
    background: #0c1d4e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.contact-form-inner {
    width: 100%;
    max-width: 480px;
}

.contact-form-inner h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-form-inner>p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form fields inside dark panel */
.contact-form-panel .form-group-v2 label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-panel .form-group-v2 input,
.contact-form-panel .form-group-v2 select,
.contact-form-panel .form-group-v2 textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 18px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.contact-form-panel .form-group-v2 input::placeholder,
.contact-form-panel .form-group-v2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-panel .form-group-v2 input:focus,
.contact-form-panel .form-group-v2 select:focus,
.contact-form-panel .form-group-v2 textarea:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.contact-form-panel .form-group-v2 select option {
    background: #0c1d4e;
    color: #ffffff;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary), #1aa34a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    margin-top: 8px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
    }

    .contact-image-panel {
        min-height: 420px;
    }

    .contact-image-content {
        padding: 40px 30px;
    }

    .contact-form-panel {
        padding: 40px 25px;
    }
}

/* Contact Page Styles */
.page-header {
    padding: 180px 0 60px;
    text-align: center;
}

.contact-page-section {
    padding: 60px 0;
}

.contact-grid-wrapper-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-v2 {
    display: flex;
    gap: 20px;
    padding: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-card-v2:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.icon-circle-v2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(26, 63, 168, 0.15);
}

.card-text h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.card-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-wrapper-v2 {
    padding: 50px;
}

.form-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-v2 {
    margin-bottom: 25px;
}

.form-group-v2 label {
    display: block;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group-v2 select option {
    background: #ffffff;
    color: var(--text-main);
}

.map-section {
    padding: 60px 0 100px;
}

.map-container {
    padding: 15px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 15px;
}

@media (max-width: 992px) {
    .contact-grid-wrapper-v2 {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper-v2 {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.form-control {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    border-top: none;
    padding: 80px 0 30px;
    margin-top: 50px;
    background: #0c1d4e;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.6fr 1.6fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-about img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15)) !important;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 18px !important;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.25rem;
        display: block;
        padding: 12px;
        border-radius: 12px;
    }

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

    .menu-toggle {
        display: flex;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
    }
}

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

/* Courses Page Grid Styles */
.courses-grid-section {
    padding: 0px 0 60px;
}

.courses-main-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card-v2 {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card-v2:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.course-card-v2 .course-icon {
    width: 65px;
    height: 65px;
    background: var(--secondary-light);
    border: 1px solid rgba(40, 167, 69, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.course-card-v2:hover .course-icon {
    background: var(--secondary);
    color: #fff;
    transform: rotateY(180deg);
}

.course-card-v2 h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.course-card-v2 p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-card-v2 .course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.course-card-v2 .course-meta span {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.course-card-v2 .view-details {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.course-card-v2 .view-details:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .courses-main-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Mentors Page Grid Styles */
.mentors-grid-section {
    padding: 0px 0 60px;
}

.mentors-main-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .mentors-main-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mentors-main-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mentors-main-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Grid Styles */
.blog-grid-section {
    padding: 0px 0 60px;
}

.blog-main-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .blog-main-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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