
:root {
    --premium-blue: #0A2540;
    --premium-accent: #635BFF;
    --premium-orange: #FF6B6B;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --surface-bg: #FFFFFF;
    --surface-alt: #F6F9FC;
}
/* Root Variables */
:root {
    --primary-blue: #063177;
    /* Darker blue */
    --primary-blue-dark: #042050;
    --primary-blue-light: #e5efff;
    --accent-orange: #F59E0B;
    --accent-orange-dark: #d97706;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --dark-text: #1F2937;
    --secondary-text: #6B7280;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --dark-bg: #0a1628;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--surface-bg);
    
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Layout Architecture - The hero container with rounded corners */
.page-wrapper {
    margin: 0;
    padding-top: 0;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--white);
    min-height: 100vh;
    position: relative;
}

.modern-hero {
    padding-top: 80px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--accent-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ================================================
   Header - Dynamic Island Style (Supaste Reference)
   Flush to top, bottom-only radius, inverted swoops
   ================================================ */

@keyframes navbarLoad {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Outer wrapper: full-width, fixed, centers the navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
    /* Let clicks pass through to hero behind */
}

/* The visible black bar — the Dynamic Island */
.header-container {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 10px 24px;
    gap: 30px;
    border-radius: 0 0 18px 18px;
    position: relative;
    pointer-events: auto;

    /* Smooth transitions for expand/collapse (Apple Spring Physics) */
    transition: all 0.6s cubic-bezier(0.32, 1.28, 0.44, 0.98);
    will-change: transform, border-radius, padding, width;

    /* Entrance animation */
    opacity: 0;
    transform: translateY(-100%);
    animation: navbarLoad 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

/* Inverted concave swoops — real SVG elements for pixel-perfect curves */
.nav-swoop {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}

.nav-swoop-left {
    left: -20px;
}

.nav-swoop-right {
    right: -20px;
}

/* Inverted concave swoops to attach navbar smoothly to top edge */
.header-container::before,
.header-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    pointer-events: none;
    display: block;
    z-index: -1;
}

.header-container::before {
    left: -24px;
    background: radial-gradient(circle at 0 100%, transparent 24px, #000000 24.5px);
}

.header-container::after {
    right: -24px;
    background: radial-gradient(circle at 100% 100%, transparent 24px, #000000 24.5px);
}

.nav-menu {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 800px;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.logo-text {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.3px;
    display: block;
    white-space: nowrap;
}

.nav-menu ul {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    display: inline-block;
    color: #a1a1aa;
    font-weight: 400;
    font-size: 15px;
    padding: 0;
    border-radius: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    background: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    background: none;
    transform: none;
}

.header-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* CTA button — white rounded button */
.header-cta .btn-primary {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.header-cta .btn-primary:hover {
    background-color: #f4f4f5 !important;
    color: #000000 !important;
    transform: none;
}

/* ================================================
   MOBILE MENU - Expanding Dynamic Island
   ================================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1001;
    padding: 0;
    transition: border-color 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease;
    display: block;
}

/* Hamburger → X morph */
.header.mobile-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header.mobile-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header.mobile-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu panel — always rendered, hidden via max-height for smooth transition */
.mobile-menu-panel {
    display: none;
    flex-direction: column;
    padding: 0 16px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* Use a smoother, less bouncy transition for the mobile panel to prevent jerkiness */
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        padding 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Background overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 999;
    transition: background 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.3);
}

/* Mobile nav links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(12px);
}

.mobile-nav-links a {
    display: block;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s ease;
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

.mobile-nav-links a:hover {
    color: #ffffff;
}

/* Mobile CTA */
.mobile-cta {
    margin-top: 24px;
    opacity: 0;
    transform: translateY(16px);
}

/* Mobile CTA — white OUTLINE button matching Supaste Download style */
.mobile-apply-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-apply-btn:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* When mobile menu is open — the Dynamic Island expands DOWNWARD smoothly */
.header.mobile-open .header-container {
    animation: none;
    opacity: 1;
    transform: none;
    flex-wrap: wrap;
    border-radius: 0 0 28px 28px;
    background-color: #000000;
    height: auto;
}

/* Keep the SVG swoops VISIBLE when expanded (like Supaste) */
.header.mobile-open .nav-swoop {
    display: block;
}

/* Smooth banner expansion — max-height transition */
.header.mobile-open .mobile-menu-panel {
    max-height: 600px;
    opacity: 1;
    padding: 8px 16px 20px 16px;
}

.header.mobile-open .header-cta .btn-primary {
    display: none !important;
}

/* Staggered reveal of menu items */
.header.mobile-open .mobile-nav-links li {
    animation: mobileItemReveal 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.header.mobile-open .mobile-nav-links li:nth-child(1) {
    animation-delay: 0.05s;
}

.header.mobile-open .mobile-nav-links li:nth-child(2) {
    animation-delay: 0.1s;
}

.header.mobile-open .mobile-nav-links li:nth-child(3) {
    animation-delay: 0.15s;
}

.header.mobile-open .mobile-nav-links li:nth-child(4) {
    animation-delay: 0.2s;
}

.header.mobile-open .mobile-nav-links li:nth-child(5) {
    animation-delay: 0.25s;
}

.header.mobile-open .mobile-nav-links li:nth-child(6) {
    animation-delay: 0.3s;
}

.header.mobile-open .mobile-cta {
    animation: mobileItemReveal 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.35s forwards;
}

@keyframes mobileItemReveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   DYNAMIC ISLAND MAGIC FEATURES
   ================================================ */

/* Hover Glow Tracking */
.island-glow {
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 250px;
    height: 80px;
    background: radial-gradient(circle, rgba(100, 150, 255, 0.35) 0%, rgba(100, 150, 255, 0) 70%);
    transform: translate(-50%, -50%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.header:hover .island-glow {
    opacity: 1;
}

/* Scroll Morphing (Pill mode) */
.header.scrolled {
    /* Push slightly down from top when scrolling */
    padding-top: 16px;
    transition: padding-top 0.6s cubic-bezier(0.32, 1.28, 0.44, 0.98);
}

.header.scrolled .header-container {
    width: auto;
    margin: 0 auto;
    border-radius: 40px; /* Full pill shape */
    padding: 8px 16px 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.55s cubic-bezier(0.32, 1.28, 0.44, 0.98);
}

.header.scrolled .nav-menu {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    padding: 0;
}

.header.scrolled .header-cta .btn-primary {
    display: none !important;
}

.header.scrolled .header-container::before,
.header.scrolled .header-container::after {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Hide logo text on scroll to make the pill super compact and clean */
.header.scrolled .logo-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Only apply hover-to-expand pill on devices with a real mouse (desktops). 
   This prevents touch events on mobile from triggering the hover state and breaking the layout. */
@media (hover: hover) and (pointer: fine) {
    .header.scrolled:hover .header-container {
        border-radius: 18px; /* Expand back slightly */
    }

    .header.scrolled:hover .nav-menu {
        max-width: 800px;
        opacity: 1;
        padding: 0 12px;
    }

    .header.scrolled:hover .header-cta .btn-primary {
        display: flex !important;
    }
}

/* Progress Ring */
.island-progress-ring {
    display: none; /* Hide when not scrolled */
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header.scrolled .island-progress-ring {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2.5;
}

.ring-fill {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-dasharray: 63; /* approx 2 * PI * 10 */
    stroke-dashoffset: 63;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.1s linear;
}

/* Notification Popout */
.island-notification {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    will-change: max-width, opacity, padding;
    transition: max-width 0.5s cubic-bezier(0.32, 1.28, 0.44, 0.98),
                opacity 0.35s ease,
                padding 0.4s cubic-bezier(0.32, 1.28, 0.44, 0.98);
}

.header.show-notification .island-notification {
    max-width: 250px;
    opacity: 1;
    padding: 0 16px;
}

.header.show-notification .nav-menu {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
}

.header.show-notification .header-cta .btn-primary {
    display: none !important;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-panel {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hide Apply Now button on mobile so hamburger stays on far right */
    .header-cta .btn-primary {
        display: none !important;
    }

    /* On mobile, when scrolled: hide hamburger (only logo icon and progress ring remain) */
    .header.scrolled .mobile-menu-btn {
        display: none !important;
    }

    /* KEY FIX: Fixed width on mobile so open/closed states are SAME width */
    .header-container {
        width: calc(100vw - 60px);
        max-width: 380px;
        gap: 10px;
        padding: 10px 12px 10px 16px;
        justify-content: space-between;
        flex-wrap: wrap;
        /* Ensure hidden 100% width mobile menu panel wraps so it doesn't break spacing */
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 90px 0 0;
    min-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, var(--white) 40%, #fff8f0 100%);
    overflow: hidden;
    clip-path: inset(0);
}

/* Animated Background Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 91, 215, 0.4), transparent 70%);
    top: -100px;
    right: -100px;
    animation: blobMove1 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: blobMove2 10s ease-in-out infinite alternate;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 91, 215, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    animation: blobMove3 14s ease-in-out infinite alternate;
}

@keyframes blobMove1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-60px, 80px) scale(1.15);
    }
}

@keyframes blobMove2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(70px, -50px) scale(1.2);
    }
}

@keyframes blobMove3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, -60px) scale(0.9);
    }
}

/* Decorative Dot Grid */
.dot-grid {
    position: absolute;
    top: 120px;
    right: 60px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(13, 91, 215, 0.12) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    z-index: 0;
    opacity: 0.6;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(13, 91, 215, 0.08);
    color: var(--primary-blue);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 91, 215, 0.15);
    animation: fadeInUp 0.5s ease forwards;
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-inner {
    display: flex;
    width: 300%;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-slide {
    width: 33.3333%;
    flex-shrink: 0;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Animations */
.animate-float {
    animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Slider Dots with Progress */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 36px;
    height: 5px;
    background-color: rgba(13, 91, 215, 0.15);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.dot-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-blue);
    border-radius: 4px;
    transition: none;
}

.dot.active .dot-progress {
    animation: dotFill 3.9s linear forwards;
}

@keyframes dotFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.15;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight-text {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-orange), rgba(245, 158, 11, 0.3));
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions .btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}

.btn-outline-hero {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: var(--white);
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    overflow: visible;
}

.image-wrapper {
    position: relative;
    display: block;
    background: transparent;
    padding: 0;
}

.image-wrapper img {
    display: block;
    width: 130%;
    max-width: 130%;
    margin-left: -15%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 80%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 80%, transparent 100%);
    mask-composite: intersect;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    color: var(--secondary-text);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.badge-icon {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: block;
}

.floating-badge .text-primary {
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.badge-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -40px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Stats Strip */
.hero-stats {
    width: 100%;
    padding: 30px 0;
    margin-top: 20px;
    background: rgba(6, 49, 119, 0.04);
    border-top: 1px solid rgba(13, 91, 215, 0.08);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stat-number i {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 4px;
}

/* Slide Content Animation */
.slide-content .hero-badge,
.slide-content .hero-title,
.slide-content .hero-subtitle,
.slide-content .hero-actions {
    opacity: 0;
    transform: translateY(25px);
    animation: slideContentIn 0.6s ease forwards;
}

.slide-content .hero-badge {
    animation-delay: 0s;
}

.slide-content .hero-title {
    animation-delay: 0.15s;
}

.slide-content .hero-subtitle {
    animation-delay: 0.3s;
}

.slide-content .hero-actions {
    animation-delay: 0.45s;
}

@keyframes slideContentIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.usp-icon {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
    background-color: rgba(245, 158, 11, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Trust Section — Dark Premium */
.trust-section {
    padding: 120px 0;
    background: linear-gradient(160deg, #030b1a, #071a3e, #0a1e4a);
    position: relative;
    overflow: hidden;
}

.trust-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.trust-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.trust-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(13, 91, 215, 0.25);
    top: -80px;
    left: -100px;
    animation: blobMove2 12s ease-in-out infinite alternate;
}

.trust-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(245, 158, 11, 0.15);
    bottom: -80px;
    right: -80px;
    animation: blobMove1 14s ease-in-out infinite alternate;
}

.trust-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-tag-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.section-tag-dark i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.3);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.3);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.trust-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-glow {
    background: linear-gradient(135deg, #60a5fa, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* Glass Cards */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@keyframes ambientGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.08);
    }

    50% {
        box-shadow: 0 10px 30px rgba(13, 91, 215, 0.15);
        border-color: rgba(13, 91, 215, 0.3);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    animation: ambientGlow 6s ease-in-out infinite;
}

/* Add staggered delays to ambient glow */
.glass-card:nth-child(1) {
    animation-delay: 0s;
}

.glass-card:nth-child(2) {
    animation-delay: 1.5s;
}

.glass-card:nth-child(3) {
    animation-delay: 3s;
}

.glass-card:nth-child(4) {
    animation-delay: 4.5s;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(13, 91, 215, 0.08);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Animated Numbers */
.glass-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.num-suffix {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Icon */
.glass-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    background: rgba(13, 91, 215, 0.15);
    color: #60a5fa;
    transition: transform 0.3s ease;
}

.glass-card:hover .glass-card-icon {
    transform: scale(1.12);
}

.glass-card-icon.orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

.glass-card-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.glass-card-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.glass-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.glass-card-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
    margin: 0 auto;
    opacity: 0.5;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.glass-card:hover .glass-card-line {
    width: 60px;
    opacity: 1;
}

/* Trust CTA */
.trust-cta {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.trust-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 55px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-cta-text h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-cta-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
}

.btn-cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange), #e8860b);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.btn-cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.5);
}

/* Services — Journey Timeline */
.services-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.svc-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(13, 91, 215, 0.06);
    border: 1px solid rgba(13, 91, 215, 0.12);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-tag i {
    color: var(--accent-orange);
}

.svc-header h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-header p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Services — Interactive Split Panel */
.svc-split {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 180px;
    align-items: stretch;
    min-height: 440px;
    position: relative;
}

/* Left Tabs */
.svc-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(6, 49, 119, 0.06);
    border: 1px solid rgba(13, 91, 215, 0.05);
}

.svc-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: none;
    background: transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    text-align: left;
    overflow: hidden;
}

.svc-tab:hover {
    background: rgba(13, 91, 215, 0.04);
}

.svc-tab.active {
    background: rgba(13, 91, 215, 0.06);
}

/* Progress bar on active tab */
.svc-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 0 0 14px 14px;
    transition: width 0s linear;
}

.svc-tab.active::after {
    width: 100%;
    transition: width 5s linear;
}

.svc-tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: var(--white);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.svc-tab.active .svc-tab-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.svc-tab-icon.blue {
    background: linear-gradient(135deg, #0D5BD7, #60a5fa);
}

.svc-tab-icon.orange {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.svc-tab-icon.green {
    background: linear-gradient(135deg, #059669, #34d399);
}

.svc-tab-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.svc-tab-icon.teal {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.svc-tab-icon.rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.svc-tab-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.svc-tab.active .svc-tab-text {
    color: var(--dark-text);
    font-weight: 600;
    transform: translateX(2px);
}

.svc-tab-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.svc-tab.active .svc-tab-node {
    opacity: 1;
}

.svc-tab-node.blue {
    color: #0D5BD7;
}

.svc-tab-node.orange {
    color: #d97706;
}

.svc-tab-node.green {
    color: #059669;
}

.svc-tab-node.purple {
    color: #7c3aed;
}

.svc-tab-node.teal {
    color: #0891b2;
}

.svc-tab-node.rose {
    color: #e11d48;
}

/* SVG Connector Canvas */
.svc-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.svc-connector-path,
.svc-connector-path-solid {
    transition: d 0.4s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s ease;
}

.svc-connector-dot {
    transition: fill 0.4s ease;
}

/* Right Showcase */
.svc-showcase {
    position: relative;
    background: linear-gradient(145deg, #f0f5ff, #f8f4ff, #fdf8f0);
    border-radius: 24px;
    padding: 50px 45px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 49, 119, 0.08);
    border: 1px solid rgba(13, 91, 215, 0.06);
    display: flex;
    align-items: center;
}

.svc-showcase-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 91, 215, 0.07), transparent 70%);
    top: -80px;
    right: -80px;
    pointer-events: none;
    animation: blobMove1 10s ease-in-out infinite alternate;
}

/* Panels */
.svc-panel {
    display: none;
    width: 100%;
}

.svc-panel.active {
    display: block;
    animation: panelFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

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

.svc-panel-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 22px;
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconBounce {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.svc-panel-icon.blue {
    background: linear-gradient(135deg, #0D5BD7, #60a5fa);
}

.svc-panel-icon.orange {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.svc-panel-icon.green {
    background: linear-gradient(135deg, #059669, #34d399);
}

.svc-panel-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.svc-panel-icon.teal {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.svc-panel-icon.rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.svc-panel h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.svc-panel p {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 480px;
}

/* Tags */
.svc-panel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-panel-tags span {
    padding: 7px 18px;
    background: var(--white);
    border: 1px solid rgba(13, 91, 215, 0.1);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-blue);
    opacity: 0;
    animation: tagSlideIn 0.4s ease forwards;
}

.svc-panel-tags span:nth-child(1) {
    animation-delay: 0.15s;
}

.svc-panel-tags span:nth-child(2) {
    animation-delay: 0.25s;
}

.svc-panel-tags span:nth-child(3) {
    animation-delay: 0.35s;
}

@keyframes tagSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* Partners Section */
.partners-section {
    background: var(--white);
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.partners-header p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Section - JS Orbital Scanner */
.partners-orbital {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.partners-orbital::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(13, 91, 215, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.scanner-layout {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 80px;
    max-width: 1600px;
    padding: 0 20px;
    margin: 0 auto;
    align-items: center;
}

.scanner-info-panel {
    position: relative;
    z-index: 20;
}

.scanner-card {
    background: var(--white);
    padding: 35px 25px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 49, 119, 0.06);
    border: 1px solid rgba(13, 91, 215, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.scanner-logo-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 0 20px rgba(13, 91, 215, 0.2);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.scanner-card.active-outer .scanner-logo-box {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.scanner-logo-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.scanner-card h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.scanner-card p {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.5;
}

/* Removed badges CSS */

.orbital-container {
    --inner-r: 160px;
    --outer-r: 280px;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.scanner-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 120px;
    margin-top: -60px;
    transform-origin: left center;
    z-index: 5;
    pointer-events: none;
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 55%);
}

.beam-left {
    width: calc(var(--inner-r) + 40px);
    transform: rotate(180deg);
    background: linear-gradient(to right, rgba(13, 91, 215, 0.8) 0%, rgba(13, 91, 215, 0.1) 60%, transparent 100%);
}

.beam-right {
    width: calc(var(--outer-r) + 40px);
    transform: rotate(0deg);
    background: linear-gradient(to right, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0.1) 60%, transparent 100%);
}

.orbital-center {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(13, 91, 215, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.orbital-center img {
    width: 70px;
    object-fit: contain;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(13, 91, 215, 0.2);
    top: 50%;
    left: 50%;
    pointer-events: none;
}

.inner-ring {
    width: calc(var(--inner-r) * 2);
    height: calc(var(--inner-r) * 2);
    margin-top: calc(var(--inner-r) * -1);
    margin-left: calc(var(--inner-r) * -1);
}

.outer-ring {
    width: calc(var(--outer-r) * 2);
    height: calc(var(--outer-r) * 2);
    margin-top: calc(var(--outer-r) * -1);
    margin-left: calc(var(--outer-r) * -1);
}

.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: auto;
    /* transform applied via JS */
}

.orbit-node-fix {
    /* transform applied via JS */
}

.orbit-card {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    margin-left: -40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}

.orbit-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.orbit-card.in-beam-inner {
    transform: scale(1.6);
    z-index: 20;
    border-color: var(--primary-blue);
    box-shadow: 0 0 40px rgba(13, 91, 215, 0.8), 0 0 15px rgba(255, 255, 255, 1);
    background: var(--white);
}

.orbit-card.in-beam-outer {
    transform: scale(1.6);
    z-index: 20;
    border-color: var(--accent-orange);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.8), 0 0 15px rgba(255, 255, 255, 1);
    background: var(--white);
}

/* Checklist */
.checklist-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.mistakes-list {
    margin-top: 30px;
}

.mistakes-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.mistakes-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 2px;
    color: #ef4444;
    /* red for mistakes */
    font-weight: bold;
}

.mistakes-list li strong {
    color: var(--dark-text);
    display: block;
    margin-bottom: 5px;
}

.mistakes-list li {
    color: var(--secondary-text);
}

.doc-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.doc-box h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.doc-box p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.doc-box .highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    font-weight: 500;
    opacity: 1;
}

/* Universities */
.university-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.uni-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.uni-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.uni-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.uni-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.uni-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.uni-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.uni-location {
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.uni-location::before {
    content: '📍';
}

.uni-desc {
    color: var(--secondary-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.uni-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.uni-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.uni-features li:last-child {
    border-bottom: none;
}

.uni-features strong {
    color: var(--dark-text);
}

.view-details-btn {
    width: 100%;
    margin-top: auto;
}

.other-destinations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
}

.destination-group h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.destination-group p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question.active {
    color: var(--primary-blue);
    border-bottom: 1px solid var(--border-color);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: var(--transition);
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--secondary-text);
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
}

.footer-brand p {
    color: #9ca3af;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 15px;
}

.footer-contact strong {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

.footer-tagline {
    margin-top: 10px;
    color: var(--accent-orange);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-fade {
    transform: scale(0.95);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay for staggered cards */
.delay-1 {
    transition-delay: 0.1s;
}

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

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Admission Process Section - Sticky Stacking Layout */
.admission-process {
    background: var(--white);
    position: relative;
    z-index: 5;
    padding-bottom: 150px;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.process-cards {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
}

.process-card {
    position: sticky;
    top: calc(80px + (var(--card-index) * 75px));
    background: var(--white);
    border: 1px solid rgba(13, 91, 215, 0.15);
    border-radius: 24px;
    padding: 25px 40px 40px;
    box-shadow: 0 -15px 30px rgba(13, 91, 215, 0.05);
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    min-width: 45px;
    margin-top: 2px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    margin-top: 8px;
}

.step-content p {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
}

.process-visual {
    position: sticky;
    top: 80px;
    height: calc(100vh - 120px);
    min-height: 650px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-sticky-box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.visual-sticky-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
    mix-blend-mode: multiply;
}

.visual-overlay {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-blob {
        display: none;
    }

    .dot-grid {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .trust-header h2 {
        font-size: 2.4rem;
    }

    .svc-split {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    .svc-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        border-radius: 16px;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .svc-tabs::-webkit-scrollbar {
        display: none;
    }

    .svc-tab {
        flex: 0 0 auto;
        width: 220px;
        flex-direction: row;
        scroll-snap-align: start;
    }

    .svc-showcase {
        padding: 35px 25px;
    }

    .svc-showcase-blob {
        width: 200px;
        height: 200px;
        top: -40px;
        right: -40px;
    }

    .university-cards {
        grid-template-columns: 1fr;
    }

    .other-destinations {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .scanner-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scanner-info-panel.left-panel {
        grid-row: 1;
    }

    .orbital-container {
        grid-row: 2;
        margin-top: 0;
    }

    .scanner-info-panel.right-panel {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta .btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-usps {
        grid-template-columns: 1fr;
    }

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

    .checklist-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .other-destinations {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orbital-container {
        --inner-r: 120px;
        --outer-r: 220px;
        height: 500px;
    }

    .orbit-card {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }

    .orbit-card img {
        width: 32px;
        height: 32px;
    }

    .orbital-center {
        width: 90px;
        height: 90px;
    }

    .orbital-center img {
        width: 55px;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-visual {
        position: relative;
        top: 0;
        height: 50vh;
        min-height: 400px;
        margin-top: 20px;
        display: flex;
    }

    .transparency-split {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .trust-cards {
        grid-template-columns: 1fr;
    }

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

    .orbital-container {
        --inner-r: 90px;
        --outer-r: 160px;
        height: 380px;
    }

    .orbit-card {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        margin-left: -20px;
    }

    .orbit-card img {
        width: 24px;
        height: 24px;
    }

    .orbital-center {
        width: 70px;
        height: 70px;
    }

    .orbital-center img {
        width: 40px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* =========================================================================
   CREATIVE VISION & MISSION (BENTO GLASSMORPHISM)
   ========================================================================= */
.creative-vm-section {
    position: relative;
    padding: 120px 0;
    background-color: #061833;
    overflow: hidden;
    color: var(--white);
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Ambient Blobs */
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: drift 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.blob-cyan {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #38bdf8;
}

.blob-blue {
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: #1d4ed8;
    animation-delay: -5s;
}

.blob-white {
    top: 30%;
    left: 40%;
    width: 500px;
    height: 500px;
    background: #ffffff;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, 15%) scale(0.9);
    }
}

/* Header */
.creative-header {
    margin-bottom: 60px;
}

.cyber-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.shimmer-text {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #60a5fa, #ffffff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    line-height: 1.2;
}

.shimmer-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: #cbd5e1;
    font-size: 1.1rem;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 24px;
}

.bento-card {
    position: relative;
    border-radius: 30px;
    padding: 30px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    background: rgba(255, 255, 255, 0.02);
}

.bento-card:hover {
    animation-play-state: paused !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Light sweep effect on cards */
.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: lightSweep 6s infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.bento-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Icon Boxes */
.bento-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5) inset;
    transition: all 0.4s ease;
}

.bento-card:hover .bento-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.white-glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.cyan-glow {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4), inset 0 0 20px rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
    border-color: rgba(56, 189, 248, 0.3);
}

.blue-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

/* Typography inside cards */
.bento-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Specific Cards */
.bento-vision {
    grid-column: span 7;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
    animation: floatCard 8s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.watermark-icon {
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 350px;
    color: rgba(255, 255, 255, 0.04);
    z-index: 1;
    transform: rotate(-15deg);
    transition: transform 0.8s ease;
}

.bento-vision:hover .watermark-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(255, 255, 255, 0.08);
}

.vision-stats {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    gap: 30px;
}

.v-stat {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Highlight "0 Hidden Fees" */
.highlight-stat {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    animation: pulseBorder 2s infinite alternate;
}

.highlight-stat span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(56, 189, 248, 0.8);
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
        border-color: rgba(56, 189, 248, 0.3);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
        border-color: rgba(56, 189, 248, 0.8);
        transform: scale(1.05);
    }
}

.bento-mission {
    grid-column: span 5;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.1));
}

.bento-mission.m1 {
    animation: floatCard 7s ease-in-out infinite 1s;
}

.bento-mission.m1::after {
    animation-delay: 2s;
}

.bento-mission.m2 {
    animation: floatCard 9s ease-in-out infinite 2s;
}

.bento-mission.m2::after {
    animation-delay: 4s;
}

.m-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.m-top .bento-icon-box {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.bento-mission h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-vision {
        grid-column: span 12;
    }

    .bento-mission {
        grid-column: span 6;
    }

    .shimmer-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .bento-mission {
        grid-column: span 12;
    }

    .shimmer-text {
        font-size: 2.5rem;
    }

    .vision-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   Transparency & USP Page Styles
========================================= */
.fee-disclosure-section {
    background: var(--white);
    overflow: hidden;
}

.fee-split-layout {
    display: flex;
    min-height: 80vh;
}

.fee-left {
    flex: 1;
    padding: 100px 5% 100px 10%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fee-content h2 {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    color: #021124;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.fee-content p {
    font-size: 1.15rem;
    color: var(--secondary-text);
    margin-bottom: 50px;
    max-width: 550px;
    line-height: 1.7;
}

/* Zero Hidden Card - Grid effect */
.zero-hidden-card {
    background: #3482d8;
    color: white;
    padding: 35px 50px;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    box-shadow: 0 20px 40px rgba(13, 91, 215, 0.2);
    transform: rotate(-4deg);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    border: 2px solid #1c62ad;
}

.zero-text {
    font-size: 4.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
}

.zero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Right Side Curve & Content */
.fee-right {
    flex: 1;
    background: #020b18;
    /* Very dark navy */
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10% 100px 100px;
    margin-left: -150px;
    /* Pulls it over the white section */
    border-top-left-radius: 50% 100%;
    border-bottom-left-radius: 50% 100%;
}

.fee-visuals {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.five-categories-card {
    background: #0a4cac;
    color: white;
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: -120px;
    right: -40px;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.five-num {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1;
}

.five-text {
    font-size: 1.05rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Spreadsheet Graphic */
.receipt-graphic {
    background: #adcbea;
    padding: 20px;
    border-radius: 5px;
    transform: rotate(8deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #7eaadb;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(13, 91, 215, 0.2);
    font-family: monospace;
    font-size: 1.15rem;
    color: #021124;
    transform: rotate(180deg);
    /* Text flipped upside down like the screenshot! */
}

.receipt-row.header {
    background: #020b18;
    color: white;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    margin: -20px -20px 10px -20px;
    padding: 20px 25px;
    font-family: 'Inter', sans-serif;
    transform: none;
    /* Header not flipped */
}

.receipt-row:last-child {
    border-bottom: none;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    transition: width 0.5s ease;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover::after {
    width: 100%;
}

.pillar-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.05);
    color: #38bdf8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.pillar-card h3 {
    margin-bottom: 18px;
    font-size: 1.45rem;
    color: var(--white);
    font-weight: 700;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.disclaimer-box {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    border-left: 6px solid var(--accent-orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.disclaimer-header i {
    font-size: 2.2rem;
    color: var(--accent-orange);
}

.disclaimer-header h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
}

.disclaimer-box p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.disclaimer-box h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-text);
}

@media (max-width: 1024px) {
    .fee-split-layout {
        flex-direction: column;
    }

    .fee-right {
        margin-left: 0;
        border-radius: 0;
        padding: 100px 5%;
    }

    .fee-content h2 {
        font-size: 3rem;
    }

    .five-categories-card {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 40px;
    }

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

    .receipt-row {
        transform: none;
    }

    /* Reset flip on mobile to be readable */

    /* New portal page mobile rules */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* --- Advanced Portal Timeline Animation --- */
.adv-timeline-step {
    position: relative;
    margin-bottom: 25px;
    opacity: 0.3;
    /* Starts dimmed instead of hidden */
    transform: translateX(-15px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-timeline-step.revealed {
    opacity: 1;
    transform: translateX(0);
}

.adv-step-dot {
    position: absolute;
    left: -29px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #0f172a;
    transition: all 0.5s ease;
    z-index: 2;
}

.adv-step-dot.done {
    background: #22c55e;
    box-shadow: 0 0 0 2px #22c55e;
}

.adv-step-dot.active {
    background: var(--accent-orange);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    border-width: 3px;
    width: 18px;
    height: 18px;
    left: -31px;
    top: 1px;
}

.adv-timeline-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 4px;
    transition: color 0.5s ease;
}

.adv-timeline-title.done {
    color: #22c55e;
}

.adv-timeline-title.active {
    color: white;
}

.adv-check-icon {
    opacity: 0;
    transform: scale(0);
    margin-left: 6px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.adv-check-icon.show {
    opacity: 1;
    transform: scale(1);
}

.adv-timeline-line {
    position: absolute;
    left: 7px;
    top: 8px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    height: 100%;
}

.adv-timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #22c55e;
    height: 0;
    /* Animated via JS */
    transition: height 0.5s linear;
}

/* Destinations Section */
.dest-section {
    background: #1b3871;
    /* Deep blue similar to screenshot */
    border-radius: 40px;
    margin: 40px 20px;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    color: white;
}

.dest-container {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 0 20px;
    height: 700px;
    grid-template-rows: 100%;
}

.dest-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: max-content;
    will-change: transform;
}

.dest-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 280px;
    flex-shrink: 0;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    text-align: center;
    pointer-events: none;
}

.dest-overlay h4 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.dest-center {
    text-align: center;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.dest-center h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.dest-line {
    width: 120px;
    height: 4px;
    background: #e14e3b;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.dest-center p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.dest-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.dest-btn:hover {
    background: white;
    color: #1b3871;
    transform: translateY(-2px);
}

.dest-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.dest-btn-primary {
    background: #e14e3b;
    border: 1px solid #e14e3b;
    color: white;
}

.dest-btn-primary:hover {
    background: #c93e2b;
    border-color: #c93e2b;
    color: white;
}

@media (max-width: 1024px) {
    .dest-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 60px;
        padding: 40px 20px;
        grid-template-rows: auto;
    }

    .dest-col {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
        transform: none !important;
        /* Disable parallax on mobile/tablet */
    }

    .dest-card {
        min-width: 280px;
        height: 250px;
    }
}

/* ==============================================================
   Detailed Destinations Page (destinations.html)
   ============================================================== */

/* Why Destinations Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.pillar-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(13, 91, 215, 0.15);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 91, 215, 0.3);
}

.pillar-card:hover .icon-wrapper {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(360deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Hero */
.dest-hero {
    position: relative;
    padding: 140px 0 90px;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    background: #ffffff;
}

.dest-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dest-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eef3f8;
    /* Matched exactly to the image background */
    z-index: 2;
}

.dest-hero-container {
    position: relative;
    z-index: 5;
}

.dest-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.dest-hero-content {
    color: white;
}

.dest-hero-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.dest-hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.dest-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.dest-hero .hero-badge {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dest-hero .btn-outline-hero {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
}

.dest-hero .btn-outline-hero:hover {
    background: white;
    color: var(--primary-blue);
}

.glass-card-premium {
    background: rgba(13, 25, 60, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card-light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(13, 91, 215, 0.08);
    color: var(--dark-text);
    padding: 50px;
    border-radius: 24px;
}

.text-white,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p {
    color: white !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

/* Explorer Section Background */
#explore {
    background: linear-gradient(170deg, #0a1628 0%, #0f2544 50%, #132e5a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#explore::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 91, 215, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

#explore .section-header h2 {
    color: white;
}

#explore .section-header p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

/* Country Selector Tabs — Card Style */
.dest-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 50px;
}

.dest-tab {
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.dest-tab i {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.dest-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-3px);
}

.dest-tab:hover i {
    opacity: 1;
}

.dest-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 91, 215, 0.5);
}

.dest-tab.active i {
    opacity: 1;
}

/* Panels */
.dest-panel {
    display: none;
    animation: panelSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-panel.active {
    display: block;
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.dest-panel-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.dest-panel-img {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.dest-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-panel-grid:hover .dest-panel-img img {
    transform: scale(1.08);
}

.dest-panel-content {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 600px;
}

.dest-panel-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dest-panel-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Facts List */
.dest-facts {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.dest-facts li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.dest-facts li:last-child {
    border-bottom: none;
}

.dest-facts li i {
    color: var(--accent-orange);
    font-size: 1rem;
    width: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

.dest-facts li strong {
    color: white;
}

/* Roadmap — Vertical Timeline */
.roadmap-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding-left: 60px;
}

/* Vertical Line */
.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), #3b82f6, rgba(13, 91, 215, 0.2));
    border-radius: 3px;
}

.roadmap-step {
    background: white;
    padding: 30px 35px;
    border-radius: 18px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.roadmap-step:hover {
    transform: translateX(8px);
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 15px 35px rgba(13, 91, 215, 0.12);
}

/* Timeline dot */
.roadmap-step::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 35px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(13, 91, 215, 0.15);
    z-index: 2;
}

/* Connector line from dot to card */
.roadmap-step::after {
    content: '';
    position: absolute;
    left: -26px;
    top: 42px;
    width: 26px;
    height: 2px;
    background: rgba(13, 91, 215, 0.2);
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(13, 91, 215, 0.25);
}

.roadmap-step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.roadmap-step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

    .dest-panel-img {
        min-height: 250px;
    }

    .dest-panel-content {
        padding: 30px 20px;
        max-height: none;
    }

    .dest-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Strip */
.dest-stats-strip {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    padding: 50px 0;
    position: relative;
    z-index: 10;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: inline;
    color: white;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Quick Stats in Panel */
.dest-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.quick-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.quick-stat i {
    color: #60a5fa;
    margin-right: 5px;
}

.quick-stat strong {
    color: white;
}

/* Highlight Tags */
.dest-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-tag {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.highlight-tag i {
    font-size: 0.75rem;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
    min-width: 700px;
}

.comparison-table thead th {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--dark-text);
}

.comparison-table tbody tr:hover {
    background: rgba(13, 91, 215, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight-cell {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 1.05rem;
}

.badge-approved {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: #059669;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Testimonials Grid */
.testimonial-grid-dest {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-dest {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.testimonial-card-dest:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .dest-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .dest-hero-content {
        padding: 40px 30px;
    }

    .dest-hero-content>div {
        justify-content: center;
    }

    .dest-hero-image-wrapper {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .dest-hero-image-wrapper:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .dest-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .dest-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .dest-quick-stats {
        flex-direction: column;
    }

    .roadmap-grid {
        padding-left: 45px;
    }

    .roadmap-grid::before {
        left: 18px;
    }

    .roadmap-step::before {
        left: -37px;
        width: 12px;
        height: 12px;
    }

    .roadmap-step::after {
        left: -25px;
        width: 21px;
    }

    .roadmap-step {
        padding: 22px 20px;
    }
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 91, 215, 0.08);
}

.contact-form input::placeholder {
    color: #94a3b8;
}


/* --- RESTORED PREMIUM COLLEGE LAYOUT --- */
/* --- Section Defaults --- */
.premium-section { padding: 120px 0; position: relative; }
.section-header-premium { text-align: center; margin-bottom: 70px; }
.section-header-premium h2 { font-size: 2.8rem; font-weight: 800; color: var(--premium-blue); font-family: 'Poppins', sans-serif; letter-spacing: -1px; margin-bottom: 20px;}
.section-header-premium p { font-size: 1.15rem; color: #425466; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* --- Pricing Card (Component 1) --- */
.pricing-card-wrapper { max-width: 900px; margin: 0 auto; background: #fff; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.04); overflow: hidden; border: 1px solid #E2E8F0; display: flex; flex-direction: column; transition: transform 0.4s; }
.pricing-card-wrapper:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.pricing-header { background: var(--premium-blue); padding: 40px; text-align: center; color: white; }
.pricing-header h3 { color: white; font-size: 2rem; font-family: 'Poppins', sans-serif; margin-bottom: 10px; }
.pricing-list { padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: #F8FAFC; border-radius: 16px; border: 1px solid #F1F5F9; transition: background 0.2s; }
.pricing-item:hover { background: #F1F5F9; }
.pricing-item-left { display: flex; align-items: center; gap: 15px; font-weight: 600; color: #334155; font-size: 1.1rem; }
.pricing-item-icon { width: 45px; height: 45px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--premium-accent); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.pricing-item-val { display: flex; flex-direction: column; align-items: flex-end; }
.pricing-usd { font-weight: 800; font-size: 1.25rem; color: var(--premium-blue); font-family: 'Poppins', sans-serif;}
.pricing-inr { font-size: 0.9rem; color: #64748B; font-weight: 500; }

.pricing-total { margin: 20px 40px 40px; background: linear-gradient(135deg, var(--premium-accent) 0%, #8884FF 100%); padding: 30px; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; color: white; box-shadow: 0 15px 30px rgba(99, 91, 255, 0.2); }
.pricing-total-label { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 12px;}
.pricing-total-val { text-align: right; }
.pricing-total-usd { font-size: 2.2rem; font-weight: 800; font-family: 'Poppins', sans-serif; line-height: 1; margin-bottom: 5px;}
.pricing-total-inr { font-size: 1.1rem; opacity: 0.9; }

/* --- Modern Accordion (Component 2) --- */
.premium-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.acc-item { background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.acc-item:hover { border-color: var(--premium-accent); box-shadow: 0 10px 20px rgba(99, 91, 255, 0.1); }
.acc-header { padding: 25px 30px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.acc-title { font-weight: 700; font-size: 1.15rem; color: var(--premium-blue); display: flex; align-items: center; gap: 15px; }
.acc-check { color: #10B981; font-size: 1.4rem; background: #ECFDF5; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.acc-icon { width: 30px; height: 30px; border-radius: 50%; background: #F1F5F9; display: flex; align-items: center; justify-content: center; color: #64748B; transition: transform 0.3s; }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.acc-inner { padding: 0 30px 25px 85px; color: #475569; line-height: 1.7; font-size: 1.05rem; }


        .acc-inner { padding: 0 30px 25px 85px; color: #475569; line-height: 1.7; font-size: 1.05rem; }
        .acc-item.active .acc-content { max-height: 400px; }
        .acc-item.active .acc-icon { transform: rotate(180deg); background: var(--premium-accent); color: white; }
        .acc-item.active { border-color: var(--premium-accent); box-shadow: 0 10px 20px rgba(99, 91, 255, 0.1); }

        /* --- 3D Eligibility Cards (Component 3) --- */
        .elig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
        .elig-card { background: #fff; padding: 40px 30px; border-radius: 24px; text-align: center; border: 1px solid #E2E8F0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
        .elig-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--premium-accent); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
        .elig-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); border-color: transparent; }
        .elig-card:hover::before { transform: scaleX(1); }
        .elig-icon-wrapper { width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
        .elig-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--premium-blue); margin-bottom: 15px; }
        .elig-card p { color: #64748B; line-height: 1.6; font-size: 1rem; }
        
        .ic-1 { background: rgba(99, 91, 255, 0.1); color: var(--premium-accent); }
        .ic-2 { background: rgba(16, 185, 129, 0.1); color: #10B981; }
        .ic-3 { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .ic-4 { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .ic-5 { background: rgba(14, 165, 233, 0.1); color: #0EA5E9; }

        /* --- Image Carousel (Component 4) --- */
        .carousel-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 30px; padding: 20px 10px 60px; -webkit-overflow-scrolling: touch; }
        .carousel-container::-webkit-scrollbar { height: 8px; }
        .carousel-container::-webkit-scrollbar-track { background: #F1F5F9; border-radius: 10px; }
        .carousel-container::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 10px; }
        .carousel-container::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
        
        .carousel-card { scroll-snap-align: center; flex: 0 0 calc(33.333% - 20px); min-width: 320px; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
        .carousel-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
        .carousel-img { height: 220px; background-color: #E2E8F0; position: relative; background-size: cover; background-position: center; }
        .carousel-icon-float { position: absolute; bottom: -25px; right: 30px; width: 55px; height: 55px; background: var(--premium-accent); color: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 10px 20px rgba(99, 91, 255, 0.3); border: 4px solid #fff; }
        .carousel-body { padding: 40px 30px 30px; display: flex; flex-direction: column; flex-grow: 1;}
        .carousel-body h3 { font-size: 1.35rem; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--premium-blue); margin-bottom: 12px; }
        .carousel-body p { color: #64748B; line-height: 1.7; font-size: 1.05rem; }
        
        /* Reveal Animations */
        .reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* Footer CTA */
.cta-section { background: var(--premium-blue); padding: 100px 0; text-align: center; color: white; }
.cta-section h2 { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; }
.btn-large { display: inline-block; padding: 18px 40px; background: var(--premium-accent); color: white; font-weight: 700; font-size: 1.1rem; border-radius: 8px; text-decoration: none; box-shadow: 0 10px 30px rgba(99, 91, 255, 0.4); transition: transform 0.3s; }
.btn-large:hover { transform: translateY(-3px); }

/* --- RESTORED HERO LAYOUT --- */
/* --- Hero Section --- */
.university-hero { position: relative; padding: 180px 0 140px; background-size: cover; background-position: center; color: var(--white); overflow: hidden; }
.university-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.6) 100%); z-index: 1; }

.university-hero .hero-content { z-index: 2; position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 900px; margin: 0 auto; padding: 0 20px;}
.university-hero .hero-location { font-size: 1.1rem; color: #00D4FF; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; animation: fadeInUp 0.8s ease-out both; }
.university-hero .hero-title { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; font-family: 'Poppins', sans-serif; animation: fadeInUp 0.8s ease-out 0.2s both; color: #fff;}
.university-hero .hero-desc { font-size: 1.3rem; line-height: 1.6; opacity: 0.9; max-width: 700px; animation: fadeInUp 0.8s ease-out 0.4s both; font-weight: 400; color: #E2E8F0;}

/* Glassmorphic Stats Grid */
.university-hero .hero-stats-glass { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 50px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.stat-glass { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 25px 35px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform 0.3s, background 0.3s; min-width: 180px;}
.stat-glass:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.3); }
.stat-glass i { font-size: 24px; color: #00D4FF; margin-bottom: 5px; }
.stat-glass-value { font-size: 1.4rem; font-weight: 700; color: #fff; font-family: 'Poppins', sans-serif; }
.stat-glass-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* Trust Badges (Floating) */
.trust-badges { display: flex; gap: 15px; margin-top: 40px; animation: fadeInUp 0.8s ease-out 0.8s both; }
.badge-glass { background: rgba(16, 185, 129, 0.15); backdrop-filter: blur(10px); border: 1px solid rgba(16, 185, 129, 0.3); color: #34D399; padding: 8px 16px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* Hero CTA */
.university-hero .hero-cta-main { margin-top: 40px; animation: fadeInUp 0.8s ease-out 0.7s both; }
.university-hero .btn-glow { background: var(--premium-accent); color: white; padding: 18px 45px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s; box-shadow: 0 10px 25px -5px rgba(99, 91, 255, 0.5); }
.university-hero .btn-glow:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px -5px rgba(99, 91, 255, 0.6); }


/* Hero Stats Strip */
.hero-stats {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item {
    text-align: center;
    border-right: 1px solid #E2E8F0;
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue-dark, #0d1b2a);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.stat-number i {
    color: var(--accent-color, #635BFF);
    font-size: 1.8rem;
}
.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* =========================================================================
   Global Mobile Enhancements (Android & iPhone optimization)
   ========================================================================= */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling universally */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Typography adjustments for smaller screens */
    h1, .hero-title, .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2 !important;
    }
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
    }
    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
    }
    p {
        font-size: 1rem !important;
    }

    /* Touch target accessibility (Apple/Google guidelines) */
    .btn, button, .nav-menu a, .svc-tab, .mobile-menu-btn, .mobile-apply-btn {
        min-height: 44px;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Dynamic Island & Navigation optimizations for mobile */
    .header-container {
        width: 90% !important;
        margin: 0 auto;
        padding: 8px 15px !important;
    }
    

    /* Improve section padding on mobile */
    .section-padding, .trust-section, .services-section, .dest-section, .partners-orbital {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Grid layout stacking overrides */
    .hero-split, .trust-cards, .services-grid, .partners-grid, .stats-grid, .checklist-wrapper, .dest-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Image containment */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    /* Further scaling for very small screens (iPhone SE, older Androids) */
    .header-container {
        width: 95% !important;
        padding: 8px 12px !important;
    }
    
    .stat-glass {
        min-width: 140px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
    }
}
