   /* Reset and Base Styles (Minified for speed) */
        *{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
        body{background-color:#f9f9f9;}

        /* Color Theme: 
           Primary: #00ADB5 (Teal for accents, buttons)
           Secondary: #222831 (Dark gray for text, icons)
           Background: #FFFFFF (White for navbar)
           Hover/Active: #008c93 (Darker teal)
           Light BG: #f9f9f9 (Body)
        */

        /* Top Bar */
        .top-bar{background:linear-gradient(180deg,#00ADB5,#008c93);color:#FFF;padding:12px 0;font-size:14px;text-align:center;position:relative;overflow:hidden;animation:fadeIn 1s ease-in-out;}
        .top-bar-content{max-width:1200px;margin:0 auto;display:flex;justify-content:center;align-items:center;gap:20px;flex-wrap:wrap;padding:0 20px;}
        .contact-item{display:flex;align-items:center;gap:8px;font-weight:500;text-align:center;}
        .contact-item svg{width:16px;height:16px;fill:#FFF;}

        /* Main Navbar */
        .navbar{background:#FFF;box-shadow:0 4px 12px rgba(0,0,0,0.1);position:sticky;top:0;z-index:1000;animation:fadeIn 1.2s ease-in-out;}
        .navbar-container{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;padding:15px 20px;}
        .logo-img{height:60px;transition:transform 0.4s ease,opacity 0.4s ease;}
        .logo:hover .logo-img{transform:scale(1.05);opacity:0.95;}

        /* Nav Menu */
        .nav-menu{display:flex;list-style:none;gap:30px;align-items:center;} /* Increased gap for better spacing */
        .nav-link{color:#222831;text-decoration:none;padding:12px 20px;position:relative;font-weight:500;font-size:16px;border-radius:6px;transition:color 0.3s ease,background 0.3s ease,transform 0.3s ease;}
        .nav-link:hover{color:#00ADB5;transform:translateY(-2px);}
        .nav-link::after{content:'';position:absolute;width:0;height:3px;bottom:0;left:50%;background:#00ADB5;transition:width 0.3s ease,left 0.3s ease;}
        .nav-link:hover::after{width:100%;left:0;}

        /* Book Now Button */
        .book-now{background:#00ADB5;color:#FFF !important;padding:12px 25px;border-radius:30px;font-weight:600;box-shadow:0 4px 12px rgba(0,173,181,0.3);transition:background 0.3s ease,transform 0.3s ease,box-shadow 0.3s ease;}
        .book-now:hover{background:#008c93;transform:translateY(-3px);box-shadow:0 6px 15px rgba(0,173,181,0.4);color:#FFF !important;}
        .book-now::after{display:none;} /* No underline for button */

        /* Hamburger */
        .hamburger{display:none;flex-direction:column;cursor:pointer;padding:12px;z-index:1001;transition:all 0.3s ease;}
        .bar{height:4px;width:30px;background:#222831;margin:5px 0;border-radius:2px;transition:all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);}
        .hamburger.active .bar:nth-child(1){transform:rotate(45deg) translate(5px,5px);background:#00ADB5;}
        .hamburger.active .bar:nth-child(2){opacity:0;transform:scale(0);}
        .hamburger.active .bar:nth-child(3){transform:rotate(-45deg) translate(7px,-7px);background:#00ADB5;}

        /* Animations */
        @keyframes fadeIn{from{opacity:0;transform:translateY(-15px);}to{opacity:1;transform:translateY(0);}}
        @keyframes slideIn{from{opacity:0;transform:translateY(-50px);}to{opacity:1;transform:translateY(0);}}
        @keyframes menuFadeIn{0%{opacity:0;transform:scale(0.95);}100%{opacity:1;transform:scale(1);}}

        /* Responsive */
        @media (max-width:768px){
            .top-bar{display:none;}
            .nav-menu{display:none;flex-direction:column;position:absolute;top:100%;left:0;width:100%;background:#FFF;padding:40px 0;box-shadow:0 4px 12px rgba(0,0,0,0.1);animation:slideIn 0.5s ease-in-out forwards, menuFadeIn 0.5s ease-in-out; justify-content:center;align-items:center;gap:30px;} /* Enhanced animation and spacing */
            .nav-menu.active{display:flex;}
            .nav-link{padding:18px 0;font-size:18px;margin:0;width:100%;text-align:center;transition:background 0.3s ease;} /* Larger font, better touch targets */
            .nav-link:hover{background:rgba(0,173,181,0.1);}
            .book-now{width:80%;margin:30px auto 0;text-align:center;padding:15px 30px;font-size:18px;} /* More prominent, better spacing */
            .hamburger{display:flex;}
        }
        @media (max-width:480px){
            .logo-img{height:50px;}
            .nav-link{font-size:16px;}
            .navbar-container{padding:10px 15px;}
            .nav-menu{gap:25px;padding:30px 0;} /* Adjusted for smaller screens */
            .book-now{width:90%;padding:14px 25px;}
        }



/*Hero secion*/
  
 
        .hero {
            position: relative;
            height: 80vh;
            padding: 60px 0;
            background: linear-gradient(135deg, #e6f7f8 0%, #ffffff 70%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 20%, rgba(0, 173, 181, 0.2) 0%, transparent 60%), 
                        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%2300ADB5" fill-opacity="0.08" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,176C672,160,768,160,864,176C960,192,1056,224,1152,240C1248,256,1344,256,1392,256L1440,256V320H1392C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320H0V160Z"%3E%3C/path%3E%3C/svg%3E');
            background-size: cover;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .left {
            flex: 1;
            max-width: 50%;
            padding-right: 40px;
        }

        .specialist {
            font-size: 16px;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        h1 {
            font-size: 60px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #1a2e44;
            text-shadow: 1px 1px 3px rgba(0, 173, 181, 0.2);
        }

        .book-now-btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(90deg, #00ADB5, #008c92);
            color: #ffffff;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 35px;
            box-shadow: 0 4px 15px rgba(0, 173, 181, 0.3);
        }

        .book-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 173, 181, 0.4);
        }

        .subheadline {
            font-size: 20px;
            font-weight: 500;
            color: #34495e;
            line-height: 1.5;
            margin-bottom: 45px;
            max-width: 90%;
        }

        .trust-signals {
            display: flex;
            gap: 40px;
            margin-top: 25px;
            font-size: 16px;
            color: #6c757d;
            font-weight: 500;
        }

        .trust-signals span {
            display: flex;
            align-items: center;
        }

        .trust-signals span::before {
            content: '✓';
            margin-right: 8px;
            color: #00ADB5;
            font-weight: 700;
            font-size: 18px;
        }

        .right {
            flex: 1;
            max-width: 50%;
            display: flex;
            justify-content: flex-end;
        }

        .right img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .right img:hover {
            transform: scale(1.03);
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 40px 0;
            }

            .container {
                flex-direction: column;
                text-align: left;
            }

            .left {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }

            h1 {
                font-size: 40px;
                margin-bottom: 20px;
            }

            .book-now-btn {
                padding: 12px 25px;
                font-size: 16px;
            }

            .subheadline {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .trust-signals {
                flex-direction: column;
                gap: 15px;
            }

            .right {
                max-width: 100%;
                justify-content: center;
                margin-top: 20px;
            }

            .right img {
                max-width: 80%;
            }
        }





        /*about us */


        #preabout {
            padding: 100px 0;
            background: linear-gradient(135deg, #e6f7f8 0%, #ffffff 70%);
            position: relative;
            overflow: hidden;
        }

        .preabout-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .preabout-left {
            flex: 1;
            position: relative;
            min-height: 400px;
            text-align: left;
        }

        .preabout-badge {
            position: absolute;
            top: -30px;
            left: 0;
            background: #ffffff;
            border-radius: 20px;
            padding: 12px 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            z-index: 3;
            font-size: 16px;
            font-weight: 600;
            color: #212529;
            animation: fadeInUp 1s ease-out;
        }

        .preabout-badge svg {
            margin-right: 10px;
            fill: #00ADB5;
        }

        .preabout-main-img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease;
            position: relative;
            z-index: 2;
            animation: slideInLeft 1s ease-out;
        }

        .preabout-overlay-img {
            position: absolute;
            bottom: -30px;
            right: -40px;
            width: 250px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: rotate(5deg);
            background: #ffffff;
            padding: 10px;
            transition: transform 0.4s ease;
            z-index: 1;
            animation: slideInRight 1.2s ease-out;
        }

        .preabout-left:hover .preabout-main-img,
        .preabout-left:hover .preabout-overlay-img {
            transform: scale(1.05);
        }

        .preabout-vertical-line {
            position: absolute;
            left: 0;
            top: 60px;
            width: 5px;
            height: 120px;
            background: linear-gradient(to bottom, #00ADB5, #008c92);
            border-radius: 2px;
            z-index: 0;
        }

        .preabout-right {
            flex: 1;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .preabout-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .preabout-section-title {
            font-size: 14px;
            color: #00ADB5;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            animation: fadeIn 1s ease-out;
        }

        .preabout-section-title::before {
            content: '//';
            color: #00ADB5;
            margin-right: 5px;
        }

        .preabout-heading {
            font-size: 48px;
            font-weight: 800;
            color: #1a2e44;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 1.2s ease-out;
        }

        .preabout-subheading {
            font-size: 18px;
            font-weight: 400;
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 90%;
            animation: fadeIn 1.5s ease-out;
        }

        .preabout-squiggly {
            width: 120px;
            height: 20px;
            margin-bottom: 30px;
            animation: drawSquiggly 1.5s ease-out forwards;
        }

        .preabout-contact {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            animation: fadeIn 1.8s ease-out;
        }

        .preabout-contact-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background: #00ADB5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 600;
        }

        .preabout-contact-text {
            font-size: 16px;
            color: #212529;
            font-weight: 500;
        }

        .preabout-contact-phone {
            font-size: 18px;
            color: #00ADB5;
            font-weight: 600;
        }

        .preabout-cta-btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(90deg, #00ADB5, #008c92);
            color: #ffffff;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 18px rgba(0, 173, 181, 0.3);
            animation: bounceIn 1.8s ease-out;
        }

        .preabout-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 25px rgba(0, 173, 181, 0.4);
        }

        .preabout-stats-circle {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #00ADB5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 173, 181, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes drawSquiggly {
            from { stroke-dasharray: 120; stroke-dashoffset: 120; }
            to { stroke-dasharray: 120; stroke-dashoffset: 0; }
        }

        @keyframes bounceIn {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.1); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .preabout-container {
                flex-direction: column;
                align-items: center;
                text-align: left;
                gap: 50px;
            }

            .preabout-left {
                min-height: auto;
                width: 100%;
                text-align: center;
            }

            .preabout-overlay-img {
                bottom: -80px;
                right: 20px;
                width: 200px;
            }

            .preabout-right {
                text-align: left;
            }

            .preabout-subheading {
                max-width: 100%;
            }

            .preabout-contact {
                justify-content: flex-start;
            }

            .preabout-stats-circle {
                position: relative;
                margin: 20px auto 0;
            }

            .preabout-heading {
                font-size: 36px;
            }
        }




        /*cars*/

 #fleet {
        padding: 120px 0;
        background: linear-gradient(135deg, #00ADB5 0%, #008c92 100%);
        position: relative;
        overflow: hidden;
    }

    #fleet::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        z-index: 1;
    }

    .fleet-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .fleet-heading {
        font-size: 52px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .fleet-tagline {
        font-size: 22px;
        font-weight: 500;
        color: #e6f7f8;
        opacity: 0.9;
        margin-bottom: 80px;
        text-align: center;
    }

    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .fleet-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 1s ease, transform 1s ease;
        display: flex;
        flex-direction: column;
    }

    .fleet-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fleet-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(0, 173, 181, 0.3);
    }

    .fleet-image-container {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .fleet-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .fleet-card:hover .fleet-image {
        transform: scale(1.15);
    }

    .fleet-details {
        padding: 25px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .fleet-name {
        font-size: 26px;
        font-weight: 700;
        color: #212529;
        margin-bottom: 8px;
    }

    .fleet-price {
        font-size: 20px;
        font-weight: 600;
        color: #00ADB5;
        margin-bottom: 20px;
    }

    .fleet-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin: 0.7rem 0 1rem;
        justify-content: center;
    }

    .feature-badge {
        font-size: 0.9rem;
        color: #00ADB5;
        background-color: rgba(0, 173, 181, 0.1);
        padding: 0.35rem 0.9rem;
        border-radius: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #00ADB5;
    }

    .feature-badge:hover {
        background-color: #00ADB5;
        color: #ffffff;
    }

    .fleet-cta {
        display: block;
        padding: 14px 25px;
        background: linear-gradient(90deg, #00ADB5, #008c92);
        color: #ffffff;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: background 0.4s ease, transform 0.4s ease;
        margin-top: auto;
    }

    .fleet-cta:hover {
        background: linear-gradient(90deg, #008c92, #00ADB5);
        transform: translateY(-3px);
    }

    @media (max-width: 1024px) {
        .fleet-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .fleet-grid {
            grid-template-columns: 1fr;
        }

        .fleet-heading {
            font-size: 40px;
        }

        .fleet-tagline {
            font-size: 18px;
        }
    }
        /*Benifit */




          #benefits {
            padding: 100px 20px;
            background: linear-gradient(135deg, #e6f7f8 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        #benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 173, 181, 0.1) 0%, transparent 70%);
            animation: pulseBackground 5s infinite ease-in-out;
            z-index: 0;
        }

        #benefits::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%2300ADB5" fill-opacity="0.05" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,176C672,160,768,160,864,176C960,192,1056,224,1152,240C1248,256,1344,256,1392,256L1440,256V320H1392C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320H0V160Z"%3E%3C/path%3E%3C/svg%3E') repeat-x bottom;
            animation: waveAnimation 20s linear infinite;
            z-index: 0;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-subheading {
            font-size: 14px;
            color: #00ADB5;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .benefits-heading {
            font-size: 42px;
            font-weight: 800;
            color: #212529;
            margin-bottom: 80px;
        }

        .benefits-layout {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        .benefits-image {
            max-width: 650px;
            width: 100%;
            height: auto;
            z-index: 2;
            position: relative;
        }

        .benefit-box {
            position: absolute;
            max-width: 250px;
            padding: 25px;
            border-radius: 20px;
            transition: transform 0.3s ease;
            text-align: left;
            z-index: 1;
            background: transparent;
        }

        .benefit-box:hover {
            transform: scale(1.05);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #00ADB5;
            border-radius: 50%;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-title {
            font-size: 22px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }

        .benefit-desc {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Desktop Positioning for Unique Circular Feel */
        .benefit-top-left {
            top: 0;
            left: 0;
            transform: translate(-20%, -20%);
        }

        .benefit-bottom-left {
            bottom: 0;
            left: 0;
            transform: translate(-20%, 20%);
        }

        .benefit-top-right {
            top: 0;
            right: 0;
            transform: translate(20%, -20%);
        }

        .benefit-bottom-right {
            bottom: 0;
            right: 0;
            transform: translate(20%, 20%);
        }

        @keyframes pulseBackground {
            0% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
            100% { opacity: 0.5; transform: scale(1); }
        }

        @keyframes waveAnimation {
            0% { background-position: 0 bottom; }
            100% { background-position: 1440px bottom; }
        }

        @keyframes floatCar {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @media (max-width: 1024px) {
            .benefit-top-left { left: -50px; }
            .benefit-bottom-left { left: -50px; }
            .benefit-top-right { right: -50px; }
            .benefit-bottom-right { right: -50px; }
        }

        @media (max-width: 768px) {
            .benefits-layout {
                flex-direction: column;
                min-height: auto;
            }

            .benefits-image {
                margin-bottom: 50px;
            }

            .benefit-box {
                position: static;
                max-width: 100%;
                margin-bottom: 40px;
                transform: none;
            }

            .benefits-heading {
                font-size: 36px;
            }
        }



  :root {
      --primary: #00ADB5;
      --dark: #1a2e44;
      --glass: rgba(255, 255, 255, 0.85);
    }

    /* Section */
    #routes {
      padding: 80px 0;
      background: linear-gradient(135deg, #f6fbfd 0%, #ffffff 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .routes-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .routes-subheading {
      font-size: 13px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 8px;
      font-weight: 700;
    }
    .routes-heading {
      font-size: 40px;
      margin-bottom: 28px;
      color: var(--dark);
      font-weight: 800;
    }

    /* Controls wrapper */
    .routes-controls {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      position: relative;
    }

    .nav-btn {
      background: transparent;
      border: none;
      font-size: 34px;
      color: var(--primary);
      width: 48px;
      height: 48px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      transition: background .18s, transform .12s, opacity .18s;
    }
    .nav-btn:hover {
      background: rgba(0, 0, 0, 0.04);
      transform: translateY(-2px);
    }
    .nav-btn:active {
      transform: translateY(0);
    }
    .nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* Slider */
    .routes-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 18px 12px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      width: calc(100% - 120px);
      scroll-padding: 12px;
    }
    .routes-slider::-webkit-scrollbar {
      display: none;
    }

    /* Card */
    .route-card {
      flex: 0 0 320px;
      background: var(--glass);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(16, 30, 40, 0.08);
      transform-origin: center center;
      transition: transform .32s cubic-bezier(.2, .9, .3, 1), box-shadow .25s;
      scroll-snap-align: center;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.04);
    }
    .route-card.center {
      transform: scale(1.05);
      box-shadow: 0 28px 60px rgba(16, 30, 40, 0.12);
    }

    .route-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      filter: brightness(0.85);
      transition: filter .3s;
    }
    .route-card:hover .route-image {
      filter: brightness(1);
    }

    .route-body {
      padding: 16px 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .route-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
    .route-title h3 {
      margin: 0;
      font-size: 18px;
      color: var(--dark);
      font-weight: 700;
      text-align: left;
    }
    .route-sub {
      font-size: 13px;
      color: #58606a;
      margin-top: 4px;
    }

    /* price bar */
    .price-row {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }
    .price-badge {
      background: linear-gradient(180deg, #ffffff, #f7fbfc);
      padding: 8px 12px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid rgba(0, 173, 181, 0.08);
      box-shadow: 0 6px 18px rgba(0, 173, 181, 0.06);
      transition: transform .2s;
    }
    .price-badge:hover {
      transform: translateY(-2px);
    }
    .price-label {
      font-size: 12px;
      color: #6b7785;
      font-weight: 600;
      display: block;
      text-align: left;
      margin-bottom: 4px;
    }

    /* CTA row */
    .cta-row {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 6px;
    }
    .call-button {
      flex: 1;
      display: inline-block;
      padding: 10px 14px;
      border-radius: 10px;
      text-decoration: none;
      text-align: center;
      font-weight: 700;
      background: linear-gradient(90deg, var(--primary), #008c92);
      color: white;
      border: none;
      cursor: pointer;
      transition: transform .2s, background .2s;
    }
    .call-button:hover {
      transform: translateY(-2px);
      background: linear-gradient(90deg, #008c92, var(--primary));
    }
    .detail-btn {
      background: transparent;
      border: 1px solid rgba(10, 20, 30, 0.06);
      padding: 9px 12px;
      border-radius: 10px;
      font-weight: 700;
      color: var(--dark);
      transition: background .2s, transform .2s;
    }
    .detail-btn:hover {
      background: rgba(0, 173, 181, 0.05);
      transform: translateY(-2px);
    }

    /* small meta row */
    .meta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #58606a;
    }

    /* responsive */
    @media (max-width: 1024px) {
      .routes-heading { font-size: 34px; }
      .routes-slider { width: 100%; }
    }
    @media (max-width: 768px) {
      .routes-controls { gap: 8px; }
      .nav-btn { display: none; }
      .route-card { flex: 0 0 85%; }
    }

    /* Focus styles for accessibility */
    .route-card:focus-within { outline: 3px solid rgba(0, 173, 181, 0.12); }
    .call-button:focus, .detail-btn:focus, .nav-btn:focus { outline: 3px solid rgba(0, 173, 181, 0.14); }


        /*Cutomer Review*/

 #testimonials {
      padding: 120px 20px;
      background: linear-gradient(135deg, #e3f0f5 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    #testimonials::before {
      content: '';
      position: absolute;
      top: -20%;
      left: -20%;
      width: 140%;
      height: 140%;
      background: radial-gradient(circle at 60% 40%, rgba(0, 173, 181, 0.08) 0%, transparent 70%);
      animation: radialGlow 10s infinite ease-in-out;
      z-index: 0;
    }

    @keyframes radialGlow {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .testimonials-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .testimonials-subheading {
      font-size: 16px;
      color: #00ADB5;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .testimonials-heading {
      font-size: 50px;
      font-weight: 800;
      color: #1a2e44;
      margin-bottom: 60px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    @media (max-width: 768px) {
      .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0;
        scrollbar-width: none;
      }

      .testimonials-grid::-webkit-scrollbar {
        display: none;
      }

      .testimonial-card {
        flex: 0 0 85%;
        max-width: 85%;
      }
    }

    .testimonial-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(0, 173, 181, 0.2);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 173, 181, 0.3);
    }

    /* Car Image Box */
    .map-route {
      width: 100%;
      height: 150px;
      border-radius: 15px;
      margin-bottom: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
    }

    .map-route img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 15px;
      object-fit: cover;
    }

    .quote {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1a2e44;
      margin-bottom: 15px;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }

    .quote::before {
      content: '“';
      font-size: 2rem;
      color: #00ADB5;
      position: absolute;
      left: -20px;
      top: -10px;
    }

    .customer-info {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .avatar {
      width: 40px;
      height: 40px;
      background: #00ADB5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      margin-right: 10px;
    }

    .customer-name {
      font-size: 1rem;
      font-weight: 500;
    }

    .driver-info {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 5px;
    }

    .driver-info span {
      color: #00ADB5;
      font-weight: 600;
    }

    .rating {
      color: #f4c430;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .tag {
      background: #00ADB5;
      color: #ffffff;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 500;
    }

        /*Divider*/



        #statistics {
            position: relative;
            width: 100%;
            padding: 60px 20px;
            background-color: #1c1c1c; /* Dark charcoal background */
            overflow: hidden;
            text-align: center;
        }

        /* Carbon fiber texture using repeating linear gradients */
        #statistics::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                repeating-linear-gradient(0deg, #222, #222 1px, #1c1c1c 1px, #1c1c1c 2px),
                repeating-linear-gradient(90deg, #222, #222 1px, #1c1c1c 1px, #1c1c1c 2px),
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
            opacity: 0.5;
            z-index: 1;
        }

        /* Scanner glow animation */
        #statistics::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 300%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 173, 181, 0.3), transparent);
            filter: blur(50px);
            animation: scannerGlow 5s linear infinite;
            z-index: 2;
        }

        .statistics-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 20px;
        }

        .stat-block {
            flex: 1;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .stat-block:hover {
            transform: translateY(-5px);
            opacity: 1.1; /* Slight brighten */
        }

        .stat-icon {
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #00ADB5; /* Electric blue accent */
            margin-bottom: 5px;
        }

        .stat-desc {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #bbbbbb;
        }

        .separator {
            width: 1px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        @keyframes scannerGlow {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @media (max-width: 768px) {
            .statistics-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .separator {
                display: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-desc {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            #statistics {
                padding: 40px 10px;
            }

            .stat-number {
                font-size: 30px;
            }
        }





/*.ticker-section*/

.ticker-section {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #00ADB5, #008c92);
    padding: 20px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-content a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.ticker-content a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.ticker-content span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-content span::before {
    content: '•';
    color: #ffffff;
    font-size: 24px;
    opacity: 0.8;
}

/* Duplicate content for seamless loop */
.ticker-wrapper:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker-content {
        font-size: 16px;
        gap: 30px;
    }

    .ticker-section {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .ticker-content {
        font-size: 14px;
        gap: 20px;
    }
}

        /*CTA*/


    .cta-section {
      position: relative;
      max-width: 1100px;
      margin: 100px auto;
      background: linear-gradient(135deg, #00ADB5, #007f84);
      border-radius: 30px;
      padding: 70px 50px;
      color: white;
      overflow: visible; /* keep overlap */
      min-height: 420px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    /* Decorative Vector Effects */
    .cta-section::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 70%);
      border-radius: 50%;
      z-index: 1;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 250px;
      height: 250px;
      background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 70%);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: 1;
    }

    /* Car Image */
    .car-image {
      position: absolute;
      bottom: -70px; /* overlap effect */
      left: -60px;
      width: 700px;
      height: auto;
      z-index: 2;
      transition: transform 0.3s ease-out;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    }

    /* Text Content */
    .content-container {
      position: relative;
      z-index: 3;
      text-align: right;
      margin-left: 50%;
      padding-right: 20px;
    }
    
    .content-container p.small-text {
      font-size: 1rem;
      margin: 0;
      font-weight: 600;
      letter-spacing: 2px;
      opacity: 0.95;
      text-transform: uppercase;
    }

    .content-container h2 {
      font-size: 3.2rem;
      margin: 10px 0;
      font-weight: 700;
      line-height: 1.2;
      text-shadow: 0 3px 10px rgba(0,0,0,0.25);
    }

    .content-container p.guide-text {
      font-size: 1.15rem;
      margin: 0 0 35px;
      line-height: 1.6;
      opacity: 0.95;
      font-weight: 400;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 40px;
      background-image: linear-gradient(45deg, #ffffff, #ffffff);
      color:  #00ADB5;
      text-decoration: none;
      font-weight: bold;
      border-radius: 50px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 15px rgba(0, 173, 181, 0.4);
    }
    .cta-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 173, 181, 0.6);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cta-section {
        position: relative;
        max-width: 100%; /* Full width on mobile */
        margin: 60px 0; /* Remove left/right margins for full width */  
        border-radius: 0; /* No border radius on sides for edge-to-edge */
        padding: 50px 20px;
        overflow: hidden; /* Prevent horizontal scroll */
        text-align: left;
      }

      .content-container {
        margin-left: 0;
        padding-right: 0;
        text-align: left;
        margin-top: 25px;
      }

      .car-image {
        position: relative;
        width: 90%;
        max-width: 90%;
        left: 0;
        bottom: -40px;
        margin: 0 auto;
        display: block;
      }

      .content-container h2 {
        font-size: 2.2rem;
      }
    }


    /*Footer */

footer {
  background: linear-gradient(135deg, #00ADB5, #005f6b, #003d46);
  padding: 60px 40px;
  color: #ffffff;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  z-index: 1;
}

.footer-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 250px;
  line-height: 1.6;
  text-align: center;
}

.footer-brand::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 100px;
  background: url('image/maruti_ertiga-removebg-preview.png') no-repeat;
  background-size: contain;
  opacity: 0.15;
  z-index: -1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-links ul li a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-contact .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer-contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-contact .social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-brand::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-brand img {
    max-width: 120px;
  }

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

















/*About us page */





        .about-hero-section {
            position: relative;
            width: 100%;
            min-height: 80vh;
            background: url('../image/about us 2.jpg') no-repeat center center/cover;
            display: flex;
            align-items: flex-start;
            padding: 100px 40px 40px;
            overflow: hidden;
        }

        /* Overlay for readability */
        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 173, 181, 0.6), rgba(0, 127, 132, 0.8));
            z-index: 1;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .about-hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            animation: about-hero-fadeInUp 1s ease-out;
            }

        .about-hero-content p {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.8;
            animation: about-hero-fadeInUp 1.2s ease-out;
        }

        .about-hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #00ADB5;
            font-weight: 600;
            text-decoration: none;
            border-radius: 35px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            animation: about-hero-fadeInUp 1.4s ease-out;

        }

        .about-hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            background: #007f84;
            color: #ffffff;
        }

        /* Unique animated particle effect */
        .about-hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2%, transparent 10%) 0 0, 
                        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2%, transparent 10%) 50px 50px, 
                        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2%, transparent 10%) 100px 100px;
            background-size: 150px 150px;
            animation: about-hero-particleMove 15s linear infinite;
            z-index: 1;
        }

        @keyframes about-hero-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes about-hero-particleMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, 50px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero-section {
                padding: 80px 20px 20px;
                min-height: 80vh;
            }

            .about-hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero-content p {
                font-size: 1rem;
            }

            .about-hero-btn {
                padding: 12px 30px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 60px 15px 15px;
                min-height: 70vh;
            }

            .about-hero-content h1 {
                font-size: 2rem;
            }

            .about-hero-content p {
                font-size: 0.9rem;
            }

            .about-hero-btn {
                padding: 10px 25px;
            }
        }




        /*About compay*/



                /* About Us Section */
        .about-us-heartbeat {
            max-width: 1200px;
            margin: 80px auto;
            padding: 40px;
            background: linear-gradient(135deg, #00ADB5, #007f84);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        /* Subtle pulse effect */
        .about-us-heartbeat::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            opacity: 0.3;
            animation: about-us-pulse 8s infinite ease-in-out;
            z-index: -1;
        }

        .about-us-header {
            text-align: center;
            color: #ffffff;
            margin-bottom: 50px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
        }

        .about-us-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        }

        .about-us-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            color: #ffffff;
        }

        .about-us-narrative {
            padding: 20px;
        }

        .about-us-narrative p {
            font-size: 1rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .about-us-narrative p:last-child {
            margin-bottom: 0;
        }

        .about-us-highlights {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-us-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .about-us-highlight:hover {
            transform: translateY(-5px);
        }

        .about-us-highlight h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .about-us-highlight p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .about-us-tagline {
            text-align: center;
            margin-top: 40px;
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        @keyframes about-us-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-us-heartbeat {
                margin: 50px 20px;
                padding: 30px;
            }

            .about-us-header h2 {
                font-size: 2.2rem;
            }

            .about-us-story {
                grid-template-columns: 1fr;
            }

            .about-us-highlights {
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            .about-us-heartbeat {
                margin: 30px 10px;
                padding: 20px;
            }

            .about-us-header h2 {
                font-size: 1.8rem;
            }

            .about-us-narrative p {
                font-size: 0.9rem;
            }

            .about-us-highlight h3 {
                font-size: 1rem;
            }

            .about-us-highlight p {
                font-size: 0.85rem;
            }

            .about-us-tagline {
                font-size: 1.2rem;
            }
        }



        /*About contnet */


           :root {
      --brand-color: #00ADB5;
      --text-dark: #222;
      --text-light: #555;
      --bg-light: #f9f9f9;
    }

  

    section.about-us {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      gap: 40px;
      background: var(--bg-light);
    }

    /* Left: Image Grid */
    .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 15px;
      max-width: 450px;
      flex: 1;
      position: relative;
    }

    .about-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    /* Badge Overlay */
    .about-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--brand-color);
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      padding: 15px 25px;
      border-radius: 50%;
      border: 5px solid #fff;
      text-align: center;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    }

    /* Right: Text Content */
    .about-content {
      flex: 1;
      max-width: 550px;
      text-align: left;
    }

    .about-content small {
      display: block;
      color: var(--brand-color);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .about-content h2 {
      font-size: 32px;
      margin: 10px 0;
      font-weight: 700;
      color: var(--text-dark);
    }

    .about-content h2 span {
      color: var(--brand-color);
    }

    .about-content p {
      color: var(--text-light);
      margin-bottom: 25px;
      line-height: 1.6;
    }

    /* Stats */
    .about-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-bottom: 25px;
    }

    .about-stats div {
      flex: 1;
      min-width: 120px;
    }

    .about-stats h3 {
      color: var(--brand-color);
      font-size: 24px;
      margin: 0;
    }

    .about-stats p {
      margin: 5px 0 0;
      font-size: 14px;
      color: var(--text-light);
    }

    /* Signature */
    .signature {
      font-family: 'Brush Script MT', cursive;
      font-size: 22px;
      margin-bottom: 5px;
      color: var(--text-dark);
    }

    .designation {
      font-size: 14px;
      color: var(--text-light);
    }

    /* Responsive */
    @media (max-width: 992px) {
      section.about-us {
        flex-direction: column;
        text-align: center;
      }

      .about-images {
        max-width: 350px;
      }

      .about-content {
        max-width: 100%;
      }

      .about-stats {
        justify-content: center;
      }
    }



    /*Vision and mission*/

 :root{
    --brand: #00ADB5;
    --muted: #6b7280;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --max-width: 1150px;
  }

  /* Section container */
  #vision-mission-timeline {
    padding: 56px 20px;
    background: var(--bg);
    color: #0f1724;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  .vision_container{
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .vision_section-header{
    text-align: center;
    margin-bottom: 36px;
  }

  .vision_section-header .vision_eyebrow{
    color: var(--brand);
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.6px;
    font-size: 13px;
  }

  .vision_section-header h2{
    font-size: 28px;
    margin: 0 0 8px;
    color: #0b1220;
  }

  .vision_section-header .vision_lead{
    color: var(--muted);
    margin: 0 auto;
    max-width: 720px;
  }

  /* Timeline layout */
  .vision_timeline{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  /* central line */
  .vision_timeline-line{
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
    border-radius: 2px;
    transform: translateX(-50%);
    display: none; /* visible on desktop where layout changes */
  }

  .vision_timeline-item{
    position: relative;
    padding-left: 68px;
  }

  .vision_tm-card{
    background: var(--card-bg);
    border-radius: 12px;
    padding: 18px 18px;
    box-shadow: 0 8px 20px rgba(2,6,23,0.06);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform .5s cubic-bezier(.2,.9,.2,1), opacity .5s ease;
    opacity: 0;
    transform: translateY(18px);
  }

  .vision_tm-card.in-view{
    opacity: 1;
    transform: translateY(0);
  }

  .vision_tm-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0,173,181,0.08), rgba(0,173,181,0.06));
    color: var(--brand);
    flex-shrink: 0;
  }

  .vision_tm-content h3{
    margin: 0 0 6px;
    font-size: 18px;
    color: #06202a;
  }

  .vision_tm-tagline{
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--brand);
  }

  .vision_tm-text{
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
  }

  /* Desktop: horizontal centered timeline with items alternating sides */
  @media (min-width: 900px) {
    .vision_timeline{
      grid-template-columns: 1fr;
      padding: 40px 20px;
    }

    .vision_timeline-line{
      display: block;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      background: linear-gradient(180deg, rgba(0,173,181,0.9), rgba(0,173,181,0.2));
      top: 40px;
      bottom: 40px;
    }

    .vision_timeline-item{
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      align-items: start;
      gap: 18px;
    }

    /* left item: vision */
    .vision_timeline-item[data-when="vision"] .vision_tm-card{
      grid-column: 1 / 2;
      justify-self: end;
      max-width: 520px;
      text-align: left;
    }
    .vision_timeline-item[data-when="vision"] .vision_tm-icon{
      grid-column: 2 / 3;
      transform: translateY(12px);
    }

    /* right item: mission */
    .vision_timeline-item[data-when="mission"] .vision_tm-card{
      grid-column: 3 / 4;
      justify-self: start;
      max-width: 520px;
      text-align: left;
    }
    .vision_timeline-item[data-when="mission"] .vision_tm-icon{
      grid-column: 2 / 3;
      transform: translateY(12px);
    }
  }

  /* small screen adjustments */
  @media (max-width: 640px){
    #vision-mission-timeline { padding: 36px 16px; }
    .vision_tm-card { padding: 16px; }
    .vision_tm-icon { width: 44px; height: 44px; min-width: 44px; }
    .vision_section-header h2 { font-size: 22px; }
  }




  /*why Choosiee us */

/* Why Choose Us Section */
.why_content-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.why_content-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why_content-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ADB5 ;
  margin-bottom: 10px;
}

.why_content-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.why_content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why_content-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why_content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why_content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 173, 181, 0.2), rgba(0, 0, 0, 0.7));
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.why_content-body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-align: left;
}

.why_content-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why_content-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e6e6e6;
}

/* Hover Effects */
.why_content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 173, 181, 0.4);
}

.why_content-card:hover img {
  transform: scale(1.1);
}

.why_content-card:hover .why_content-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .why_content-heading {
    font-size: 2rem;
  }

  .why_content-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .why_content-body h3 {
    font-size: 1.2rem;
  }

  .why_content-body p {
    font-size: 0.9rem;
  }
}





/*FAQ*/



 :root {
      --primary: #00ADB5;
      --dark: #222831;
      --light: #ffffff;
      --grey: #f5f5f5;
    }

    body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: var(--light);
      color: var(--dark);
    }

    .faq-section {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 3rem 5%;
      justify-content: space-between;
      align-items: flex-start;
    }

    .faq-left {
      flex: 1 1 55%;
      min-width: 300px;
    }

    .faq-left h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .faq-left h2::after {
      content: "";
      display: block;
      width: 60%;
      height: 3px;
      background: var(--primary);
      margin-top: 0.3rem;
      border-radius: 2px;
    }

    .accordion {
      background: var(--light);
      border: 1px solid #ddd;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .accordion button {
      width: 100%;
      text-align: left;
      padding: 1rem 1.2rem;
      font-size: 1rem;
      font-weight: 500;
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .accordion button:hover {
      background: var(--grey);
    }

    .accordion button .icon {
      font-size: 1.2rem;
      color: var(--primary);
      transition: transform 0.3s;
    }

    .accordion button.active .icon {
      transform: rotate(45deg);
    }

    .panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 1.2rem;
      background: #fafafa;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .panel.open {
      padding: 1rem 1.2rem;
      max-height: 400px;
    }

    /* Right Section */
    .faq-right {
      flex: 1 1 35%;
      min-width: 280px;
      background: var(--grey);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    }

    .faq-right h3 {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
      color: var(--primary);
    }

    .faq-right p {
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
    }

    .faq-right input,
    .faq-right textarea {
      width: 100%;
      padding: 0.9rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      margin-bottom: 1rem;
      font-family: inherit;
      font-size: 0.95rem;
    }

    .faq-right button {
      background: var(--primary);
      border: none;
      color: var(--light);
      padding: 0.9rem 2rem;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .faq-right button:hover {
      background: #0198a0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-section {
        flex-direction: column;
      }
    }
















    /*Service */



        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

       
       

        .service_hero {
            position: relative;
            width: 100%;
            min-height: 85vh;
            background: url('../image/Gemini_Generated_Image_coji82coji82coji.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 80px 40px 40px;
            overflow: hidden;
        }

        .service_hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 173, 181, 0.6), rgba(0, 127, 132, 0.8));
            z-index: 1;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 20px;
            text-align: left;
        }

        .about-hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            animation: about-hero-fadeInUp 1s ease-out, about-hero-glow 2s infinite alternate;
        }

        .about-hero-content p {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.8;
            animation: about-hero-fadeInUp 1.2s ease-out;
        }

        .about-hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #00ADB5;
            font-weight: 600;
            text-decoration: none;
            border-radius: 35px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            animation: about-hero-fadeInUp 1.4s ease-out, about-hero-pulse 1.5s infinite ease-in-out;
        }

        .about-hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            background: #007f84;
            color: #ffffff;
        }

        .service_hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2%, transparent 10%) 0 0, 
                        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2%, transparent 10%) 60px 60px, 
                        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2%, transparent 10%) 120px 120px;
            background-size: 180px 180px;
            animation: about-hero-particleMove 12s linear infinite;
            z-index: 1;
            opacity: 0.5;
        }

        @keyframes about-hero-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes about-hero-particleMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-60px, 60px); }
        }

        @keyframes about-hero-glow {
            0% { text-shadow: 0 4px 15px rgba(0, 173, 181, 0.3); }
            100% { text-shadow: 0 6px 25px rgba(0, 173, 181, 0.5); }
        }

        @keyframes about-hero-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .service_hero {
                padding: 80px 20px 20px;
                min-height: 80vh;
            }

            .about-hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero-content p {
                font-size: 1rem;
            }

            .about-hero-btn {
                padding: 12px 30px;
            }
        }

        @media (max-width: 480px) {
            .service_hero {
                padding: 60px 15px 15px;
                min-height: 70vh;
            }

            .about-hero-content h1 {
                font-size: 2rem;
            }

            .about-hero-content p {
                font-size: 0.9rem;
            }

            .about-hero-btn {
                padding: 10px 25px;
            }
        }




        /*Our Service*/



        :root{
  --primary: #00ADB5;
  --accent-dark: #073B3A;
  --muted: #5f6c72;
  --card-bg: #ffffff;
  --page-bg: #f5f7f7;
  --radius: 14px;
  --gap: 24px;
  --shadow: 0 6px 18px rgba(7,59,58,0.06);
  --trans: 180ms;
  --font: 'Poppins', sans-serif;
}

body{ font-family: var(--font); }

.service_conten{
  max-width: 1200px;
  margin: 50px auto;
  padding: 32px;
  background: var(--page-bg);
  border-radius: var(--radius);
}

.sc-header { margin-bottom:32px; text-align:left; }
.sc-sub { color: var(--primary); font-weight:600; margin:0; font-size:1rem; text-transform:uppercase; letter-spacing:1px; }
.sc-title { margin:6px 0 0; font-size:2rem; color:var(--accent-dark); font-weight:700; line-height:1.3; }

.sc-grid{
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(1, 1fr);
}
@media(min-width:720px){
  .sc-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px){
  .sc-grid{ grid-template-columns: repeat(3, 1fr); }
}

.sc-card{
  background: var(--card-bg);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition: transform var(--trans) ease, box-shadow var(--trans) ease;
}
.sc-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(7,59,58,0.09);
}

.sc-icon{
  width:70px;
  height:70px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:var(--primary);
  background: linear-gradient(180deg, rgba(0,173,181,0.08), rgba(0,173,181,0.03));
}
.sc-icon svg{ width:36px; height:36px; }

.sc-title-card{ margin:0; font-size:1.15rem; color:var(--accent-dark); font-weight:600; }
.sc-desc{ margin-top:10px; color:var(--muted); line-height:1.6; font-size:0.97rem; }






/*City We SERve*/


  /* Cities Section */
    section#cities {
      padding: 100px 20px;
      text-align: center;
      background: linear-gradient(135deg, #e6f0fa 0%, #f1f5f9 100%);
      position: relative;
      overflow: hidden;
    }
    section#cities h2 {
      font-size: 3.2rem;
      font-weight: 700;
      color: #00ADB5;
      margin-bottom: 25px;
      letter-spacing: -1px;
      position: relative;
      z-index: 1;
      animation: fadeIn 1s ease-in-out;
    }
    section#cities p {
      max-width: 800px;
      margin: 0 auto 50px;
      font-size: 1.2rem;
      font-weight: 500;
      color: #4a5568;
      line-height: 1.8;
      animation: fadeIn 1.2s ease-in-out;
    }
    #map {
      height: 650px;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      z-index: 1;
    }
    #map:hover {
      transform: translateY(-8px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    }
    /* Custom Popup Styling */
    .leaflet-popup-content-wrapper {
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
    .leaflet-popup-content {
      margin: 12px 16px;
      font-size: 16px;
      font-weight: 600;
      color: #00ADB5;
    }
    .leaflet-container a {
      color: #00ADB5;
      text-decoration: none;
      font-weight: 500;
    }
    .leaflet-container a:hover {
      text-decoration: underline;
    }
    /* Custom Marker */
    .custom-marker {
      filter: hue-rotate(140deg) saturate(2.2) brightness(1.15);
      transition: transform 0.3s ease;
    }
    .custom-marker:hover {
      transform: scale(1.3);
    }
    /* Animation for Heading and Paragraph */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /* Responsive Design */
    @media (max-width: 768px) {
      section#cities {
        padding: 60px 15px;
      }
      section#cities h2 {
        font-size: 2.2rem;
      }
      section#cities p {
        font-size: 1rem;
        max-width: 90%;
      }
      #map {
        height: 450px;
      }
    }



    /*One way taxi service*/



    
        .route-booking {
            max-width: 1200px;
            margin: 80px auto;
            padding: 50px;
            background: #ffffff;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        .route-booking::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #00ADB5 0%, rgba(0, 173, 181, 0.1) 70%);
            border-radius: 50%;
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 6s infinite alternate;
        }

        .route-booking h2 {
            font-size: 2.8rem;
            color: #007f84;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .booking-form {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .booking-form select {
            flex: 1;
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 1.1rem;
            color: #333;
            background: #fff;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .booking-form select:focus {
            border-color: #00ADB5;
            outline: none;
            box-shadow: 0 0 10px rgba(0, 173, 181, 0.2);
        }

        .route-details {
            display: none;
            background: #f9fafb;
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #00ADB5;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            animation: slideDown 0.5s ease-out;
        }

        .route-details.active {
            display: block;
        }

        .route-details img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .route-details h3 {
            font-size: 1.8rem;
            color: #007f84;
            margin-bottom: 15px;
        }

        .price-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .price-card {
            background: #ffffff;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-5px);
        }

        .price-card h4 {
            font-size: 1.2rem;
            color: #00ADB5;
            margin-bottom: 10px;
        }

        .price-card .list-price {
            font-size: 1.1rem;
            color: #666;
            text-decoration: line-through;
            margin-bottom: 5px;
        }

        .price-card .discounted-price {
            font-size: 1.3rem;
            color: #007f84;
            font-weight: 600;
        }

        .price-card .discount {
            font-size: 0.9rem;
            color: #00ADB5;
            margin-top: 5px;
        }

        .book-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #00ADB5, #007f84);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 20px;
            text-decoration: none;
            text-align: center;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 173, 181, 0.4);
        }

        .contact-info {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes textGlow {
            0% { text-shadow: 0 2px 10px rgba(0, 173, 181, 0.3); }
            100% { text-shadow: 0 4px 20px rgba(0, 173, 181, 0.5); }
        }

        @keyframes glowPulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        @media (max-width: 768px) {
            .route-booking {
                margin: 50px 20px;
                padding: 30px;
            }

            .booking-form {
                flex-direction: column;
            }

            .route-details img {
                height: 150px;
            }

            .price-table {
                grid-template-columns: 1fr;
            }

            .route-booking h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .route-booking {
                margin: 30px 10px;
                padding: 20px;
            }

            .route-booking h2 {
                font-size: 1.8rem;
            }

            .booking-form select {
                padding: 12px;
                font-size: 1rem;
            }

            .route-details h3 {
                font-size: 1.5rem;
            }

            .price-card h4 {
                font-size: 1.1rem;
            }

            .price-card .discounted-price {
                font-size: 1.2rem;
            }

            .book-btn {
                padding: 10px;
                font-size: 1rem;
            }
        }




        /*bLOG */


        
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #007f84;
  --accent: #ffc61a;
  --dark: #202025;
  --light: #ffffff;
  --gray: #9e9e9e;
  --transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  background: var(--light);
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Container & Grid */
.container {
  display: flex;
  padding: 2rem;
  gap: 2rem;
}
.main-content {
  flex: 2.5;
}
.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: 1.8rem;
  color: var(--dark);
}
.category-filter .filter-btn {
  background: transparent;
  border: 2px solid var(--gray);
  color: var(--gray);
  padding: 0.3rem 0.8rem;
  margin-left: 0.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

/* Blog Grid */
.blog-posts {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}
.blog-card {
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.blog-image {
  position: relative;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  display: block;
  height: 200px; /* Improved image sizing for consistency */
  object-fit: cover; /* Better image fitting */
}
.blog-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
}
.category-tag {
  background: var(--accent);
  color: var(--dark);
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  font-size: 0.8rem;
}
.blog-content {
  padding: 1rem;
}
.blog-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.read-more-btn {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition);
}
.read-more-btn i {
  margin-left: 0.3rem;
}
.read-more-btn:hover {
  color: var(--dark);
}

/* Load More */
.load-more-container {
  text-align: center;
  margin: 2rem 0;
}
.load-more-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.load-more-btn:hover {
  background: var(--dark);
}

/* Sidebar Widgets */
.widget {
  background: var(--light);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.widget h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.search-widget .search-box {
  display: flex;
}
.search-widget input {
  flex: 1;
  padding: 0.5rem;
  border: 2px solid var(--gray);
  border-radius: 5px 0 0 5px;
  outline: none;
}
.search-widget button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 0 0.8rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.fare-calculator .calculator-form input,
.fare-calculator .calculator-form select {
  width: 100%;
  padding: 0.5rem;
  border: 2px solid var(--gray);
  border-radius: 5px;
  margin-bottom: 0.5rem;
  outline: none;
}
.calculate-btn {
  width: 100%;
  background: var(--primary);
  color: var(--light);
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.fare-result {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
}
.booking-widget .whatsapp-btn,
.booking-widget .call-btn {
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--light);
  padding: 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: background var(--transition);
}
.booking-widget .call-btn {
  background: var(--dark);
}
.booking-widget a i {
  margin-right: 0.5rem;
}
.booking-widget a:hover {
  opacity: 0.9;
}

/* Recent Posts */
.recent-post-list .recent-post-item {
  display: flex;
  margin-bottom: 0.8rem;
}
.post-thumb img {
  width: 60px;
  border-radius: 5px;
}
.post-info {
  margin-left: 0.8rem;
}
.post-info h4 {
  font-size: 0.9rem;
  color: var(--dark);
}
.post-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-item {
  display: none;
  animation: fadeIn 1s ease forwards;
}
.testimonial-item.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.rating i {
  color: var(--accent);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.testimonial-nav button {
  background: var(--gray);
  color: var(--light);
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-nav button:hover {
  background: var(--primary);
}

/* Categories Widget */
.category-list .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.category-item i {
  margin-right: 0.5rem;
  color: var(--primary);
}
.category-item:hover {
  color: var(--primary);
}


/*City page */



 :root {
            --color-background: #ffffff;
            --color-surface: #f8fafc;
            --color-text: #2d3748;
            --color-text-secondary: #4a5568;
            --color-primary: #007f84;
            --color-primary-hover: #006b70;
            --color-accent: #ffc61a;
            --color-accent-light: #ffd966;
            --color-border: #e2e8f0;
            --font-family-heading: 'Poppins', sans-serif;
            --font-family-base: 'Inter', sans-serif;
            --space-1: 8px;
            --space-2: 16px;
            --space-3: 24px;
            --space-4: 32px;
            --space-5: 48px;
            --radius-base: 12px;
            --shadow-sm: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-md: 0 8px 16px rgba(0,0,0,0.15);
        }
       
        .rajkot-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-2);
        }
        /* Header */
        .rajkot-header {
            background: var(--color-background);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            transition: transform 0.3s ease;
        }
        .rajkot-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-2) 0;
        }
        .rajkot-logo h1 {
            font-family: var(--font-family-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-primary);
        }
        .rajkot-nav {
            display: flex;
            gap: var(--space-4);
        }
        .rajkot-nav-link {
            font-family: var(--font-family-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text);
            position: relative;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        .rajkot-nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-accent);
        }
        .rajkot-nav-link.active {
            color: var(--color-primary);
        }
        .rajkot-header-actions .rajkot-btn {
            padding: var(--space-2) var(--space-3);
            font-family: var(--font-family-heading);
            font-weight: 600;
        }
        /* Buttons */
        .rajkot-btn {
            display: inline-flex; /* Removed 'Angstrom' */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-2) var(--space-3);
            border-radius: var(--radius-base);
            font-family: var(--font-family-heading);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .rajkot-btn--primary {
            background: var(--color-primary);
            color: #ffffff;
        }
        .rajkot-btn--primary:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .rajkot-btn--primary::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        .rajkot-btn--primary:hover::after {
            transform: translateX(0);
        }
        .rajkot-btn--secondary {
            border: 2px solid var(--color-accent);
            color: var(--color-primary);
            background: transparent;
        }
        .rajkot-btn--secondary:hover {
            background: var(--color-accent-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        /* Hero Section */
        .rajkot-hero {
            position: relative;
            padding: var(--space-5) 0;
            text-align: center;
            background: linear-gradient(rgba(0,127,132,0.9), rgba(0,127,132,0.7)), 
                        url('../image/R1.png') no-repeat center center/cover;
            color: #ffffff;
            min-height: 500px;
            display: flex;
            align-items: center;
        }
        .rajkot-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }
        .rajkot-hero-content {
            position: relative;
            z-index: 2;
        }
        .rajkot-hero h1 {
            font-family: var(--font-family-heading);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: var(--space-3);
            letter-spacing: 0.02em;
            animation: fadeInUp 0.6s ease-out;
            color: white;
        }
        .rajkot-hero-subtitle {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto var(--space-3);
            line-height: 1.7;
            opacity: 0.9;
            animation: fadeInUp 0.6s ease-out 0.2s;
            animation-fill-mode: both;
        }
        .rajkot-hero .rajkot-btn {
            margin-top: var(--space-2);
            animation: fadeInUp 0.6s ease-out 0.4s;
            animation-fill-mode: both;
        }
        /* Sections */
        .rajkot-section {
            padding: var(--space-5) 0;
            border-bottom: 1px solid var(--color-border);
        }
        .rajkot-section h2 {
            font-family: var(--font-family-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: var(--space-3);
        }
        .rajkot-section h3 {
            font-family: var(--font-family-heading);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: var(--space-2);
        }
        .rajkot-section p {
            font-size: 1.1rem;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-2);
            line-height: 1.7;
        }
        .rajkot-section a {
            color: var(--color-primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .rajkot-section a:hover {
            color: var(--color-accent);
        }
        /* Pricing Cards */
        .rajkot-pricing-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-3);
            margin: var(--space-4) 0;
        }
        .rajkot-pricing-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: var(--space-3);
            text-align: center;
            transition: all 0.3s ease;
        }
        .rajkot-pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .rajkot-pricing-card h3 {
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: var(--space-1);
        }
        .rajkot-pricing-card p {
            font-size: 1rem;
            color: var(--color-text-secondary);
        }
        .rajkot-pricing-note {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            font-style: italic;
            text-align: center;
            margin-top: var(--space-2);
        }
        /* Lists */
        .rajkot-attractions-list,
        .rajkot-outstation-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-2);
            margin: var(--space-3) 0;
        }
        .rajkot-attractions-list li,
        .rajkot-outstation-list li {
            background: var(--color-surface);
            padding: var(--space-2);
            border: 1px solid var(--color-primary);
            border-radius: var(--radius-base);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: var(--space-1);
            transition: transform 0.3s ease;
        }
        .rajkot-attractions-list li:hover,
        .rajkot-outstation-list li:hover {
            transform: translateY(-3px);
        }
        .rajkot-attractions-list li::before,
        .rajkot-outstation-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--color-accent);
        }
        /* Contact Info */
        .rajkot-contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-3);
            margin: var(--space-4) 0;
        }
        .rajkot-contact-item {
            background: var(--color-surface);
            padding: var(--space-3);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            text-align: center;
            transition: all 0.3s ease;
        }
        .rajkot-contact-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        /* FAQ Section */
        .rajkot-faq-item {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            margin-bottom: var(--space-2);
            padding: var(--space-3);
            transition: all 0.3s ease;
        }
        .rajkot-faq-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        /* Footer */
        .rajkot-footer {
            background: var(--color-surface);
            padding: var(--space-4) 0;
            border-top: 1px solid var(--color-border);
        }
        .rajkot-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-3);
            margin-bottom: var(--space-3);
        }
        .rajkot-footer-section h3,
        .rajkot-footer-section h4 {
            font-family: var(--font-family-heading);
            color: var(--color-primary);
        }
        .rajkot-footer-section ul li {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
        }
        .rajkot-footer-bottom {
            border-top: 1px solid var(--color-primary);
            padding-top: var(--space-2);
            text-align: center;
            font-size: 0.9rem;
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive Design */
        @media (max-width: 1024px) {
            .rajkot-header-content {
                flex-wrap: wrap;
                gap: var(--space-2);
            }
            .rajkot-nav {
                gap: var(--space-2);
                flex-wrap: wrap;
                justify-content: center;
            }
            .rajkot-hero {
                min-height: 400px;
            }
            .rajkot-hero h1 {
                font-size: 2.5rem;
            }
            .rajkot-hero-subtitle {
                font-size: 1.1rem;
            }
            .rajkot-section h2 {
                font-size: 2rem;
            }
            .rajkot-pricing-table {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .rajkot-header-content {
                flex-direction: column;
                text-align: center;
            }
            .rajkot-nav {
                flex-direction: column;
                align-items: center;
            }
            .rajkot-hero {
                min-height: 350px;
            }
            .rajkot-hero h1 {
                font-size: 2rem;
            }
            .rajkot-hero-subtitle {
                font-size: 1rem;
            }
            .rajkot-section h2 {
                font-size: 1.75rem;
            }
            .rajkot-section h3 {
                font-size: 1.5rem;
            }
            .rajkot-pricing-table {
                grid-template-columns: 1fr;
            }
            .rajkot-contact-info,
            .rajkot-footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .rajkot-hero {
                min-height: 300px;
            }
            .rajkot-hero h1 {
                font-size: 1.75rem;
            }
            .rajkot-hero-subtitle {
                font-size: 0.9rem;
            }
            .rajkot-section h2 {
                font-size: 1.5rem;
            }
            .rajkot-section h3 {
                font-size: 1.25rem;
            }
            .rajkot-btn {
                width: 100%;
                padding: var(--space-2);
            }
            .rajkot-pricing-card {
                padding: var(--space-2);
            }
            .rajkot-contact-item {
                padding: var(--space-2);
            }
        }