@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    
body { 
    font-family: 'Poppins', sans-serif; 
    scroll-behavior: smooth; 
}

html, body {
    overflow-x: hidden;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f0f9ff;
}
::-webkit-scrollbar-thumb {
    background: #6d8ba4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4085f6;
}
        
        /* Enhanced Navbar Styles */
        .navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); transition: all 0.4s ease; }
        .navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .navbar-brand { transition: transform 0.3s ease; }
        .navbar-brand:hover { transform: scale(1.05); }
        .nav-link { position: relative; padding: 0.5rem 0; margin: 0 1rem; font-weight: 500; transition: color 0.3s ease; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: linear-gradient(to right, #1d4763, #3b82f6); transition: width 0.3s ease; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        
        /* Hero Section */
        .hero-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
        .hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 80%; z-index: -1; }
        .hero-background::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 80%; background: linear-gradient(135deg, rgba(29, 71, 99, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%); z-index: 1; }
        .hero-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
        .hero-title { font-size: 4rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; background: white; -webkit-text-fill-color: transparent; animation: fadeInUp 0.8s ease-out; }
        .hero-subtitle { font-size: 1.5rem; color: #e5e7ebff; margin-bottom: 2rem; max-width: 600px; animation: fadeInUp 0.8s ease-out 0.2s both; }
        .hero-cta { display: flex; gap: 1rem; animation: fadeInUp 0.8s ease-out 0.4s both; }
        .hero-image { animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2)); }
        
        /* Animations */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
        
        /* Water Bubbles */
        .water-bubble { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.3); animation: bubble 8s infinite ease-in-out; z-index: 1; }
        /* @keyframes bubble { 0% { transform: translateY(100px) scale(0) opacity: 0; } 50% { opacity: 0.7; } 100% { transform: translateY(-100px) scale(1) opacity: 0; } } */
        
        /* Mobile Menu */
        .mobile-menu { transform: translateX(100%); transition: transform 0.3s ease; }
        .mobile-menu.open { transform: translateX(0); }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .hero-cta { flex-direction: column; align-items: flex-start; }
        }
        
        /* Swiper */
        .swiper-slide { height: auto !important; }
        .bronwater-card { display: flex; flex-direction: column; height: 100%; }
        .bronwater-body { flex: 1; display: flex; flex-direction: column; }
        .bronwater-body ul { flex: 1; }



        /* About Us Page  */

        .water-ripple {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: ripple 3s linear infinite;
        }

        .water-ripple:nth-child(2) {
            animation-delay: 0.5s;
        }

        .water-ripple:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes ripple {
            0% {
                width: 0;
                height: 0;
                opacity: 1;
            }
            100% {
                width: 500px;
                height: 500px;
                opacity: 0;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-float-slow {
            animation: float 5s ease-in-out infinite;
        }

        .animate-float-slower {
            animation: float 7s ease-in-out infinite;
        }

        /* Fade In Animation */
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Custom animations */
        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        .animate-bounce-slow {
            animation: bounce-slow 2.5s infinite;
        }
        @keyframes pulse-slow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }
        .animate-pulse-slow {
            animation: pulse-slow 6s infinite;
        }

        /* Glass Morphism Effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Water Drop Animation */
        @keyframes waterDrop {
            0% {
                transform: translateY(-100px) scale(0.8);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(100px) scale(1.2);
                opacity: 0;
            }
        }

        .water-drop {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: waterDrop 3s linear infinite;
        }

        /* Bubble Animation */
        @keyframes bubble {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .water-bubble {
            position: absolute;
            bottom: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: bubble 10s linear infinite;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #407aa1ff, #3b82f6, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Card Hover Effects */
        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Section Dividers */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 50px;
        }

        .wave-divider .shape-fill {
            fill: #FFFFFF;
        }