   /* CSS Reset */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body, div, span, applet, object, iframe,
        h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code,
        del, dfn, em, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var,
        b, u, i, center,
        dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend,
        table, caption, tbody, tfoot, thead, tr, th, td,
        article, aside, canvas, details, embed,
        figure, figcaption, footer, header, hgroup,
        menu, nav, output, ruby, section, summary,
        time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
        }

        article, aside, details, figcaption, figure,
        footer, header, hgroup, menu, nav, section {
            display: block;
        }

        ol, ul {
            list-style: none;
        }

        blockquote, q {
            quotes: none;
        }

        blockquote:before, blockquote:after,
        q:before, q:after {
            content: '';
            content: none;
        }

        table {
            border-collapse: collapse;
            border-spacing: 0;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
            font-size: 16px;
            color: #0a0a0a;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

     
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
        } 

        /* Mobile CTA Buttons */
        .mobile-cta {
            display: none;
            padding: 10px 20px;
            background: #fff;
        }
        

        .whatsapp-booking-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            width:55%;
            background: #000;
            border-radius: 50px;
            padding: 8px 12px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .whatsapp-booking-btn:active {
            transform: scale(0.98);
        }

        .whatsapp-icon-circle {
            width: 45px;
            height: 45px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .whatsapp-icon-circle svg {
            width: 28px;
            height: 28px;
        }

        .whatsapp-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #fff;
        }

        .whatsapp-title {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .whatsapp-subtitle {
            font-size: 12px;
            color: #25D366;
            font-weight: 600;
        }

          section {
            padding: 60px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
            border-bottom: 3px solid #ff0000;
            display: inline-block;
            padding-bottom: 5px;
        }

        /* About Section */
        .about-section {
            background: #f9f9f9;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .service-item {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-item:hover {
            transform: scale(1.1);
        }

        .service-item img {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px auto;
        }

        .service-item h3 {
            font-size: 1.1rem;
            color: #050f5b;
            font-weight: 700;
            text-align: center;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-item img {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px auto;
        }

        .feature-item p {
            text-align: center;
            max-width: 300px;
        }

        /* How It Works */
        .how-it-works {
            background: #e8e8f5;
        }

        .work-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .work-left h2 {
            font-size: 2.5rem;
            color: #050f5b;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .work-left p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .work-left .btn {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            background: transparent;
            color: #050f5b;
            border: 3px solid #050f5b;
        }

        .work-left .btn:hover {
            background: #050f5b;
            color: #fff;
        }

        .work-steps {
            list-style: none;
            position: relative;
        }

        .work-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 60px;
            position: relative;
        }

        .work-step:last-child {
            margin-bottom: 0;
        }

        .work-step::before {
            content: '';
            position: absolute;
            left: 32px;
            top: 65px;
            width: 4px;
            height: calc(100% + 60px);
            background: #050f5b;
        }

        .work-step:last-child::before {
            display: none;
        }

        .step-icon {
            width: 65px;
            height: 65px;
            background: #17a2b8;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px;
            flex-shrink: 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .step-content h3 {
            font-size: 1rem;
            color: #050f5b;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .step-content p {
            font-size: 1.1rem;
            color: #333;
        }

        /* Brands Carousel */
        .brands-carousel {
            overflow: hidden;
            margin-top: 40px;
        }

        .brands-track {
            display: flex;
            animation: scroll 20s linear infinite;
        }

        .brand-item {
            flex: 0 0 150px;
            padding: 20px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Footer */
        .site-footer {
            background: #c57e04;
            color: #fff;
            padding: 30px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 100;
            background: #25D366;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .whatsapp-float img {
            width: 40px;
            height: 40px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-navigation {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
            .mobileCtaBox{
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .mobile-cta {
                display:flex;
                justify-content: space-between;
            }
            .mobile-cta .btn{margin-top:0;display: flex;align-items: center;justify-content: center;}

            .about-content,
            .work-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .work-left {
                text-align: center;
            }

            .work-left h2 {
                font-size: 2rem;
            }

            .work-step {
                margin-bottom: 50px;
            }

            .work-step::before {
                height: calc(100% + 50px);
            }

            .step-content h3 {
                font-size: 1.4rem;
            }

            .step-content p {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .slide-content h2 {
                font-size: 1.5rem;
            }

            .slide-content {
                padding: 20px;
                max-width:360px;
                width:360px;
                
            }

            .slider-container {
                height: 400px;
            }
            .slide-content h2{white-space: inherit;}
        }

        @media (max-width: 480px) {
            .work-left h2 {
                font-size: 1rem;
            }

            .step-icon {
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            section {padding:60px 0px;}

            .step-content h3 {
                font-size: 1.2rem;
            }

            .work-step::before {
                left: 27px;
            }

            .slide-content h2 {
                font-size: 1.2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .slider-container {
                height:560px;
            }
        }