        body {
            overflow-x: hidden;
        }

        * {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        .pricing-card {
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .price-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .search-box {
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .search-box.open {
            opacity: 1;
            visibility: visible;
        }

        .hero-section {
            background-image: url('./images/background.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .desert-section {
            background: linear-gradient(rgba(13, 53, 89, 0.8), rgba(13, 53, 89, 0.8));
        }

        .image-text-section {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        /* Page Loader Styles */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #0d3559;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .loader-logo {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
            animation: pulse 1.5s infinite ease-in-out;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #f59e0b;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Scroll to Top Button Styles */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #0d3559;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .scroll-to-top.visible {
            opacity: 0.8;
            visibility: visible;
        }

        .scroll-to-top:hover {
            opacity: 1;
            background-color: #f59e0b;
        }


        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7);
        }



        @keyframes slowMo {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.05);
            }
        }

        /* Initial header style - transparent */
        header {
            transition: all 0.3s ease;
        }

        /* Scrolled header style */
        header.scrolled {
            background-color: #0d3559;
            /* Blue background */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* Dropdown menu styles */
        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .animate__delay-05s {
            animation-delay: 0.3s;
        }

        .animate__delay-05s {
            animation-delay: 0.5s;
        }

        .animate__delay-07s {
            animation-delay: 0.7s;
        }

        ul.list-inside li {
            line-height: 1.2;
        }

        