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

:root {
    --primary-blue: #2a86ff;
    --secondary-blue: #1e6bd8;
    --primary-gray: #383e45;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, #2a86ff 0%, #383e45 100%);
    --gradient-glass: linear-gradient(135deg, rgba(42, 134, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: white;
    overflow-x: hidden;
    background: #1A1A1A;
    min-height: 100vh;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-brand h2 {
    color: #2A86FF;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(42, 134, 255, 0.4);
}

.nav-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(42, 134, 255, 0.4)) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
}

.nav-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(42, 134, 255, 0.6));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(42, 134, 255, 0.6);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-auth {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle::before {
    display: none !important;
}

/* Buttons */
.btn-primary {
    background: rgba(42, 134, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(42, 134, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-primary:hover {
    background: rgba(42, 134, 255, 1) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(42, 134, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    z-index: -1;
}

.btn-outline:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    color: white;
    overflow: hidden;
    margin-top: 0; /* Removed negative margin to prevent gap */
    padding-top: 0; /* Removed padding-top to prevent gap */
    padding-bottom: 8rem;
    /* Ensure hero creates proper stacking context for fixed video */
    z-index: 1;
}

.hero-background {
    position: absolute !important;
    top: 0 !important; /* Changed from -10px to 0 to prevent gap */
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important; /* Changed from calc(100% + 10px) to 100% */
    background: transparent !important;
    overflow: hidden !important;
    z-index: -2 !important;
    /* Container for video and floating dots */
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

/* Gray overlay over video */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.2);
    z-index: 1;
    pointer-events: none;
}

/* No fallback background - video only */
.hero-background.video-failed {
    background: transparent;
}

@keyframes subtleShift {
    0%, 100% { background-position: 0% 0%, 0 0; }
    50% { background-position: 100% 100%, 25px 25px; }
}

/* Hero Video Background - Centered in hero section */
.hero-video,
.hero-video.extraClassAspect,
.hero-video.extraClassCrop,
video.hero-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
    z-index: -1 !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    /* Override any extension scaling */
    scale: none !important;
    -webkit-scale: none !important;
    scaleX: 1 !important;
    scaleY: 1 !important;
}

/* Mobile video scaling fixes */
@media (max-width: 768px) {
    .hero-video,
    .hero-video.extraClassAspect,
    .hero-video.extraClassCrop,
    video.hero-video {
        object-fit: contain !important;
        transform: translate(-50%, -50%) scale(0.8) !important;
        -webkit-transform: translate(-50%, -50%) scale(0.8) !important;
    }
}

@media (max-width: 480px) {
    .hero-video,
    .hero-video.extraClassAspect,
    .hero-video.extraClassCrop,
    video.hero-video {
        object-fit: contain !important;
        transform: translate(-50%, -50%) scale(0.7) !important;
        -webkit-transform: translate(-50%, -50%) scale(0.7) !important;
    }
}

/* Video Refresh Button */
.video-refresh-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(42, 134, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.video-refresh-btn:hover {
    opacity: 1;
    background: rgba(42, 134, 255, 1);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(42, 134, 255, 0.5);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="floatingDots" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%232A86FF" opacity="0.15"><animate attributeName="cy" values="30;25;35;30" dur="8s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.08;0.25;0.08" dur="3s" repeatCount="indefinite"/></circle><circle cx="90" cy="50" r="1.2" fill="white" opacity="0.1"><animate attributeName="cy" values="50;45;55;50" dur="6s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.1;0.25;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="130" cy="90" r="0.8" fill="white" opacity="0.06"><animate attributeName="cy" values="90;85;95;90" dur="10s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.06;0.15;0.06" dur="5s" repeatCount="indefinite"/></circle><circle cx="50" cy="110" r="1.1" fill="%232A86FF" opacity="0.12"><animate attributeName="cy" values="110;105;115;110" dur="7s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.09;0.22;0.09" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="120" cy="130" r="0.9" fill="white" opacity="0.07"><animate attributeName="cy" values="130;125;135;130" dur="9s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.07;0.18;0.07" dur="4.5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="150" height="150" fill="url(%23floatingDots)"/></svg>');
    animation: floatDotsReverse 20s linear infinite reverse;
}

/* Hero overlay removed to show video clearly */

.hero-background .floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatUp 12s infinite linear;
}

.hero-background .floating-dot:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
    width: 6px;
    height: 6px;
    background: rgba(42, 134, 255, 0.3);
    box-shadow: 0 0 10px rgba(42, 134, 255, 0.4);
}

.hero-background .floating-dot:nth-child(2) {
    left: 25%;
    animation-delay: -3s;
    animation-duration: 15s;
    width: 10px;
    height: 10px;
    background: rgba(42, 134, 255, 0.4);
}

.hero-background .floating-dot:nth-child(3) {
    left: 50%;
    animation-delay: -6s;
    animation-duration: 18s;
    width: 8px;
    height: 8px;
}

.hero-background .floating-dot:nth-child(4) {
    left: 75%;
    animation-delay: -9s;
    animation-duration: 20s;
    width: 12px;
    height: 12px;
    background: rgba(42, 134, 255, 0.5);
}

.hero-background .floating-dot:nth-child(5) {
    left: 90%;
    animation-delay: -12s;
    animation-duration: 14s;
    width: 7px;
    height: 7px;
    background: rgba(42, 134, 255, 0.4);
    box-shadow: 0 0 8px rgba(42, 134, 255, 0.3);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatDots {
    0% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(-10px, -15px) rotate(90deg);
    }
    50% { 
        transform: translate(5px, -25px) rotate(180deg);
    }
    75% { 
        transform: translate(-15px, -10px) rotate(270deg);
    }
    100% { 
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatDotsReverse {
    0% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(15px, 10px) rotate(-90deg);
    }
    50% { 
        transform: translate(-5px, 25px) rotate(-180deg);
    }
    75% { 
        transform: translate(10px, 15px) rotate(-270deg);
    }
    100% { 
        transform: translate(0, 0) rotate(-360deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 160px; /* Added a little more spacing */
    padding-bottom: 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 2rem auto; /* Reduced top margin for desktop */
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: rgba(42, 134, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(42, 134, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-primary:hover {
    background: rgba(42, 134, 255, 1) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 16px 40px rgba(42, 134, 255, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.3) !important;
}

.hero-buttons .btn-outline::before {
    display: none !important;
}

.hero-buttons .btn-primary::before {
    display: none !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 134, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(42, 134, 255, 0.3);
    box-shadow: 0 12px 40px rgba(42, 134, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 4rem 0 8rem 0;
    background: #1a1a1a;
    position: relative;
    margin-top: 0;
    z-index: 2;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 4;
}

/* Services Background Animation */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.services-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="movingDotsServices" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="white" opacity="0.15"><animate attributeName="opacity" values="0.05;0.3;0.05" dur="4s" repeatCount="indefinite" begin="-2s"/></circle><circle cx="80" cy="40" r="1" fill="%232A86FF" opacity="0.2"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="6s" repeatCount="indefinite" begin="-3s"/></circle><circle cx="40" cy="80" r="1.2" fill="white" opacity="0.12"><animate attributeName="opacity" values="0.08;0.2;0.08" dur="5s" repeatCount="indefinite" begin="-1s"/></circle><circle cx="160" cy="60" r="0.8" fill="%232A86FF" opacity="0.15"><animate attributeName="opacity" values="0.05;0.25;0.05" dur="7s" repeatCount="indefinite" begin="-4s"/></circle><circle cx="120" cy="120" r="1.3" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.25;0.1" dur="4.5s" repeatCount="indefinite" begin="-2.5s"/></circle><circle cx="180" cy="140" r="1" fill="white" opacity="0.09"><animate attributeName="opacity" values="0.05;0.18;0.05" dur="6.5s" repeatCount="indefinite" begin="-1.5s"/></circle><circle cx="60" cy="160" r="1.1" fill="%232A86FF" opacity="0.18"><animate attributeName="opacity" values="0.08;0.3;0.08" dur="5.5s" repeatCount="indefinite" begin="-3.5s"/></circle><circle cx="140" cy="180" r="0.9" fill="white" opacity="0.07"><animate attributeName="opacity" values="0.05;0.16;0.05" dur="8s" repeatCount="indefinite" begin="-4.2s"/></circle></pattern></defs><rect width="200" height="200" fill="url(%23movingDotsServices)"/></svg>');
    animation: floatDots 25s linear infinite;
    z-index: 1;
}

.services-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="floatingDotsServices" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%232A86FF" opacity="0.15"><animate attributeName="cy" values="30;25;35;30" dur="8s" repeatCount="indefinite" begin="-2.8s"/><animate attributeName="opacity" values="0.08;0.25;0.08" dur="3s" repeatCount="indefinite" begin="-2.8s"/></circle><circle cx="90" cy="50" r="1.2" fill="white" opacity="0.1"><animate attributeName="cy" values="50;45;55;50" dur="6s" repeatCount="indefinite" begin="-1.2s"/><animate attributeName="opacity" values="0.1;0.25;0.1" dur="4s" repeatCount="indefinite" begin="-1.2s"/></circle><circle cx="130" cy="90" r="0.8" fill="white" opacity="0.06"><animate attributeName="cy" values="90;85;95;90" dur="10s" repeatCount="indefinite" begin="-4.2s"/><animate attributeName="opacity" values="0.06;0.15;0.06" dur="5s" repeatCount="indefinite" begin="-4.2s"/></circle><circle cx="50" cy="110" r="1.1" fill="%232A86FF" opacity="0.12"><animate attributeName="cy" values="110;105;115;110" dur="7s" repeatCount="indefinite" begin="-3.5s"/><animate attributeName="opacity" values="0.09;0.22;0.09" dur="3.5s" repeatCount="indefinite" begin="-3.5s"/></circle><circle cx="120" cy="130" r="0.9" fill="white" opacity="0.07"><animate attributeName="cy" values="130;125;135;130" dur="9s" repeatCount="indefinite" begin="-1.8s"/><animate attributeName="opacity" values="0.07;0.18;0.07" dur="4.5s" repeatCount="indefinite" begin="-1.8s"/></circle></pattern></defs><rect width="150" height="150" fill="url(%23floatingDotsServices)"/></svg>');
    animation: floatDotsReverse 20s linear infinite reverse;
    z-index: 2;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(42, 134, 255, 0.03) 0%,
        transparent 25%,
        transparent 75%,
        rgba(42, 134, 255, 0.05) 100%
    );
    z-index: 3;
}

.services-background .floating-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.services-background .floating-dot:nth-child(1) {
    width: 4px;
    height: 4px;
    background: white;
    top: 10%;
    left: 15%;
    animation: floatUp 8s ease-in-out infinite;
    animation-delay: -2s;
}

.services-background .floating-dot:nth-child(2) {
    width: 6px;
    height: 6px;
    background: #2A86FF;
    top: 5%;
    left: 85%;
    animation: floatUp 10s ease-in-out infinite reverse;
    box-shadow: 0 0 10px rgba(42, 134, 255, 0.5);
    animation-delay: -3s;
}

.services-background .floating-dot:nth-child(3) {
    width: 3px;
    height: 3px;
    background: white;
    top: 15%;
    left: 25%;
    animation: floatUp 12s ease-in-out infinite;
    animation-delay: -1s;
}

.services-background .floating-dot:nth-child(4) {
    width: 5px;
    height: 5px;
    background: #2A86FF;
    top: 8%;
    left: 65%;
    animation: floatUp 9s ease-in-out infinite reverse;
    box-shadow: 0 0 8px rgba(42, 134, 255, 0.4);
    animation-delay: -4s;
}

.services-background .floating-dot:nth-child(5) {
    width: 4px;
    height: 4px;
    background: white;
    top: 12%;
    left: 45%;
    animation: floatUp 11s ease-in-out infinite;
    animation-delay: -2.5s;
}

.services-background .animated-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
}

/* Services Content inside Hero */
.services-content {
    padding: 8rem 0 8rem 0;
    background: transparent;
    position: relative;
    margin-top: 4rem;
    z-index: 2;
}

/* Services overlay removed - using body gradient instead */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(42, 134, 255, 0.25);
    border-color: rgba(42, 134, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #2a86ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 134, 255, 0.05) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(42, 134, 255, 0.03) 100%);
    opacity: 1;
    z-index: -1;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.auth-container {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #2A86FF;
    box-shadow: 0 0 0 3px rgba(42, 134, 255, 0.2);
    background: rgba(42, 134, 255, 0.1);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: rgba(26, 26, 26, 0.9);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
}

.btn-social:hover {
    border-color: #2A86FF;
    background: rgba(42, 134, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 134, 255, 0.3);
}

.btn-social.google:hover {
    border-color: #db4437;
    background: rgba(219, 68, 55, 0.2);
    box-shadow: 0 8px 25px rgba(219, 68, 55, 0.3);
}

.btn-social.apple:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-social.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.2);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

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

.auth-footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.auth-footer a {
    color: #2A86FF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: #4A9AFF;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(42, 134, 255, 0.5);
    text-shadow: 0 0 10px rgba(42, 134, 255, 0.5);
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 0 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2A86FF;
    text-shadow: 0 2px 4px rgba(42, 134, 255, 0.4);
}

.footer-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    margin-bottom: 1rem !important;
    filter: drop-shadow(0 2px 4px rgba(42, 134, 255, 0.4)) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
}

.footer-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(42, 134, 255, 0.6));
    transform: scale(1.02);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2A86FF;
    text-shadow: 0 1px 2px rgba(42, 134, 255, 0.3);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.footer-section ul li a:hover {
    color: #2A86FF;
    text-shadow: 0 0 8px rgba(42, 134, 255, 0.6);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #2A86FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(42, 134, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(42, 134, 255, 0.6);
}

/* Footer social icons styling */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2A86FF;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(42, 134, 255, 0.3);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.footer-links a:hover {
    color: #2A86FF;
    text-shadow: 0 0 8px rgba(42, 134, 255, 0.6);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1366px) and (min-width: 1025px) {
    .navbar .container {
        justify-content: center;
        position: relative;
    }

    .nav-brand {
        position: absolute;
        left: 0;
    }

    .nav-auth {
        position: absolute;
        right: 0;
    }

    .nav-menu {
        gap: 1.8rem;
    }

    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .navbar .container {
        justify-content: center;
        position: relative;
        padding: 0 1.5rem;
    }

    .nav-brand {
        position: absolute;
        left: 1.5rem;
    }

    .nav-auth {
        position: absolute;
        right: 1.5rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .nav-auth .btn-primary,
    .nav-auth .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) and (max-height: 600px) {
    .navbar .container {
        justify-content: space-between;
        position: static;
    }

    .nav-brand {
        position: static;
    }

    .nav-auth {
        position: static;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        position: relative;
    }

    .nav-brand {
        position: static;
        z-index: 1;
    }

    .nav-auth {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: static;
        z-index: 1;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-auth {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-auth .btn-primary,
    .nav-menu .nav-auth .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        max-width: 120px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding-top: 160px;
        padding-bottom: 40px;
        min-height: 100vh;
    }

    .hero-content {
        margin: 30px auto 1.5rem auto;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

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

    .service-card {
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding-top: 160px;
        padding-bottom: 40px;
        min-height: 100vh;
    }

    .hero-content {
        margin: 30px auto 1.5rem auto;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

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

    .service-card {
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 15px;
    }

    .nav-brand h2 {
        font-size: 1.4rem;
    }

    .mobile-menu-toggle {
        padding: 0.4rem;
        font-size: 1.3rem;
    }

    .nav-menu .nav-auth {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-menu .nav-auth .btn-primary,
    .nav-menu .nav-auth .btn-outline {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        max-width: none;
    }

    .container {
        padding: 0 15px;
    }

    .hero .container {
        padding-top: 140px;
        padding-bottom: 30px;
    }

    .hero-content {
        margin: 25px auto 1rem auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .auth-container {
        padding: 2rem 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }
}

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

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1.0s; }
.service-card:nth-child(11) { animation-delay: 1.1s; }
.service-card:nth-child(12) { animation-delay: 1.2s; }

/* Logo Grid */
.landing--logos-container {
    margin-top: 2rem;
    margin-bottom: 6rem;
    opacity: 1;
    position: relative;
}

/* Container background effects removed */

.logo-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
    height: 120px;
    perspective: 1000px;
    overflow: hidden;
}

.grid-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    padding: 16px;
    position: relative;
    transform: translateY(0) rotateX(0deg);
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    visibility: hidden;
}

.grid-logo.rolling-out {
    animation: rollOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 10;
}

.grid-logo.rolling-in {
    animation: rollIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 5;
}

.grid-logo.fading {
    animation: logoFade 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    z-index: 1;
}

.grid-logo:nth-child(1) {
    animation-name: logoShakeThenFlyUp1;
}

.grid-logo:nth-child(2) {
    animation-name: logoShakeThenFlyUp2;
}

.grid-logo:nth-child(3) {
    animation-name: logoShakeThenFlyUp3;
}

.grid-logo:nth-child(4) {
    animation-name: logoShakeThenFlyUp4;
}

.grid-logo:hover {
    transform: translateY(-8px) scale(1.05) rotateX(-5deg) rotateY(5deg);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(42, 134, 255, 0.4), 0 0 0 1px rgba(42, 134, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(42, 134, 255, 0.4);
}

.grid-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.8) brightness(0.9);
    transition: all 0.4s ease;
}

.grid-logo:hover img {
    filter: grayscale(0) brightness(1);
}

@keyframes rollOut {
    0% {
        transform: translateY(0) scale(1) rotateX(0deg) rotateZ(0deg);
        opacity: 0.7;
        filter: blur(0px) brightness(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1) rotateX(45deg) rotateZ(10deg);
        opacity: 0.5;
        filter: blur(1px) brightness(1.2);
    }
    50% {
        transform: translateY(-60px) scale(0.95) rotateX(90deg) rotateZ(180deg);
        opacity: 0.2;
        filter: blur(3px) brightness(0.8);
    }
    75% {
        transform: translateY(-90px) scale(0.8) rotateX(135deg) rotateZ(270deg);
        opacity: 0.1;
        filter: blur(5px) brightness(0.6);
    }
    100% {
        transform: translateY(-120px) scale(0.6) rotateX(180deg) rotateZ(360deg);
        opacity: 0;
        filter: blur(8px) brightness(0.4);
    }
}

@keyframes rollIn {
    0% {
        transform: translateY(120px) scale(0.6) rotateX(-180deg) rotateZ(-360deg);
        opacity: 0;
        filter: blur(8px) brightness(0.4);
    }
    25% {
        transform: translateY(90px) scale(0.8) rotateX(-135deg) rotateZ(-270deg);
        opacity: 0.1;
        filter: blur(5px) brightness(0.6);
    }
    50% {
        transform: translateY(60px) scale(0.95) rotateX(-90deg) rotateZ(-180deg);
        opacity: 0.2;
        filter: blur(3px) brightness(0.8);
    }
    75% {
        transform: translateY(20px) scale(1.1) rotateX(-45deg) rotateZ(-10deg);
        opacity: 0.5;
        filter: blur(1px) brightness(1.2);
    }
    100% {
        transform: translateY(0) scale(1) rotateX(0deg) rotateZ(0deg);
        opacity: 0.7;
        filter: blur(0px) brightness(1);
    }
}

@keyframes logoFade {
    0% {
        opacity: 0.7;
        transform: scale(1) rotateY(0deg);
        filter: brightness(1) saturate(1);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.9) rotateY(45deg);
        filter: brightness(0.8) saturate(0.7);
    }
    50% {
        opacity: 0.1;
        transform: scale(0.8) rotateY(90deg);
        filter: brightness(0.6) saturate(0.5);
    }
    75% {
        opacity: 0.4;
        transform: scale(0.9) rotateY(135deg);
        filter: brightness(0.8) saturate(0.7);
    }
    100% {
        opacity: 0.7;
        transform: scale(1) rotateY(180deg);
        filter: brightness(1) saturate(1);
    }
}

@keyframes floatDots {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-20px) translateY(-10px) rotate(90deg);
    }
    50% {
        transform: translateX(20px) translateY(20px) rotate(180deg);
    }
    75% {
        transform: translateX(30px) translateY(-15px) rotate(270deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

@keyframes floatDotsReverse {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(25px) translateY(15px) rotate(-90deg);
    }
    50% {
        transform: translateX(-15px) translateY(-25px) rotate(-180deg);
    }
    75% {
        transform: translateX(-30px) translateY(10px) rotate(-270deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(-360deg);
    }
}

@keyframes containerPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(42, 134, 255, 0.4));
    }
    25% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px rgba(42, 134, 255, 0.5));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 35px rgba(42, 134, 255, 0.6));
    }
    75% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px rgba(42, 134, 255, 0.5));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(42, 134, 255, 0.4));
    }
}

@keyframes logoShakeThenFlyUp {
    0% {
        transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    5% {
        transform: translateX(3px) translateY(0px) rotateZ(2deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    10% {
        transform: translateX(-4px) translateY(0px) rotateZ(-3deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    15% {
        transform: translateX(5px) translateY(0px) rotateZ(4deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    20% {
        transform: translateX(-6px) translateY(0px) rotateZ(-5deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    25% {
        transform: translateX(7px) translateY(0px) rotateZ(6deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    30% {
        transform: translateX(-8px) translateY(0px) rotateZ(-7deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    35% {
        transform: translateX(9px) translateY(0px) rotateZ(8deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    40% {
        transform: translateX(-10px) translateY(0px) rotateZ(-9deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    45% {
        transform: translateX(8px) translateY(0px) rotateZ(7deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    50% {
        transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    55% {
        transform: translateX(0px) translateY(-20px) rotateZ(0deg) scale(1.05);
        opacity: 0.7;
        filter: blur(1px);
    }
    60% {
        transform: translateX(0px) translateY(-50px) rotateZ(5deg) scale(1.1);
        opacity: 0.5;
        filter: blur(2px);
    }
    65% {
        transform: translateX(0px) translateY(-80px) rotateZ(10deg) scale(1.05);
        opacity: 0.3;
        filter: blur(3px);
    }
    70% {
        transform: translateX(0px) translateY(-120px) rotateZ(15deg) scale(0.9);
        opacity: 0.1;
        filter: blur(5px);
    }
    75% {
        transform: translateX(0px) translateY(-150px) rotateZ(20deg) scale(0.7);
        opacity: 0;
        filter: blur(8px);
    }
    80% {
        transform: translateX(0px) translateY(150px) rotateZ(-20deg) scale(0.7);
        opacity: 0;
        filter: blur(8px);
    }
    85% {
        transform: translateX(0px) translateY(80px) rotateZ(-10deg) scale(0.9);
        opacity: 0.2;
        filter: blur(4px);
    }
    90% {
        transform: translateX(0px) translateY(30px) rotateZ(-5deg) scale(1.05);
        opacity: 0.5;
        filter: blur(2px);
    }
    95% {
        transform: translateX(0px) translateY(5px) rotateZ(0deg) scale(1.02);
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
}

@keyframes logoShakeThenFlyUp1 {
    0% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    5% { transform: translateX(3px) translateY(0px) rotateZ(2deg) scale(1); opacity: 0.8; filter: blur(0px); }
    10% { transform: translateX(-4px) translateY(0px) rotateZ(-3deg) scale(1); opacity: 0.8; filter: blur(0px); }
    15% { transform: translateX(5px) translateY(0px) rotateZ(4deg) scale(1); opacity: 0.8; filter: blur(0px); }
    20% { transform: translateX(-6px) translateY(0px) rotateZ(-5deg) scale(1); opacity: 0.8; filter: blur(0px); }
    25% { transform: translateX(7px) translateY(0px) rotateZ(6deg) scale(1); opacity: 0.8; filter: blur(0px); }
    30% { transform: translateX(-8px) translateY(0px) rotateZ(-7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    35% { transform: translateX(9px) translateY(0px) rotateZ(8deg) scale(1); opacity: 0.8; filter: blur(0px); }
    40% { transform: translateX(-10px) translateY(0px) rotateZ(-9deg) scale(1); opacity: 0.8; filter: blur(0px); }
    45% { transform: translateX(8px) translateY(0px) rotateZ(7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    50% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    55% { transform: translateX(0px) translateY(-20px) rotateZ(0deg) scale(1.05); opacity: 0.7; filter: blur(1px); }
    60% { transform: translateX(0px) translateY(-50px) rotateZ(5deg) scale(1.1); opacity: 0.5; filter: blur(2px); }
    65% { transform: translateX(0px) translateY(-80px) rotateZ(10deg) scale(1.05); opacity: 0.3; filter: blur(3px); }
    70% { transform: translateX(0px) translateY(-120px) rotateZ(15deg) scale(0.9); opacity: 0.1; filter: blur(5px); }
    75% { transform: translateX(0px) translateY(-150px) rotateZ(20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    80% { transform: translateX(0px) translateY(150px) rotateZ(-20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    85% { transform: translateX(0px) translateY(80px) rotateZ(-10deg) scale(0.9); opacity: 0.2; filter: blur(4px); }
    90% { transform: translateX(0px) translateY(30px) rotateZ(-5deg) scale(1.05); opacity: 0.5; filter: blur(2px); }
    95% { transform: translateX(0px) translateY(5px) rotateZ(0deg) scale(1.02); opacity: 0.7; filter: blur(1px); }
    100% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
}

@keyframes logoShakeThenFlyUp2 {
    0% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    5% { transform: translateX(3px) translateY(0px) rotateZ(2deg) scale(1); opacity: 0.8; filter: blur(0px); }
    10% { transform: translateX(-4px) translateY(0px) rotateZ(-3deg) scale(1); opacity: 0.8; filter: blur(0px); }
    15% { transform: translateX(5px) translateY(0px) rotateZ(4deg) scale(1); opacity: 0.8; filter: blur(0px); }
    20% { transform: translateX(-6px) translateY(0px) rotateZ(-5deg) scale(1); opacity: 0.8; filter: blur(0px); }
    25% { transform: translateX(7px) translateY(0px) rotateZ(6deg) scale(1); opacity: 0.8; filter: blur(0px); }
    30% { transform: translateX(-8px) translateY(0px) rotateZ(-7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    35% { transform: translateX(9px) translateY(0px) rotateZ(8deg) scale(1); opacity: 0.8; filter: blur(0px); }
    40% { transform: translateX(-10px) translateY(0px) rotateZ(-9deg) scale(1); opacity: 0.8; filter: blur(0px); }
    45% { transform: translateX(8px) translateY(0px) rotateZ(7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    50% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    52% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    57% { transform: translateX(0px) translateY(-20px) rotateZ(0deg) scale(1.05); opacity: 0.7; filter: blur(1px); }
    62% { transform: translateX(0px) translateY(-50px) rotateZ(5deg) scale(1.1); opacity: 0.5; filter: blur(2px); }
    67% { transform: translateX(0px) translateY(-80px) rotateZ(10deg) scale(1.05); opacity: 0.3; filter: blur(3px); }
    72% { transform: translateX(0px) translateY(-120px) rotateZ(15deg) scale(0.9); opacity: 0.1; filter: blur(5px); }
    77% { transform: translateX(0px) translateY(-150px) rotateZ(20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    82% { transform: translateX(0px) translateY(150px) rotateZ(-20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    87% { transform: translateX(0px) translateY(80px) rotateZ(-10deg) scale(0.9); opacity: 0.2; filter: blur(4px); }
    92% { transform: translateX(0px) translateY(30px) rotateZ(-5deg) scale(1.05); opacity: 0.5; filter: blur(2px); }
    97% { transform: translateX(0px) translateY(5px) rotateZ(0deg) scale(1.02); opacity: 0.7; filter: blur(1px); }
    100% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
}

@keyframes logoShakeThenFlyUp3 {
    0% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    5% { transform: translateX(3px) translateY(0px) rotateZ(2deg) scale(1); opacity: 0.8; filter: blur(0px); }
    10% { transform: translateX(-4px) translateY(0px) rotateZ(-3deg) scale(1); opacity: 0.8; filter: blur(0px); }
    15% { transform: translateX(5px) translateY(0px) rotateZ(4deg) scale(1); opacity: 0.8; filter: blur(0px); }
    20% { transform: translateX(-6px) translateY(0px) rotateZ(-5deg) scale(1); opacity: 0.8; filter: blur(0px); }
    25% { transform: translateX(7px) translateY(0px) rotateZ(6deg) scale(1); opacity: 0.8; filter: blur(0px); }
    30% { transform: translateX(-8px) translateY(0px) rotateZ(-7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    35% { transform: translateX(9px) translateY(0px) rotateZ(8deg) scale(1); opacity: 0.8; filter: blur(0px); }
    40% { transform: translateX(-10px) translateY(0px) rotateZ(-9deg) scale(1); opacity: 0.8; filter: blur(0px); }
    45% { transform: translateX(8px) translateY(0px) rotateZ(7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    50% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    54% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    59% { transform: translateX(0px) translateY(-20px) rotateZ(0deg) scale(1.05); opacity: 0.7; filter: blur(1px); }
    64% { transform: translateX(0px) translateY(-50px) rotateZ(5deg) scale(1.1); opacity: 0.5; filter: blur(2px); }
    69% { transform: translateX(0px) translateY(-80px) rotateZ(10deg) scale(1.05); opacity: 0.3; filter: blur(3px); }
    74% { transform: translateX(0px) translateY(-120px) rotateZ(15deg) scale(0.9); opacity: 0.1; filter: blur(5px); }
    79% { transform: translateX(0px) translateY(-150px) rotateZ(20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    84% { transform: translateX(0px) translateY(150px) rotateZ(-20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    89% { transform: translateX(0px) translateY(80px) rotateZ(-10deg) scale(0.9); opacity: 0.2; filter: blur(4px); }
    94% { transform: translateX(0px) translateY(30px) rotateZ(-5deg) scale(1.05); opacity: 0.5; filter: blur(2px); }
    99% { transform: translateX(0px) translateY(5px) rotateZ(0deg) scale(1.02); opacity: 0.7; filter: blur(1px); }
    100% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
}

@keyframes logoShakeThenFlyUp4 {
    0% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    5% { transform: translateX(3px) translateY(0px) rotateZ(2deg) scale(1); opacity: 0.8; filter: blur(0px); }
    10% { transform: translateX(-4px) translateY(0px) rotateZ(-3deg) scale(1); opacity: 0.8; filter: blur(0px); }
    15% { transform: translateX(5px) translateY(0px) rotateZ(4deg) scale(1); opacity: 0.8; filter: blur(0px); }
    20% { transform: translateX(-6px) translateY(0px) rotateZ(-5deg) scale(1); opacity: 0.8; filter: blur(0px); }
    25% { transform: translateX(7px) translateY(0px) rotateZ(6deg) scale(1); opacity: 0.8; filter: blur(0px); }
    30% { transform: translateX(-8px) translateY(0px) rotateZ(-7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    35% { transform: translateX(9px) translateY(0px) rotateZ(8deg) scale(1); opacity: 0.8; filter: blur(0px); }
    40% { transform: translateX(-10px) translateY(0px) rotateZ(-9deg) scale(1); opacity: 0.8; filter: blur(0px); }
    45% { transform: translateX(8px) translateY(0px) rotateZ(7deg) scale(1); opacity: 0.8; filter: blur(0px); }
    50% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    56% { transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1); opacity: 0.8; filter: blur(0px); }
    61% { transform: translateX(0px) translateY(-20px) rotateZ(0deg) scale(1.05); opacity: 0.7; filter: blur(1px); }
    66% { transform: translateX(0px) translateY(-50px) rotateZ(5deg) scale(1.1); opacity: 0.5; filter: blur(2px); }
    71% { transform: translateX(0px) translateY(-80px) rotateZ(10deg) scale(1.05); opacity: 0.3; filter: blur(3px); }
    76% { transform: translateX(0px) translateY(-120px) rotateZ(15deg) scale(0.9); opacity: 0.1; filter: blur(5px); }
    81% { transform: translateX(0px) translateY(-150px) rotateZ(20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    86% { transform: translateX(0px) translateY(150px) rotateZ(-20deg) scale(0.7); opacity: 0; filter: blur(8px); }
    91% { transform: translateX(0px) translateY(80px) rotateZ(-10deg) scale(0.9); opacity: 0.2; filter: blur(4px); }
    96% { transform: translateX(0px) translateY(30px) rotateZ(-5deg) scale(1.05); opacity: 0.5; filter: blur(2px); }
    100% { transform: translateX(0px) translateY(5px) rotateZ(0deg) scale(1.02); opacity: 0.7; filter: blur(1px); }
}

/* Responsive Logo Grid */
@media (max-width: 1024px) {
    .landing--logos-container {
        margin-top: 2.5rem;
        margin-bottom: 5rem;
    }
    
    .logo-grid {
        gap: 1.5rem;
        max-width: 500px;
        height: 100px;
        padding: 1.5rem 0;
    }
    
    .grid-logo {
        width: 70px;
        height: 70px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .landing--logos-container {
        margin-top: 2rem;
        margin-bottom: 4rem;
        padding: 1rem 0;
        position: relative;
        z-index: 2;
        background: transparent;
    }
    
    .logo-grid {
        gap: 1rem;
        max-width: 100%;
        height: 80px;
        flex-wrap: wrap;
        padding: 1rem 0;
        justify-content: center;
    }
    
    .grid-logo {
        width: 60px;
        height: 60px;
        padding: 12px;
        border-radius: 12px;
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .grid-logo:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 12px 24px rgba(42, 134, 255, 0.3), 0 0 0 1px rgba(42, 134, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .landing--logos-container {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
        padding: 0.75rem 0;
        position: relative;
        z-index: 2;
        background: transparent;
    }
    
    .logo-grid {
        gap: 0.75rem;
        height: 70px;
        padding: 0.75rem 0;
        justify-content: space-around;
    }
    
    .grid-logo {
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 10px;
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .grid-logo:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 16px rgba(42, 134, 255, 0.25), 0 0 0 1px rgba(42, 134, 255, 0.15);
    }
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none !important; /* Completely hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0 1rem 0;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure mobile nav is hidden on desktop and tablets */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Ensure body doesn't have bottom padding on desktop */
    body {
        padding-bottom: 0 !important;
    }
}

.mobile-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    min-width: 60px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #2A86FF;
    background: rgba(42, 134, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon,
.mobile-nav-item.active .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1;
}

.mobile-nav-cta {
    background: rgba(42, 134, 255, 0.9);
    color: white !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -10px;
    box-shadow: 0 4px 20px rgba(42, 134, 255, 0.4);
}

.mobile-nav-cta:hover {
    background: rgba(42, 134, 255, 1);
    transform: translateY(-4px) scale(1.05);
    color: white !important;
}

.mobile-nav-cta .mobile-nav-icon {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.mobile-nav-cta .mobile-nav-label {
    display: none;
}

/* Hide desktop nav and show mobile bottom nav on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    /* Hide desktop navigation menu on mobile */
    .nav-menu {
        display: none;
    }

    /* Adjust navbar to only show logo */
    .navbar .container {
        justify-content: center;
        padding: 1rem 20px;
    }

    .nav-brand {
        margin: 0 auto;
    }

    .nav-auth,
    .mobile-menu-toggle {
        display: none;
    }

    /* Add bottom padding to body to account for bottom nav */
    body {
        padding-bottom: 80px;
    }

    /* Adjust hero section for bottom nav */
    .hero .container {
        padding-bottom: 100px; /* Extra space for bottom nav */
    }

    /* Adjust services section for bottom nav */
    .services {
        padding-bottom: 100px;
    }

    /* Adjust footer for bottom nav */
    .footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-nav {
        padding: 0.5rem 0 0.75rem 0;
    }

    .mobile-nav-item {
        min-width: 50px;
        padding: 0.25rem;
    }

    .mobile-nav-icon {
        font-size: 1.1rem;
    }

    .mobile-nav-label {
        font-size: 0.65rem;
    }

    .mobile-nav-cta {
        width: 45px;
        height: 45px;
        top: -8px;
    }

    .mobile-nav-cta .mobile-nav-icon {
        font-size: 1.3rem;
    }

    /* Fixed hero section for phones - ensures all content fits */
    .hero {
        height: 100vh !important; /* Fixed viewport height */
        max-height: 100vh !important;
        min-height: 100vh !important;
        position: relative;
        z-index: 1;
        overflow: hidden; /* Prevent content overflow */
    }

    .hero .container {
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 110px 20px 90px 20px !important; /* Added more top spacing */
        position: relative;
        z-index: 2;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important; /* Distribute content evenly */
        align-items: center;
        overflow-y: auto; /* Allow scrolling if needed */
    }

    .hero-content {
        flex: 0 0 auto; /* Don't grow or shrink */
        margin: 0 auto 1rem auto !important;
        padding: 1rem 0.5rem !important;
        position: relative;
        z-index: 3;
        max-width: 95%;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.4 !important;
    }

    .hero-buttons {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn-large {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .hero-stats {
        flex: 0 0 auto; /* Don't grow or shrink */
        margin: 1rem 0 !important;
        position: relative;
        z-index: 3;
        padding: 0.5rem 0 !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .stat-item {
        text-align: center;
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    .landing--logos-container {
        flex: 0 0 auto; /* Don't grow or shrink */
        margin: 1rem auto 0 auto !important;
        padding: 1rem 0.5rem !important;
        position: relative !important;
        z-index: 10 !important;
        background: rgba(26, 26, 26, 0.9) !important;
        border-radius: 15px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        width: 95%;
        max-width: 350px;
    }

    .logo-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.8rem !important;
        justify-items: center;
        align-items: center;
    }

    .grid-logo {
        width: 100% !important;
        max-width: 60px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .grid-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
} 