        :root {
            --primary: #02066e;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Video background containers */
        .video-background {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
        
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        /* Section video background */
        .section-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .section-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(2, 6, 110, 0.85) 0%, rgba(2, 6, 110, 0.9) 100%);
        }
        
        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            z-index: 50;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .hamburger span {
            transition: transform 0.3s ease;
        }
        
        .hamburger.active span:first-child {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:last-child {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Content styling */
        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Custom font weights and sizes */
        .hero-title {
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        
        .section-title {
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        
        .stat-number {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        /* Image styling */
        .about-image {
            border-radius: 4px;
            overflow: hidden;
           
        }
        
        .founder-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 1068px) {
            .content-order {
                order: 2;
            }
            
            .hero-section {
                min-height: 50vh !important;
            }
            
            .hero-content {
                padding-top: 2rem !important;
            }
            
            .service-image {
                height: 140px;
            }
        }
        
        /* Custom styles for new sections */
        .btn-primary {
            background-color: #02066e;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #01044d;
        }
        
        .text-primary {
            color: #02066e;
        }
        
        .bg-primary {
            background-color: #02066e;
        }
        
        .border-primary {
            border-color: #02066e;
        }
        
        .testimonial-card {
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-card {
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }.team-member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
  

  

/* WhatsApp button specific animation */
.whatsapp-btn {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top button animation */
.back-to-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* Floating menu button animation */
.floating-menu-btn.active {
    transform: rotate(45deg);
    background-color: var(--primary);
}

/* Smooth transitions */
#floating-menu {
    transition: all 0.3s ease;
}

#floating-menu.show {
    display: flex !important;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .whatsapp-tooltip,
    .back-to-top-tooltip,
    .tooltip {
        display: none !important;
    }
    
    .fixed {
        bottom: 4;
        right: 4;
    }
    
    .whatsapp-btn,
    .back-to-top-btn,
    .floating-menu-btn {
        width: 12;
        height: 12;
    }
    
    .whatsapp-btn i,
    .back-to-top-btn i,
    .floating-menu-btn i {
        font-size: 1rem;
    }
}