
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        section {
            scroll-margin-top: 70px;
        }

        /* === NAVBAR === */
        .navbar {
            height: 140px;
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(46, 1, 101, 0.384);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.25);
            z-index: 1000;
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }

        .navbar::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 7px;
            pointer-events: none;
            background: linear-gradient(90deg, rgb(255, 118, 255), rgb(170, 95, 240), rgb(209, 116, 248), rgb(89, 0, 179));
            background-size: 200% 100%;
            background-repeat: no-repeat;
            background-position: 0% 50%;
            z-index: 1010;
            border-radius: 2px 2px 0 0;
            animation: border-glow 5s linear infinite;
        }

        @keyframes border-glow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.9rem 2rem;
            position: relative;
            z-index: 1;
            height: 100%;
        }

        .nav-logo {
            width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .nav-logo:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .nav-logo img {
            height: 100%;
            width: 100%;
            border-radius: 10px;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            transition: 0.5s ease;
        }

        .nav-link {
            position: relative;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 1rem;
            padding: 0.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #a855f7, #6366f1);
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #b577f3;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 26px;
            height: 3px;
            background: #fff;
            margin: 4px 0;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .slider {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sliders {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .sliders.active {
            opacity: 1;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            font-size: 2rem;
            padding: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 10;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        .dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: white;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.4);
            padding: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .logo img {
            height: 200px;
            width: auto;
        }

        .offers {
            width: 90%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            object-fit: contain;
            margin: 2rem auto;
            flex-wrap: wrap;
        }

        .offers img {
            object-fit: contain;
            height: 40vh;
            border-radius: 10px;
            flex: 1;
            min-width: 250px;
           
        }

        .tagline {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #8a2be2, #4b0082);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #9d4edd, #5a189a);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
        }

        /* Services Section */
        .services {
            position: relative;
            padding: 5rem 2rem;
            background-image: url('https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?w=1200');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(224, 197, 252, 0.471);
        }

        .services > * {
            position: relative;
            z-index: 1;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .services-grid > a {
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }

        .services-grid > a:hover {
            transform: translateY(-5px);
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-icon img {
            height: 50px;
            width: auto;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .service-card p {
            color: #666;
        }

        /* Monthly Offer */
        .montly_offer {
            position: relative;
            padding: 4rem 2rem;
            background-image: url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?w=1200');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .montly_offer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(152, 60, 239, 0.392), rgba(75, 0, 130, 0.9));
        }

        .montly_offer > * {
            position: relative;
            z-index: 1;
        }

        .montly_offer a {
            text-decoration: none;
            flex: 1;
            max-width: 500px;
            min-width: 280px;
        }

        .monthly_link {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .monthly_link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .monthly_link p {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .monthly_link span {
            color: #666;
        }

        /* Clients Section */
        .clients {
            position: relative;
            padding: 5rem 2rem;
            background-image: url('data/hero\ slider\ 4.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .clients::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.156);
        }

        .clients > * {
            position: relative;
            z-index: 1;
        }

        .clients h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .clients-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .clients-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .client-card {
            background: rgba(70, 29, 151, 0.588);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .client-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .client-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .client-card p {
            color: #ffe0e0;
        }

        /* Features Section */
        .features {
            position: relative;
            padding: 5rem 2rem;
            background-image: url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?w=1200');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(248, 249, 250, 0.193);
        }

        .features > * {
            position: relative;
            z-index: 1;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-item p {
            color: #666;
        }

        /* Contact Section */
        .contact {
            position: relative;
            padding: 5rem 2rem;
            background-image: url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?w=1200');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(137, 43, 226, 0.784), rgba(76, 0, 130, 0.734));
        }

        .contact > * {
            position: relative;
            z-index: 1;
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .contact-icon {
            font-size: 1.5rem;
        }

        .contact-container iframe {
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            height: 300px;
        }

        .booking-form {
            background: rgba(255, 255, 255, 0.381);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .booking-form h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8a2be2;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #8a2be2, #4b0082);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #9d4edd, #5a189a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }

        /* ========== MOBILE RESPONSIVE ========== */
        
        @media (max-width: 768px) {
            /* Navbar Mobile */
            .navbar {
                height: 70px;
            }

            .nav-container {
                padding: 0.5rem 1rem;
            }

            .nav-logo {
                width: 120px;
                height: 50px;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(46, 1, 101, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .nav-link {
                font-size: 1.2rem;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            /* Hero Mobile */
            .hero {
                margin-top: 70px;
                height: 70vh;
            }

            .logo {
                font-size: 2rem;
            }

            .logo img {
                height: 120px;
            }

            .tagline {
                font-size: 1.2rem;
                padding: 0 1rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .nav-btn {
                font-size: 1.5rem;
                padding: 0.5rem;
            }

            .prev { left: 10px; }
            .next { right: 10px; }

            /* Offers Mobile */
            .offers {
                flex-direction: row;
                align-items: center;
            }

            .offers img {
                width: 100%;
                height: 10vh;
                min-width: auto;
            }

            /* Sections Mobile */
            .services,
            .montly_offer,
            .clients,
            .features,
            .contact {
                padding: 3rem 1rem;
            }

            .services h2,
            .clients h2,
            .features h2,
            .contact h2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .clients-subtitle {
                font-size: 1rem;
            }

            /* Grid adjustments */
            .services-grid,
            .clients-grid,
            .features-grid,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card,
            .client-card,
            .feature-item {
                padding: 1.5rem;
            }

            .service-card h3,
            .client-card h3,
            .feature-item h3 {
                font-size: 1.2rem;
            }

            /* Monthly Offer Mobile */
            .montly_offer a {
                max-width: 100%;
            }

            .monthly_link p {
                font-size: 1.3rem;
            }

            /* Contact Mobile */
            .contact-info,
            .booking-form {
                padding: 1.5rem;
            }

            .booking-form h3 {
                font-size: 1.3rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .nav-logo {
                width: 100px;
                height: 40px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo img {
                height: 100px;
            }

            .tagline {
                font-size: 1rem;
            }

            .services h2,
            .clients h2,
            .features h2,
            .contact h2 {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .offers img {
                height: 25vh;
            }
        }
   