  body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }
        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(17, 226, 223, 0.6);
            z-index: 0;
        }
        .parallax-content {
            position: relative;
            z-index: 1;
        }
        .section {
            padding: 6rem 1rem;
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 2rem 10rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            box-shadow: 0px -2px 11px #00b4ed;
           /*  padding: 2rem 8rem;
            background: rgba(255, 255, 255, 0.95); */
        }
        .navbar .logo img {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }
        .navbar.scrolled .logo img {
            height: 40px;
        }
        .navbar ul {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar a {
            color: rgb(0, 0, 0);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        .navbar a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1eb2e8;
            transition: width 0.3s;
        }
        .navbar a:hover::after {
            width: 100%;
        }
        .navbar a:hover {
            color: #1eb2e8;
        }
        .cta-button {
            background-color: #1eb2e8;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        .cta-button:hover {
            background-color: #1eb2e8;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: #1eb2e8;
            margin-bottom: 1.5rem;
        }
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            color: #00b4ed;
            font-size: 1.5rem;
            cursor: pointer;
        }

       
        @media (max-width: 768px) {
            .parallax {
                background-attachment: scroll;
                min-height: 90vh;
            }
            .section {
                padding: 4rem 1rem;
            }
            .navbar {
                padding: 1rem;
            }
            .navbar ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #00b4ed;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: all 0.5s ease;
            }
            .navbar ul.active {
                left: 0;
                
            }
            .navbar .logo img {
                height: 50px;
            }
            .mobile-menu-button {
                display: block;
            }
              .mobile-menu-button i {
               color: #00b4ed
            }


          /*   .mobile-center-text{
                display: block;
                margin:auto 20px;
            }
 */

        }



        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

         .background-video {
   width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -1;
}