@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import 'variables.css';
@import 'utilities.css';
@import 'animation.css';
@import 'responsive.css';

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-family);
    margin: 0;
    padding-top: 120px;
    animation: fadeInPage 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInPage {
    0% { opacity: 0; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Navbar Container Styling */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

header:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.nav-container {
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand / Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.brand-logo {
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.85;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    opacity: 1;
}

/* Glass active active-pill indicator */
.nav-active-pill {
    position: absolute;
    height: 40px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.04);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}


.chevron-icon {
    transition: transform 0.2s ease;
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Container Aligned to Header Box */
.dropdown-mega {
    position: static !important;
}

.mega-menu-container {
    position: fixed;
    top: calc(100% + 12px); /* Moves it slightly down below header bottom edge */
    left: 0;
    right: 0;
    width: auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.dropdown:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tabs Header */
.mega-tabs-header {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0 16px;
}

.mega-tab-btn {
    background: none;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.mega-tab-btn:hover {
    color: #0F6FFF;
}

.mega-tab-btn.active {
    color: #0f172a;
}

.mega-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: #0F6FFF;
    border-radius: 3px 3px 0 0;
}

/* Content Wrapper */
.mega-content-wrapper {
    display: flex;
    height: 380px;
}

/* Sidebar */
.mega-sidebar {
    width: 28%;
    background: #f8fafc;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
    padding: 16px;
    overflow-y: auto;
}

.mega-sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-sidebar-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mega-sidebar-btn:hover {
    background: rgba(15, 111, 255, 0.04);
    color: #0F6FFF;
}

.mega-sidebar-btn.active {
    background: #0F6FFF;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 111, 255, 0.25);
}

.mega-sidebar-btn .mega-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.mega-sidebar-btn:hover .mega-arrow,
.mega-sidebar-btn.active .mega-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Detail Panel */
.mega-detail-panel {
    width: 72%;
    background: #ffffff;
    padding: 24px;
    overflow-y: auto;
}

.mega-detail-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: megaFadeIn 0.4s ease-out;
}

@keyframes megaFadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Detail Banner */
.mega-detail-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0F6FFF 0%, #1e40af 100%);
    padding: 20px 24px;
    border-radius: 14px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 111, 255, 0.15);
}

.mega-detail-banner h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.mega-detail-banner p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
}

.banner-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-link-btn:hover {
    background: #ffffff;
    color: #0F6FFF;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Detail Grid */
.mega-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.grid-sub-item {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.grid-sub-item:hover {
    background: #ffffff;
    border-color: rgba(15, 111, 255, 0.15);
    box-shadow: 0 8px 20px rgba(15, 111, 255, 0.04);
    transform: translateY(-2px);
}

.grid-sub-item .sub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(15, 111, 255, 0.06);
    color: #0F6FFF;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.grid-sub-item h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px 0;
}

.grid-sub-item p {
    font-size: 0.76rem;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent-color);
    padding-left: 24px;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-phone:hover .phone-icon {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.phone-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Button style */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-apply {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-apply:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-arrow {
    background: #ffffff;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-apply:hover .btn-arrow {
    transform: translateX(3px);
    color: var(--primary-hover);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Footer Section Styling */
.footer-section {
    background: linear-gradient(135deg, #0052CC 0%, #0066CC 50%, #0088FF 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 50px 0 0;
    margin-top: 0;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 35px;
    display: grid;
    grid-template-columns: 2.2fr 1.6fr 1.8fr 1.5fr;
    gap: 30px;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #FFB84D;
}

/* Col Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Override brand text colors inside footer (blue bg) */
.footer-section .brand-title {
    color: #FFFFFF;
}

.footer-section .brand-subtitle {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.footer-about-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Social links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icon.fb { background: #3b5998; }
.social-icon.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.yt { background: #ff0000; }
.social-icon.ln { background: #0077b5; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

/* Footer Links & Navigation Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.footer-links li a::before {
    content: '›';
    margin-right: 8px;
    font-weight: 700;
    color: #FFB84D;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-links li a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact .contact-icon {
    color: #FFB84D;
    margin-top: 3px;
    display: flex;
}

.footer-contact .contact-text {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact .contact-text a:hover {
    color: #FFFFFF;
}

/* Map Card */
.map-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-svg-mockup {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-link {
    color: #FFB84D;
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.map-link:hover {
    text-decoration: underline;
    opacity: 0.9;
    color: #FFFFFF;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: linear-gradient(135deg, #003D99 0%, #0052CC 50%, #0066CC 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ==========================================
   HOMEPAGE CUSTOM SECTIONS
   ========================================== */

/* Section Typography & Utilities */
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Creative Backgrounds & Decorative Items */
.creative-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.creative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.2;
    mix-blend-mode: multiply;
    animation: blobFloat 12s infinite alternate ease-in-out;
}

.blob-primary {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.blob-secondary {
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    width: 450px;
    height: 450px;
    bottom: -100px;
    left: -150px;
    animation-delay: 2s;
}

.blob-accent {
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    width: 350px;
    height: 350px;
    top: 50%;
    left: 40%;
    animation-delay: 4s;
    opacity: 0.12;
}

.technical-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 102, 204, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 204, 0.02) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

@keyframes blobFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(10px) scale(0.95); }
}

.container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.85;
    flex-shrink: 0;
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    -webkit-text-fill-color: unset;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.section-desc {
    color: #8f9cae;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 1. Industry Statistics Section */
.stats-section {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    padding: 80px 0;
    z-index: 1;
    border-bottom: 1px solid rgba(15, 111, 255, 0.05);
}

.stats-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    display: none;
}

.stats-blob-1 {
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 111, 255, 0.22) 0%, rgba(15, 111, 255, 0) 70%);
    filter: blur(60px);
    animation: floatBlob 18s ease-in-out infinite alternate;
}

.stats-blob-2 {
    bottom: -120px;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(50px);
    animation: floatBlob2 15s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

@keyframes floatBlob2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(20px) scale(1.05); }
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stats-info {
    max-width: 360px;
}

.stats-tag {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.stats-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.stats-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

@media (min-width: 993px) {
    .stats-cards-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 40px;
        right: 40px;
        height: 3.5px;
        z-index: 1;
        pointer-events: none;
        background-image: linear-gradient(to right, rgba(15, 111, 255, 0.55) 60%, transparent 40%);
        background-size: 20px 3.5px;
        background-repeat: repeat-x;
        animation: statsLinkLineMove 8s linear infinite;
        transform: translateY(-50%);
    }
}

@keyframes statsLinkLineMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 200px 0;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 111, 255, 0.09);
    border-radius: 20px;
    padding: 26px 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 15px 35px rgba(15, 111, 255, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 111, 255, 0.12), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(15, 111, 255, 0.25);
    box-shadow: 0 20px 40px rgba(15, 111, 255, 0.08);
}

.stat-card:hover::after {
    left: 150%;
}

@media (min-width: 993px) {
    .stats-cards-grid .stat-card:nth-child(1) {
        transform: translateY(20px);
    }
    .stats-cards-grid .stat-card:nth-child(2) {
        transform: translateY(-20px);
    }
    .stats-cards-grid .stat-card:nth-child(3) {
        transform: translateY(20px);
    }
    .stats-cards-grid .stat-card:nth-child(4) {
        transform: translateY(-20px);
    }

    .stats-cards-grid .stat-card:nth-child(1):hover {
        transform: translateY(12px) scale(1.02);
    }
    .stats-cards-grid .stat-card:nth-child(2):hover {
        transform: translateY(-28px) scale(1.02);
    }
    .stats-cards-grid .stat-card:nth-child(3):hover {
        transform: translateY(12px) scale(1.02);
    }
    .stats-cards-grid .stat-card:nth-child(4):hover {
        transform: translateY(-28px) scale(1.02);
    }
}

/* Blue Theme Highlight */
.stat-card.blue-theme {
    border: 1.5px solid rgba(15, 111, 255, 0.35);
    box-shadow: 0 12px 30px rgba(15, 111, 255, 0.08), 0 0 15px rgba(15, 111, 255, 0.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.95) 100%);
}
.stat-card.blue-theme .stat-icon { background: #0F6FFF; color: #FFF; box-shadow: 0 4px 10px rgba(15, 111, 255, 0.2); }

/* Green Theme Highlight */
.stat-card.green-theme {
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08), 0 0 15px rgba(16, 185, 129, 0.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.95) 100%);
}
.stat-card.green-theme .stat-icon { background: #10B981; color: #FFF; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2); }

/* Purple Theme Highlight */
.stat-card.purple-theme {
    border: 1.5px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08), 0 0 15px rgba(139, 92, 246, 0.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 255, 0.95) 100%);
}
.stat-card.purple-theme .stat-icon { background: #8B5CF6; color: #FFF; box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2); }

/* Orange Theme Highlight */
.stat-card.orange-theme {
    border: 1.5px solid rgba(249, 115, 22, 0.35);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.08), 0 0 15px rgba(249, 115, 22, 0.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 237, 0.95) 100%);
}
.stat-card.orange-theme .stat-icon { background: #F97316; color: #FFF; box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2); }

/* Hover states with elevated shadows */
.stat-card.blue-theme:hover { box-shadow: 0 20px 40px rgba(15, 111, 255, 0.16); }
.stat-card.green-theme:hover { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.16); }
.stat-card.purple-theme:hover { box-shadow: 0 20px 40px rgba(139, 92, 246, 0.16); }
.stat-card.orange-theme:hover { box-shadow: 0 20px 40px rgba(249, 115, 22, 0.16); }

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-card.blue-theme .stat-number { color: #0F6FFF; }
.stat-card.green-theme .stat-number { color: #10B981; }
.stat-card.purple-theme .stat-number { color: #8B5CF6; }
.stat-card.orange-theme .stat-number { color: #F97316; }

.stat-label {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-subtext {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* 2. Why MAPe Academy Section */
.why-section {
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
}

.why-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.why-tag {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.why-header h2 {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.why-drone-illustration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
    animation: floatDrone 3s ease-in-out infinite;
}

@keyframes floatDrone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.why-journey-container {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1380px;
    height: 900px;
    margin: 40px auto 0 auto;
    padding: 0;
}

.journey-svg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.journey-svg {
    width: 100%;
    height: 100%;
}



.journey-row {
    display: flex;
    width: 100%;
    height: 180px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.journey-row:last-of-type {
    margin-bottom: 0;
}

.journey-card-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.journey-empty-space {
    flex: 1;
}

.journey-row.left-aligned .journey-card-wrapper {
    justify-content: flex-start;
}

.journey-row.right-aligned .journey-card-wrapper {
    justify-content: flex-end;
}

.journey-card {
    width: 460px;
    max-width: 460px;
    position: relative;
    background: 
        radial-gradient(circle at 8px 8px, rgba(15, 111, 255, 0.03) 1.2px, transparent 1.2px),
        linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    background-size: 16px 16px, 100% 100%;
    border: 1px solid rgba(15, 111, 255, 0.16); /* Sleek light blue border */
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(15, 111, 255, 0.02), inset 0 1px 0px #ffffff; /* Thin inner glow */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(15, 111, 255, 0.05) 0%, rgba(15, 111, 255, 0) 70%);
    z-index: -1;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* Thin top gradient accent line, inset from corners to avoid border overflow */
.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0F6FFF 0%, #8B5CF6 100%);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
    z-index: 5;
}

.journey-card.active::after {
    transform: scaleX(1);
}

.journey-card.active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(15, 111, 255, 0.26); /* Slightly stronger active light blue border */
    box-shadow: 0 20px 40px rgba(15, 111, 255, 0.04), inset 0 1px 0px #ffffff;
}

.journey-card.active::before {
    opacity: 1;
    transform: scale(1);
}

.journey-card.active:hover {
    transform: translateY(-8px) scale(1.02); /* Scale 1.02 */
    box-shadow: 0 25px 50px rgba(15, 111, 255, 0.12), inset 0 1px 0px #ffffff, inset 0 0 10px rgba(15, 111, 255, 0.05); /* Stronger shadow + inner glow highlight */
    border-color: #0F6FFF; /* Border changes to primary blue */
    cursor: pointer;
}

.journey-card.active:hover::before {
    opacity: 1.5;
    transform: scale(1.1);
}

.journey-card.active:hover .journey-icon-box {
    transform: rotate(12deg) scale(1.05);
    background: rgba(15, 111, 255, 0.08) !important;
    border-color: rgba(15, 111, 255, 0.35) !important;
    box-shadow: 0 6px 20px rgba(15, 111, 255, 0.24) !important;
}

.journey-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.journey-badge {
    position: relative; /* relative to allow absolute positioning of checkmark and ripple */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(15, 111, 255, 0.08);
    color: #0F6FFF;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.journey-card.active .journey-badge {
    background: #0F6FFF;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(15, 111, 255, 0.5); /* Blue glow */
    animation: badgePulse 2s infinite ease-in-out; /* Slight pulse */
}

/* Ripple ring effect behind active badge */
.journey-card.active .journey-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(15, 111, 255, 0.35);
    animation: badgeRipple 2s infinite ease-out;
    z-index: -1;
}

/* Transition to Checkmark state after completion */
.journey-card.completed .journey-badge {
    color: transparent !important;
    background: #10B981 !important; /* Success Green */
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.45) !important; /* Green glow */
    transform: scale(1.05);
}

.journey-card.completed .journey-badge::after {
    content: '✔';
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: checkmarkPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes badgeRipple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes checkmarkPop {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
}

.journey-status-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    background: rgba(71, 85, 105, 0.06);
    padding: 3px 9px;
    border-radius: 20px;
    margin-top: 14px;
    margin-bottom: 2px;
    border: 1px solid rgba(71, 85, 105, 0.08);
    transition: all 0.4s ease;
}

.journey-card.active .journey-status-tag {
    color: #0f6fff;
    background: rgba(15, 111, 255, 0.06);
    border-color: rgba(15, 111, 255, 0.12);
}

.journey-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(15, 111, 255, 0.04);
    border: 1px solid rgba(15, 111, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents icon container shrinking in flex layouts */
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 10px;
    width: 100%;
    gap: 16px;
}

.journey-icon-box svg {
    transition: all 0.4s ease;
}

.journey-card.active .journey-icon-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FF 100%);
    border: 1px solid rgba(15, 111, 255, 0.18);
    box-shadow: 2px 5px 15px rgba(15, 111, 255, 0.12), inset 1px 1px 0px #ffffff;
}

.journey-card.active .journey-icon-box svg {
    transform: scale(1.05);
}

.journey-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    transition: color 0.4s ease;
}

.journey-card.active h3 {
    color: #0F6FFF;
}

.journey-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 3. Courses Overview Section */
.courses-section {
    background: radial-gradient(circle at top, #EEF6FF, white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--card-bg);
    border: 1px solid rgba(15, 111, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), border-color 0.8s ease, box-shadow 0.8s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(15, 111, 255, 0.25);
    box-shadow: 0 20px 40px rgba(15, 111, 255, 0.15), 0 0 20px rgba(15, 111, 255, 0.08);
}

.course-image {
    position: relative;
    height: 155px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    overflow: hidden;
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    transform-style: preserve-3d;
    transform: translateZ(10px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.course-card:hover .course-image {
    transform: scale(1.08);
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.45) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.course-card:hover .course-image::after {
    opacity: 0.7;
}

.course-tag {
    position: relative;
    z-index: 2;
    background: var(--accent-color);
    color: #000;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.course-card:hover .course-tag {
    transform: translateX(6px);
}

.course-card:hover .course-btn::after {
    transform: translateX(4px);
}

.course-coord {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-family: monospace;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.course-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: translateZ(15px);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.course-card:hover .course-body {
    transform: translateZ(25px);
}

.course-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.35;
}

.course-body p {
    font-size: 0.85rem;
    color: #8f9cae;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.course-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-top: 1px dashed rgba(15, 111, 255, 0.12);
    border-bottom: 1px dashed rgba(15, 111, 255, 0.12);
    padding: 8px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.spec-label {
    font-size: 0.65rem;
    color: #8F9CAE;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.spec-value {
    font-size: 0.76rem;
    color: var(--text-main);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #8f9cae;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF !important;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.course-btn::after {
    content: '→';
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-btn:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.course-btn:hover::after {
    transform: translateX(4px);
}

.view-all-btn, .projects-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.view-all-btn svg, .projects-cta-btn svg {
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.view-all-btn:hover, .projects-cta-btn:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    color: #FFFFFF !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.view-all-btn:hover svg, .projects-cta-btn:hover svg {
    transform: translateX(4px);
}

/* 4. Live Projects Section */
.projects-section {
    background: var(--dark-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid rgba(15, 111, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 320px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 111, 255, 0.25);
    box-shadow: 0 20px 40px rgba(15, 111, 255, 0.08);
}

/* ==========================================================================
   Hero Section Styling
   ========================================================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background-color: #f8fafc;
    color: #0f172a;
    padding: 40px 0 40px;
    margin-top: -120px;
}

/* Scroll-spacer wrapper that gives the pinned hero room to scrub through */
#hero-pin-spacer {
    overflow: hidden;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   DRONE ASSEMBLY – percentage-based layout
   Container mirrors the 984×642 source canvas exactly.
   Part left/top/width/height are percentages of that canvas.
   ═══════════════════════════════════════════════════════ */
.hero-drone-assembly {
    position: absolute;
    /* Sit in the right half of the hero */
    top: 42%;
    right: 4%;
    transform: translateY(-50%);
    /* Maintain exact 984:642 source aspect ratio */
    width: clamp(380px, 48vw, 720px);
    aspect-ratio: 984 / 642;
    height: auto;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

/* Hovering keyframes & state for completed drone bobbing */
@keyframes droneHoverBobbing {
    0% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-10px); }
    100% { transform: translateY(-50%) translateY(0px); }
}
.hero-drone-assembly.hovering {
    animation: droneHoverBobbing 2.5s ease-in-out infinite;
}

/* All parts absolutely positioned as % of the container */
.drone-part {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    will-change: transform, opacity;
}

#svg-drone {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#svg-drone g {
    will-change: transform, opacity;
}

/* Responsive – shrink on tablet/mobile */
@media (max-width: 992px) {
    .hero-drone-assembly {
        right: auto;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        width: clamp(300px, 80vw, 500px);
    }
}

@media (max-width: 576px) {
    .hero-drone-assembly {
        top: 65%;
        width: clamp(260px, 90vw, 360px);
    }
}

/* Gradient overlays for contrast and readability (fades left to right to highlight drone) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.85) 0%, rgba(248, 250, 252, 0.5) 55%, rgba(248, 250, 252, 0.0) 100%);
    z-index: 2;
}

/* Hero Depth Layer & Visual FX */
.hero-depth-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-flight-paths {
    position: absolute;
    top: 0;
    right: 4%;
    width: 85.7vw;
    max-width: 1285px;
    height: 100%;
    pointer-events: none;
}

.hero-glow-back {
    position: absolute;
    top: 42%;
    right: calc(4% + clamp(190px, 24vw, 360px)); /* Matches the center of the clamped drone */
    transform: translate(50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(139, 92, 246, 0.08) 45%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(40px);
}

.hero-radar-rings {
    position: absolute;
    top: 42%;
    right: calc(4% + clamp(190px, 24vw, 360px)); /* Matches the center of the clamped drone */
    transform: translate(50%, -50%);
    width: 480px;
    height: 480px;
    pointer-events: none;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 50%;
    animation: radar-pulse 9s linear infinite;
}

.radar-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 70%; height: 70%; animation-delay: 3s; }
.radar-ring:nth-child(3) { width: 40%; height: 40%; animation-delay: 6s; }

.hero-flight-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8;
    animation: particle-float 12s ease-in-out infinite;
}

@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-25px) translateX(15px);
        opacity: 0.8;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
    width: 100%;
}

.hero-promos-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 45px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 18px 22px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Combined Single Whole Promo Card */
.combined-promo-card-whole {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px !important;
}

.promo-row-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start; /* Align items to start, preventing full-width stretching */
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.promo-row-item:hover {
    background: rgba(15, 111, 255, 0.04);
    transform: translateX(4px);
}

.promo-row-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.06);
    margin: 2px 0;
}

/* Make headers and text compact in the combined card */
.combined-promo-card-whole h3 {
    font-size: 0.92rem !important;
    margin: 0 0 3px 0 !important;
}

.combined-promo-card-whole p {
    font-size: 0.75rem !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}

.combined-promo-card-whole .promo-tag {
    font-size: 0.6rem !important;
    padding: 2px 8px !important;
    margin-bottom: 6px !important;
    align-self: flex-start !important; /* Forces badge to remain compact pill aligned to left */
}

.combined-promo-card-whole .promo-link {
    font-size: 0.75rem !important;
}

.promo-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.promo-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 10;
    background: none;
    border: none;
    outline: none;
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.promo-close-btn:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.05);
}

.promo-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.tag-sales {
    background: rgba(234, 88, 12, 0.08);
    color: #ea580c;
    border: 1px solid rgba(234, 88, 12, 0.15);
}

.tag-training {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.tag-services {
    background: rgba(14, 165, 233, 0.08);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.promo-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
}

.promo-card p {
    font-size: 0.8rem;
    color: #475569;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.promo-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.promo-link:hover {
    color: #1D4ED8;
    transform: translateX(3px);
}

.promo-card.dismissed {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-content {
    max-width: 700px;
    margin-top: -20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-top: -10px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title span {
    background: linear-gradient(135deg, #0052CC 0%, #00A3FF 35%, #9333EA 70%, #EC4899 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 6s ease infinite alternate;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f6fff 0%, #0c57c7 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(15, 111, 255, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 111, 255, 0.45);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: #1e293b;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(15, 23, 42, 0.12);
    border-color: rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
}

/* Glassmorphism Stats Cards floating at the bottom boundary of Hero Section */
.hero-stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: -125px; /* Compiles spacing for elements below */
    transform: translateY(125px); /* Centers cards directly on the boundary line */
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 20px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero-stat-box:nth-child(1) {
    animation: float-v-1 6s ease-in-out infinite;
}

.hero-stat-box:nth-child(2) {
    animation: float-v-2 6.5s ease-in-out infinite 0.5s;
}

.hero-stat-box:nth-child(3) {
    animation: float-v-3 7s ease-in-out infinite 1s;
}

.hero-stat-box:nth-child(4) {
    animation: float-v-4 7.5s ease-in-out infinite 1.5s;
}

.hero-stat-box:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 111, 255, 0.25);
    box-shadow: 0 12px 35px rgba(15, 111, 255, 0.12);
    transform: translateY(-4px);
}

@keyframes float-v-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes float-v-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-v-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes float-v-4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.hero-stat-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(15, 111, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    border: 1px solid rgba(15, 111, 255, 0.25);
    flex-shrink: 0;
}

.hero-stat-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #0f172a;
    line-height: 1.2;
}

.hero-stat-info p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.2;
}

/* Switcher Widget */
.hero-media-switcher {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4px;
    display: flex;
    gap: 4px;
}

.switcher-btn {
    background: none;
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.switcher-btn svg {
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.switcher-btn:hover {
    color: #ffffff;
}

.switcher-btn.active {
    background: #0f6fff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 111, 255, 0.3);
}

.switcher-btn.active svg {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-container {
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: -80px;
        margin-top: 30px;
    }
    .hero-stat-box:nth-child(1),
    .hero-stat-box:nth-child(2),
    .hero-stat-box:nth-child(3),
    .hero-stat-box:nth-child(4) {
        transform: none !important;
        animation: none !important;
    }
    .hero-glow-back, .hero-radar-rings {
        left: 50% !important;
        top: 50% !important;
    }
}

@media (max-width: 576px) {
    .hero-stats-panel {
        grid-template-columns: 1fr;
        margin-bottom: -50px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}


@media (min-width: 769px) {
    .project-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-size: cover;
        background-position: center;
        transform: translate3d(0, 0, 0);
        transform-origin: left center;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .project-info {
        position: absolute;
        top: 0;
        right: 0;
        width: 55%;
        height: 100%;
        padding: 30px 35px 30px 48px; /* Added wider padding on the left adjacent to the image */
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 1;
        opacity: 0;
        transform: translate3d(20px, 0, 0);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    }

    /* Hover States */
    .project-card:hover .project-img {
        transform: translate3d(-55%, 0, 0) scale(1.05);
    }

    .project-card:hover .project-info {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    /* Alternating Card (nth-child(even)) */
    .project-card:nth-child(even) .project-img {
        transform-origin: right center;
    }

    .project-card:nth-child(even) .project-info {
        left: 0;
        right: auto;
        padding: 30px 48px 30px 35px; /* Added wider padding on the right adjacent to the image */
        transform: translate3d(-20px, 0, 0);
    }

    .project-card:nth-child(even):hover .project-img {
        transform: translate3d(55%, 0, 0) scale(1.05);
    }

    .project-card:nth-child(even):hover .project-info {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Fallback for general rendering, overridden by responsive block for mobile */
.project-img {
    background-size: cover;
    background-position: center;
}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.p-tag-badge {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(15, 111, 255, 0.06);
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .p-tag-badge {
    background: rgba(15, 111, 255, 0.12);
}

.project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.project-info p {
    font-size: 0.82rem;
    color: #8f9cae;
    line-height: 1.45;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.project-link svg {
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-link {
    color: #0056cc;
}

.project-card:hover .project-link svg {
    transform: translateX(4px);
}

.projects-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 111, 255, 0.03) 0%, rgba(15, 111, 255, 0.01) 100%);
    border: 1px solid rgba(15, 111, 255, 0.08);
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.p-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.p-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 111, 255, 0.12);
}

.placement-section {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(15, 111, 255, 0.05);
    padding: 10px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.placement-scroll-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

@media (min-width: 993px) {
    .placement-scroll-layout {
        height: 610px;
        overflow: hidden;
        padding: 15px 20px;
    }
}

/* Sticky Left Panel */
.placement-sticky-panel {
    position: relative;
    top: 0;
    padding-bottom: 40px;
}

.placement-sticky-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-top: 10px;
    margin-bottom: 16px;
}

.placement-sticky-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Placement Left Panel Illustration Graphic */
.placement-illustration-container {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.placement-illustration {
    width: 100%;
    max-width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.98;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: illustrationFloat 6s ease-in-out infinite alternate;
}

@keyframes illustrationFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Vertical Progress Bar Wrapper */
.placement-progress-wrapper {
    display: flex;
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.progress-line-bg {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: rgba(15, 111, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #2563EB, #06B6D4);
    border-radius: 10px;
    transition: height 0.1s ease-out;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-dot {
    width: 9px;
    height: 9px;
    background: #cbd5e1;
    border-radius: 50%;
    position: absolute;
    left: -23px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0px rgba(37, 99, 235, 0.2);
}

.progress-step.active .step-dot {
    background: #2563EB;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.step-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: #475569;
    transition: color 0.4s ease;
}

.progress-step.active .step-text {
    color: #2563EB;
}

/* Sticky Enroll Button */
.enroll-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF !important;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.enroll-now-btn svg {
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.enroll-now-btn:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.enroll-now-btn:hover svg {
    transform: translateX(4px);
}

/* Right Side: Scroll Cards */
.placement-cards-scroll {
    display: flex;
    flex-direction: column;
}

.placement-scroll-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.35; /* default inactive */
    position: relative;
    overflow: hidden;
}

.placement-scroll-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #06B6D4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.placement-scroll-card.active {
    opacity: 1;
    transform: scale(1.02) translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.95) 100%);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.05);
}

.placement-scroll-card.active::before {
    opacity: 1;
}

.card-step-badge {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.06);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
}

.placement-scroll-card.active .card-step-badge {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-box svg {
    width: 22px;
    height: 22px;
}

.placement-scroll-card.active .card-icon-box {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.placement-scroll-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

.placement-scroll-card.active h3 {
    background: linear-gradient(135deg, #1e293b 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.placement-scroll-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-checklist li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.card-checklist li strong {
    font-weight: 700;
    color: #0f172a;
}

.check-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.placement-scroll-card.active .check-icon-circle {
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.2);
    transform: scale(1.1);
}

/* Placement CTA Footer Section */
.placement-cta-footer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 50px;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(15, 111, 255, 0.04);
}

.placement-cta-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 15px;
}

.placement-cta-info p {
    font-size: 0.95rem;
    color: #5d6b82;
    line-height: 1.6;
    margin: 0;
}

.placement-cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pcta-stat-item {
    text-align: center;
}

.pcta-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563EB;
    display: block;
    margin-bottom: 5px;
}

.pcta-stat-item p {
    font-size: 0.78rem;
    color: #5d6b82;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .placement-scroll-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .placement-sticky-panel {
        position: relative;
        top: 0;
    }
    
    .placement-progress-wrapper {
        display: none; /* Hide progress bar on mobile/tablet layout */
    }
    
    .placement-scroll-card {
        opacity: 1 !important; /* Keep fully visible */
        margin-bottom: 25px;
    }
    
    .placement-cta-footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .placement-cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 6. Testimonials Section */
.testimonials-section {
    background: var(--dark-bg);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    position: relative;
    height: 480px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FDFEFE 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 24px;
    padding: 38px 40px 32px;
    width: 410px;
    max-width: 92%;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.6s ease, 
                opacity 0.6s ease,
                box-shadow 0.6s ease,
                border-color 0.6s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.02);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    cursor: pointer;
    overflow: hidden;
}

/* Subtle corner accent dot decoration */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #06B6D4);
    opacity: 0.7;
}

/* Coverflow Active (Center) Card */
.testimonial-card.active {
    transform: translate3d(0, 0, 100px) scale(1.15);
    filter: none;
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08),
        0 15px 35px rgba(37, 99, 235, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
}

/* Very light radial haze behind the active card */
.testimonial-card.active::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 36px;
    z-index: -1;
    background: radial-gradient(
        ellipse 80% 60% at 50% 55%,
        rgba(37, 99, 235, 0.07) 0%,
        transparent 100%
    );
    pointer-events: none;
    transition: opacity 0.6s ease;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.02); }
}

/* Coverflow Left Card */
.testimonial-card.left {
    transform: translate3d(-240px, 0, -60px) scale(0.88) rotateY(25deg);
    filter: blur(1px) grayscale(20%);
    opacity: 0.5;
    z-index: 5;
}

/* Coverflow Right Card */
.testimonial-card.right {
    transform: translate3d(240px, 0, -60px) scale(0.88) rotateY(-25deg);
    filter: blur(1px) grayscale(20%);
    opacity: 0.5;
    z-index: 5;
}

/* Floating Animation delays for active card only */
.testimonial-card.active {
    animation: floatCard 5s ease-in-out infinite;
}

.testimonial-card:hover {
    animation-play-state: paused !important;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 28px;
    color: rgba(37, 99, 235, 0.06);
    font-size: 6.5rem;
    line-height: 1;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.rating {
    color: #FFB800;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.15));
}

.testimonial-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Divider before user profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.06);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.user-details h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.user-details p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Company placement badge — premium pill */
.testimonial-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 7px 15px;
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.08);
    width: fit-content;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.02);
    transition: all 0.3s ease;
}

.testimonial-company:hover {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.15);
}

.company-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.company-icon path,
.company-icon rect {
    stroke: #2563EB;
}

.company-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.company-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1D4ED8;
}

/* 7. FAQ Section */
/* 7. FAQ Section */
.faq-section {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

@keyframes meshGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Soft Radial Lights */
.faq-section .creative-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.faq-section .creative-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}

.faq-section .blob-primary {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 70%);
    bottom: -10%;
    right: 10%;
    animation: driftLightPrimary 20s ease-in-out infinite alternate;
}

.faq-section .blob-secondary {
    background: radial-gradient(circle, rgba(99, 155, 255, 0.32) 0%, transparent 70%);
    top: -10%;
    left: 5%;
    animation: driftLightSecondary 24s ease-in-out infinite alternate;
}

@keyframes driftLightPrimary {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.15); }
}

@keyframes driftLightSecondary {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(100px, 80px) scale(0.9); }
}

/* Background Floating Particles */
.faq-section .particle {
    position: absolute;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.faq-section .particle.p1 { top: 18%; left: 12%; width: 8px; height: 8px; animation: floatParticle 9s ease-in-out infinite; }
.faq-section .particle.p2 { top: 72%; left: 22%; width: 14px; height: 14px; animation: floatParticle 14s ease-in-out infinite 2.5s; background: rgba(99, 155, 255, 0.15); }
.faq-section .particle.p3 { top: 32%; right: 18%; width: 6px; height: 6px; animation: floatParticle 11s ease-in-out infinite 1s; }
.faq-section .particle.p4 { top: 78%; right: 12%; width: 10px; height: 10px; animation: floatParticle 10s ease-in-out infinite 3.5s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.35; }
    50% { transform: translateY(-40px) translateX(20px) scale(1.25); opacity: 0.85; }
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 3;
}

.faq-item {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                backdrop-filter 0.45s ease,
                border-color 0.45s ease,
                box-shadow 0.45s ease,
                background 0.45s ease;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
}

/* Floating Glass Cards - Hover & Active states */
.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 16px 40px 0 rgba(37, 99, 235, 0.12),
                0 4px 12px 0 rgba(37, 99, 235, 0.03);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    user-select: none;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #1d4ed8;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    color: #2563EB;
    font-size: 1.3rem;
    display: inline-block;
}

.faq-item:hover .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
    padding: 0 32px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 36px 0 rgba(37, 99, 235, 0.08);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 32px 28px;
    transition: max-height 0.6s ease, padding 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active:hover .faq-icon {
    transform: rotate(135deg);
}

/* 8. Lead Generation CTA Section */
.lead-section {
    background: var(--dark-bg);
    position: relative;
    padding-bottom: 20px;
}

.lead-container {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--dark-bg) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.lead-info h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.3;
}

.lead-info p {
    font-size: 0.95rem;
    color: #8f9cae;
    line-height: 1.6;
    margin-bottom: 24px;
}

.lead-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-emoji {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    flex-shrink: 0;
}

.bullet-text {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.lead-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.lead-trust-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lead-trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.lead-trust-stars {
    font-size: 0.75rem;
    color: #F59E0B;
    margin-bottom: 2px;
}

.lead-trust-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.2;
}

.lead-trust-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 2px;
}

.lead-form-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 24px;
    padding: 40px;
    /* Soft blue glow + subtle shadow */
    box-shadow: 0 25px 55px rgba(37, 99, 235, 0.08), 
                0 0 30px rgba(37, 99, 235, 0.04), 
                0 4px 16px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #8f9cae;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.form-select option {
    background: #FFFFFF;
    color: var(--text-main);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -150%; }
    25%, 100% { left: 150%; }
}

.btn-arrow {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE OVERRIDES FOR NEW SECTIONS
   ========================================== */
@media (max-width: 1200px) {
    .lead-container {
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-journey-container {
        padding: 20px 10px;
        height: auto !important;
    }
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .placement-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lead-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .why-journey-container {
        padding: 10px 0;
        height: auto !important;
    }
    .journey-svg-wrapper {
        display: none !important;
    }
    .journey-row {
        flex-direction: column !important;
        margin-bottom: 25px !important;
        gap: 15px !important;
        height: auto !important;
    }
    .journey-empty-space {
        display: none !important;
    }
    .journey-row.left-aligned .journey-card-wrapper,
    .journey-row.right-aligned .journey-card-wrapper {
        padding: 0 !important;
        justify-content: center !important;
    }
    .journey-card {
        max-width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    }
    .journey-card.active {
        border-color: rgba(0, 0, 0, 0.04) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03) !important;
    }
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 20px;
        perspective: none;
    }
    .testimonial-card {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
        cursor: default;
    }
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .lead-form-wrapper {
        padding: 25px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .project-card {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .project-img {
        position: relative;
        width: 100% !important;
        height: 220px !important;
        transform: none !important;
    }
    .project-info {
        position: relative;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 24px !important;
        left: auto !important;
        right: auto !important;
    }
}