        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f5f7fa;
        }

        /* HERO SECTION */

        .hero {
            margin-top: 55px;
            height: 100vh;
            background: url('./images/home-img.jpg') center center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(0, 0, 0, .85),
                    rgba(0, 0, 0, .4));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        .hero-box {
            max-width: 700px;
        }

        .badge {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 50px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            backdrop-filter: blur(10px);
            margin-bottom: 25px;
        }

        .heading-wrap {
            height: 170px;
            position: relative;
        }

        .heading {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(40px);
            transition: .8s ease;
        }

        .heading.active {
            opacity: 1;
            transform: translateY(0);
        }

        .heading h1 {
            color: #fff;
            font-size: 65px;
            line-height: 1.1;
            font-weight: 700;
        }

        .hero p {
            color: #ddd;
            font-size: 18px;
            line-height: 1.8;
            max-width: 650px;
            margin: 20px 0 35px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: .4s;
        }

        .btn-primary {
            background: #0d6efd;
            color: #fff;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
        }

        .btn-outline {
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: #111;
        }

        .hero-stats {
            display: flex;
            gap: 25px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat {
            padding: 20px 25px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(15px);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .15);
            min-width: 170px;
        }

        .stat h3 {
            color: #fff;
            font-size: 28px;
        }

        .stat p {
            margin: 5px 0 0;
            color: #d9d9d9;
            font-size: 14px;
        }

        
        @media(max-width:768px) {
          .section-title h2 {
            font-size: 30px !important;}

            .hero {
                text-align: center;
            }

            .heading-wrap {
                height: 150px;
            }

            .heading h1 {
                font-size: 32px;
            }

            .btn-group {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
        }

        .nav-container {
            width: 90%;
            max-width: 1400px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo img {
            height: 65px;
        }

        .nav-links {
          margin: 0;
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            font-size: 15px;
            text-decoration: none;
            color: #111;
            font-weight: 600;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #0d6efd;
            transition: .4s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .call-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #111;
            font-weight: 600;
        }

        .call-btn i {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f5f7fa;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #0d6efd;
        }

        .login-btn {
            background: #153771;
            color: #fff;
            text-decoration: none;
            padding: 10px 28px;
            border-radius: 10px;
            font-weight: 600;
        }

        .login-btn:hover {
            background: #1a5ed4;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #111;
            border-radius: 10px;
        }

        /* Mobile */

        @media(max-width:992px) {
          .hero {
            margin-top: 92px;
            height: 35vh !important;}
          .nav-container {
         
            padding: 10px 0 !important;}
          .logo img {
            height: 55px;
        }

            .menu-toggle {
                display: flex;
            }

            .call-btn,
            .login-btn {
                display: none;
            }

            .nav-links {
              padding: 0;
                position: fixed;
                top: 90px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 90px);
                background: #fff;
                flex-direction: column;
                gap: 0;
                transition: .4s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, .08);
                padding-top: 20px;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 18px 25px;
                border-bottom: 1px solid #eee;
            }
        }

        .routes-section {
            padding: 100px 8%;
            background: #f8fafc;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title span {
            color: #0d6efd;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title h2 {
            font-size: 48px;
            margin: 15px 0;
            font-weight: 700;
        }

        .section-title p {
            color: #666;
        }

        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .route-card {
            position: relative;
            height: 330px;
            overflow: hidden;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        .route-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s;
        }

        .route-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, .9),
                    rgba(0, 0, 0, .15));
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }

        .route-content {
            width: 100%;
            transform: translateY(35px);
            transition: .5s;
        }

        .route-tag {
            display: inline-block;
            padding: 8px 18px;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px);
            color: #fff;
            border-radius: 30px;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .route-content h3 {
            color: #fff;
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .route-content a {
            display: inline-block;
            text-decoration: none;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            background: #153771;
            font-weight: 600;
            opacity: 0;
            transition: .4s;
        }

        .route-card:hover img {
            transform: scale(1.15);
        }

        .route-card:hover .route-content {
            transform: translateY(0);
        }

        .route-card:hover a {
            opacity: 1;
        }

        .route-card:hover {
            transform: translateY(-10px);
            transition: .4s;
            box-shadow: 0 25px 60px rgba(13, 110, 253, .25);
        }

        @media(max-width:768px) {
          .routes-section {
            padding: 40px 8% !important;}
          .values-section {
            padding: 40px 8% !important;}
          .packages-section {
            padding: 40px 8% !important;}
          .package-card {
            max-width: 343px !important;
            height: 340px !important;}

            .section-title h2 {
                font-size: 34px;
            }

            .route-card {
                height: 280px;
            }

            .route-content h3 {
                font-size: 22px;
            }

            .route-content {
                transform: none;
            }

            .route-content a {
                opacity: 1;
            }
        }

        .values-section {
            padding: 100px 8%;
            background: #f8fafc;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-heading span {
            color: #0d6efd;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .section-heading h2 {
            font-size: 48px;
            margin-top: 10px;
            color: #111827;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: .4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #f70206, #ffe14f)
        }

        .icon-box {
            width: 70px;
            height: 70px;
            margin: auto;
            border-radius: 50%;
            background: rgba(13, 110, 253, .1);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            margin-bottom: 25px;
            transition: .4s;
        }

        .value-card h3 {
            font-size: 25px;
            margin-bottom: 15px;
            color: #111827;
        }

        .value-card p {
            color: #6b7280;
            line-height: 1.8;
        }

        .value-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(13, 110, 253, .18);
        }

        .value-card:hover .icon-box {
            transform: rotateY(180deg);
            background: #062a5f;
        }

        @media(max-width:768px) {

            .section-heading h2 {
                font-size: 32px;
            }

            .value-card {
                padding: 25px 05px;
            }

            .value-card h3 {
                font-size: 22px;
            }
        }

        .packages-section {
            padding: 100px 8%;
            background: #f8fafc;
        }

        .package-wrapper {
            position: relative;
        }

        .package-slider {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        .package-slider::-webkit-scrollbar {
            display: none;
        }

        .package-card {
            max-width: 380px;
            height: 390px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            cursor: pointer;
        }

        .package-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s;
        }

        .package-content {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, .9),
                    rgba(0, 0, 0, .15));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .package-content span {
            color: #fff;
            background: rgba(255, 255, 255, .15);
            width: max-content;
            padding: 8px 18px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .package-content h3 {
            color: #fff;
            font-size: 29px;
            margin: 20px 0;
        }

        .package-content a {
            background: linear-gradient(90deg,
                    #153771,
                    #0e57b6);
            text-decoration: none;
           
            color: #fff;
            width: max-content;
            padding: 13px 30px;
            border-radius: 50px;
        }

        .package-card:hover img {
            transform: scale(1.1);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            border: none;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
            cursor: pointer;
            z-index: 10;
            font-size: 22px;
        }

        .prev {
            left: -25px;
        }

        .next {
            right: -25px;
        }

        .testimonial-slider-container {
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
           
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* Individual Testimonial Card */
        .testimonial-card {
            flex: 0 0 33.333%;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Speech Bubble Chat Style */
        .testimonial-bubble {
            box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    background-color: #cdd2d559;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;

        }
        .testimonial-bubble:hover {
    background-color: #e9eef159;

        }

        /* Triangle pointer for the bubble */
        .testimonial-bubble::after {
            content: '';
            position: absolute;
            bottom: -26px;
    left: 91%;
    border-width: 28px 34px 0 0;
            border-style: solid;
            border-color: #e4ecf4 transparent transparent transparent;
        }

        .testimonial-text {
            color: #342c2c;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Stars styling */
        .stars {
            color: #FFD700;
            font-size: 20px;

            letter-spacing: 2px;
        }

        /* User Profile Section */
        .user-info-container {
            display: flex;
            align-items: center;
            width: 100%;
            margin-top: 35px;
            padding-left: 10%;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #ff6b00;
            object-fit: cover;
            margin-right: 15px;
        }

        .user-details {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1rem;
        }

        .user-role {
            color: rgb(62, 60, 57);
            font-size: 0.85rem;
            margin-top: 2px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .testimonial-card {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 100%;
            }

            .testimonial-bubble::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .user-info-container {
                justify-content: center;
                padding-left: 0;
            }
        }
        .test-container{
      padding: 50px 50px;

        }

        .test-section {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .site-footer {
            background-color: #0b132a;
            /* Deep navy dark blue background */
            color: #a4b3cc;
            /* Muted text color */
            padding: 70px 4% 40px 4%;
            position: relative;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.2fr 1.4fr;
            gap: 40px;
        }

        /* Column Headers */
        .footer-col h3 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        /* Column 1: Brand & Socials */
        .footer-logo img{
        height: 60px;
        }

     

        .brand-text p {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #a4b3cc;
            margin-top: 3px;
        }

        .tagline {
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            background-color: #ffffff;
            color: #0b132a;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #ff4500;
            color: #ffffff;
        }

        /* Column 2: Information Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #a4b3cc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        /* Column 3: Newsletter Form */
        .newsletter-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .newsletter-form {
            position: relative;
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 6px;
            padding: 6px;
            width: 100%;
            max-width: 320px;
        }

        .newsletter-form input {
            border: none;
            outline: none;
            padding: 10px 15px;
            width: 100%;
            font-size: 0.9rem;
            color: #333;
        }

        .newsletter-form input::placeholder {
            color: #999;
        }

        .newsletter-btn {
            background-color: #0066cc;
            color: #ffffff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-btn:hover {
            background-color: #ff4500;
        }

        /* Column 4: Contact Us */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .contact-item i {
            color: #ff4500;
            /* Orange contact icons */
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .contact-item a {
            color: #a4b3cc;
            text-decoration: none;
        }

        .contact-item .white-text {
            color: #ffffff;
            font-weight: 600;
        }

       

        /* Responsive Breakdown */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .site-footer {
                padding-bottom: 80px;
            }
        }

.scroll-top{
  border: 1px solid #ff4500;
    position:fixed;
    right:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    color:#fff;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}
.phone-float,
.whatsapp-float{
    position:fixed;
    left:15px;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:23px;
    color:#fff;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.phone-float{
    bottom:95px;
    background:#0d6efd;
}

.whatsapp-float{
    bottom:30px;
    background:#25D366;
}

.scroll-top{
    bottom:35px;
    background:#111827;
}

.phone-float:hover,
.whatsapp-float:hover,
.scroll-top:hover{
    transform:translateY(-5px) scale(1.08);
}
.phone-float,
.whatsapp-float{
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(13,110,253,.5);
    }
    70%{
        box-shadow:0 0 0 15px rgba(13,110,253,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(13,110,253,0);
    }
}
