        :root {
            --primary: #008690;
            --primary-dark: #006a70;
            --gold: #D4AF37;
            --gold-light: #FFD700;
            --white: #ffffff;
            --black: #222222;
            --gray: #f8f8f8;
            --text: #444444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        a{
            text-decoration: none;
            color: var(--gold);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        @keyframes shine {
            0% { background-position: -100%; }
            100% { background-position: 100%; }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        body {
            background-color: var(--gray);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1.2rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            animation: fadeIn 0.8s ease-out;
            border-bottom: 2px solid var(--gold);
        }

        header.scrolled {
            padding: 0.8rem 5%;
            background: rgba(0, 134, 144, 0.98);
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 50px;
            transition: all 0.3s ease;
        }

        header.scrolled .logo img {
            height: 60px;
            animation: none;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
            position: relative;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .logo-text span {
            color: var(--gold);
            position: relative;
        }

        .logo-text span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .logo:hover .logo-text span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav.desktop-nav ul li {
            position: relative;
        }

        nav.desktop-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        nav.desktop-nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.4s ease;
        }

        nav.desktop-nav ul li a:hover::before {
            width: 100%;
        }

        nav.desktop-nav ul li a:hover {
            color: var(--gold-light);
            transform: translateY(-2px);
        }

        .btn-group1 {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }

        .btn {
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-login1 {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
            transition: all 0.4s ease;
        }

        .btn-login1:hover {
            background-color: var(--gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .btn-book1 {
            background-color: var(--gold);
            color: var(--primary-dark);
            font-weight: 700;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-book1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .btn-book1:hover::before {
            left: 100%;
        }

        .btn-book1:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
            background: var(--gold-light);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.3s ease;
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu-btn.active {
            transform: rotate(90deg);
        }

        .mobile-menu-btn .hamburger {
            width: 25px;
            height: 3px;
            background: var(--gold);
            position: relative;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn .hamburger::before,
        .mobile-menu-btn .hamburger::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 3px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        .mobile-menu-btn .hamburger::before {
            top: -8px;
        }

        .mobile-menu-btn .hamburger::after {
            top: 8px;
        }

        .mobile-menu-btn.active .hamburger {
            background: transparent;
        }

        .mobile-menu-btn.active .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }

        .mobile-menu-btn.active .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100vh;
            background: linear-gradient(160deg, var(--primary-dark), var(--primary));
            z-index: 1000;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            padding: 4rem 2rem 2rem;
            overflow-y: auto;
            border-left: 3px solid var(--gold);
        }

        .mobile-nav.active {
            right: 0;
            animation: slideIn 0.5s ease-out;
        }

        .mobile-nav ul {
           list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

        .mobile-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            display: block;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            transform: translateX(20px);
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        .mobile-nav.active ul li a {
            animation: fadeIn 0.5s forwards;
            animation-delay: calc(0.1s * var(--i));
        }

        .mobile-nav ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background: rgba(212, 175, 55, 0.1);
            padding-left: 1.5rem;
            transform: translateX(0);
        }

        .mobile-nav ul li a:hover::before {
            transform: scaleY(1);
        }

        .mobile-btn-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
        }

        .mobile-btn-group .btn {
            width: 100%;
            text-align: center;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Hero Slider Section */
        .hero-slider {
            height:75vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, var(--gray));
            z-index: 2;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* .slide-1 {
            background: url('assets/img/slide1.webp');
                background-repeat: no-repeat;
        }

        .slide-2 {
            background:  url('assets/img/slide2.webp');
                background-repeat: no-repeat;
        }

        .slide-3 {
            background: url('assets/img/slide3.webp');
                background-repeat: no-repeat;
        } */
     

      

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* Features Grid */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 3px solid var(--gold);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--primary-dark);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .feature-card:hover h3 {
            color: var(--gold);
        }

        .feature-card p {
            color: var(--text);
            font-size: 1rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 992px) {
            nav.desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .btn-group1 {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.7rem;
            }
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.6rem;
            }

            .logo img {
                height: 45px;
            }

            header.scrolled .logo img {
                height: 38px;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.4rem;
            }

            .logo img {
                height: 40px;
            }

            header.scrolled .logo img {
                height: 35px;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .mobile-nav ul li a {
                font-size: 1.2rem;
                padding: 0.8rem 1rem;
            }

            .slider-controls {
                bottom: 30px;
            }
        }

        @media (max-width: 400px) {
            .logo-text {
                font-size: 1.2rem;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }
        }
      /* Change the mobile menu button to be hidden by default */
.mobile-menu-btn {
    display: none; /* Changed from flex to none */
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

/* Show desktop navigation by default */
nav.desktop-nav {
    display: block; /* Ensure desktop nav is visible by default */
}

/* Show mobile menu button and hide desktop nav only on mobile */
@media (max-width: 992px) {
    nav.desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex; /* Show only on mobile */
    }

    .btn-group1 {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.7rem;
    }
}
/* Hero Slider Styles */
.hero-slider {
    height: 75vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    border-radius: 41px;
    object-fit: fill;
    object-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--gray));
    z-index: 2;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .slider-controls {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 55vh;
        min-height: 350px;
    }
    
    .slider-controls {
    display:none;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 400px) {
    .hero-slider {
        height: 50vh;
        min-height: 200px;
    }
}


        /* Services Section */
        .services-section {
            padding: 6rem 5%;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            animation: fadeInUp 1s ease-out;
        }

        .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        var(--primary-dark), 
        var(--gold), 
        transparent);
    background-size: 200% 100%;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    animation: underlineExpand 1.2s ease-out 0.5s forwards, 
               gradientFlow 4s linear infinite 1.5s;
    transform-origin: center;
}

@keyframes underlineExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 180px; opacity: 1; }
}

@keyframes gradientFlow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text);
            font-size: 1.1rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out both;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            opacity: 0;
            transition: all 0.6s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .service-card:hover::before {
            opacity: 0.05;
        }

        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: inherit;
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        /* .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 50%);
            z-index: 1;
        } */

        .service-content {
            /* padding: 2rem; */
            position: relative;
        }

        .service-content h3 {
            font-size: 1.7rem;
            margin-bottom: 1.2rem;
            color: var(--primary-dark);
            transition: all 0.4s ease;
            position: relative;
            display: inline-block;
        }

        .service-content h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-content h3::after {
            width: 100%;
        }

        .service-content p {
            margin-bottom: 2rem;
            color: var(--text);
            font-size: 1rem;
            line-height: 1.7;
        }

        .service-btns {
            display: flex;
            gap: 1.2rem;
                justify-content: center;
        }

        .service-btn {
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            z-index: -1;
        }

        .service-btn:hover::before {
            transform: translateX(100%);
        }

        .btn-book {
            background-color: var(--gold);
            color: var(--primary-dark);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-book:hover {
            background-color: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
        }

        .btn-call {
            background-color: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--gold);
        }

        .btn-call:hover {
            background-color: var(--gold);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
        }

        /* Floating Tag */
        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--primary-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
            animation: pulse 2s infinite;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Service-specific animations */
        .service1 { animation-delay: 0.1s; }
        .service2 { animation-delay: 0.2s; }
        .service3 { animation-delay: 0.3s; }
        .service4 { animation-delay: 0.4s; }
        .service5 { animation-delay: 0.5s; }
        .service6 { animation-delay: 0.6s; }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .service-image {
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 4rem 5%;
                margin-top: 30px;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .service-btns {
                flex-direction: column;
            }
            
            .service-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .service-image {
                height: 120px;
            }
            
            .service-content {
                padding: 1.5rem;
            }
            
            .service-content h3 {
                font-size: 1.5rem;
            }
        }
        /* Responsive Styles for Hero Slider */
@media (max-width: 992px) {
    .hero-slider {
        height: 50vh;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .slider-controls {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 400px) {
    .hero-slider {
        height: 30vh;
    }
    .slide::before{
        display:none;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-btn {
        min-width: auto;
    }
}

/* =============================ABOUT SECTION STARTS================================================== */
 .about-hero {
            max-width: 1400px;
            margin: 0px auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        /* .about-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            clip-path: circle(20% at 10% 10%);
            z-index: -1;
            opacity: 0.1;
        } */

        .about-img {
            flex: 1;
            min-width: 400px;
            height: 670px;
            position: relative;
            overflow: hidden;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 1s ease;
        }

        .about-img:hover img {
            transform: scale(0.9);
            -webkit-transform: scale(0.9);
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -o-transform: scale(0.9);
}

        /* .about-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 30%);
        } */

        .img-overlay {
            position: absolute;
            bottom: 40px;
            left: 40px;
            z-index: 2;
            color: var(--white);
        }

        .img-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .img-overlay p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 400px;
        }

        .about-content {
            flex: 1;
            min-width: 400px;
            padding: 60px 40px;
            position: relative;
        }

        .ab1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .ab2 {
            color: var(--text);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--gold-light);
        }

        .ab3 {
            color: var(--text);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            color: var(--gold);
            font-size: 1.5rem;
            margin-top: 3px;
        }

        .feature-text h4 {
            color: var(--primary-dark);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: var(--text);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 134, 144, 0.2);
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .highlight-box p {
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .gold-text {
            color: var(--gold-light);
            font-weight: 600;
            font-style: italic;
        }

        /* Floating elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: var(--gold);
            opacity: 0.1;
            border-radius: 50%;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .about-container {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-img, .about-content {
                min-width: 100%;
                flex: 100%;
            }
            .about-img {
                height: 280px;
                object-fit: contain;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .ab1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .about-hero {
                /* margin: 40px auto; */
            }
            .about-content {
                padding: 40px 20px;
            }
            .img-overlay {
                bottom: 20px;
                left: 20px;
            }
        }
          .highlight-content {
    position: relative;
    z-index: 2;
}

.app-download {
    margin-top: 20px;
    text-align: center;
}

.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.google-play-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* If you want to customize the button further */
.google-play-btn img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.a1{
        background: url('../img/wave.png') no-repeat;
background-size: cover;
background-position: center;
}
        /* ========================================ABOUT SECTION ENDS============================================ */

        /* CTA SECTION STARTS */

         /* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1740815514959-07d12c339e8f?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzF8fGluZGlhbiUyMGNhcnN8ZW58MHx8MHx8fDA%3D');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 134, 144, 0.85); /* Primary color with transparency */
    mix-blend-mode: multiply;
}

.cta-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

/* Text Elements */
.cta1 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Phone Number Box */
.cta-phone-box {
    background: var(--white);
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    border-radius: 50px;
    margin: 10px auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-phone-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-right: 15px;
}

.cta3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta3:hover {
    color: var(--gold);
}

/* Bottom Text */
.cta4 {
    color: var(--gold-light);
    margin-top: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-icon-small {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
        /* margin: 60px 20px; */
    }
    
    .cta1 {
        font-size: 1.8rem;
    }
    
    .cta2 {
        font-size: 1rem;
    }
    
    .cta-phone-box {
    padding: 12px 11px
    }
    
    .cta3 {
        font-size: 1.4rem;
    }
    
    .cta-icon {
        font-size: 1.4rem;
        margin-right: 10px;
    }
}
/* CTA SECTION ENDS============ */
/* Why Choose Us -====================================*/
.why-choose-us {
    padding: 80px 20px;
    /* background: linear-gradient(to bottom, #f9f9f9 0%, var(--white) 100%); */
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.why-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.why2 {
    color: var(--text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow:0 5px 25px rgb(174 216 219);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card-highlight {
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(0, 134, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.why3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-card:hover .why3 {
    color: var(--primary);
}

.why4 {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-hover-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    transition: all 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.why-card:hover .why-hover-content {
    bottom: 0;
}

.why-guarantee {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 134, 144, 0.3);
}

.why-guarantee i {
    font-size: 1.8rem;
    color: var(--gold-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why1 {
        font-size: 2rem;
    }
    
    .why-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 60px 15px;
    }
    
    .why-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

/* Why Choose Us ends-====================================*/
/* STATS SECTION STARTS=============================================== */
.stats-section {
            background-color: var(--gray);
            padding: 80px 20px;
            text-align: center;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-box {
            flex: 1 1 200px;
            background: var(--white);
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

        .stats-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .stats-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stats-box:hover::before {
            transform: scaleX(1);
        }

        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
            display: inline-block;
            position: relative;
        }

        .stats-number::after {
            content: '+';
            position: absolute;
            right: -15px;
            top: 0;
            font-size: 2rem;
            color: var(--gold);
        }

        .stats-title {
            font-size: 1.2rem;
            color: var(--text);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-box.animated {
            animation: countUp 0.8s ease forwards;
        }

        .stats1 .stats-number::after {
            display: none;
        }

        .stats2 .stats-number::after {
            content: '+';
        }

        .stats3 .stats-number::after {
            content: '+';
        }

        .stats4 .stats-number::after {
            content: '+';
        }

        .stats5 .stats-number::after {
            display: none;
        }

        @media (max-width: 768px) {
            .stats-box {
                flex: 1 1 150px;
            }

            .stats-number {
                font-size: 2.5rem;
            }

            .stats-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .stats-container {
                flex-direction: column;
                align-items: center;
            }

            .stats-box {
                width: 80%;
                max-width: 250px;
            }
        }
        /* STATS  SECTION ENDS========================================== */

        /* FOOTER SECTION STARTS========================================================== */
         /* Footer Styles */
    .footer {
        background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
        background-size: cover;
        color: #fff;
        padding: 80px 0 30px;
        font-family: 'Poppins', sans-serif;
        position: relative;
    }

    .footer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .footer-top {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-logo img {
        height: 120px;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #fff;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background-color: #D4AF37;
        transform: translateY(-3px);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-heading {
        color: #fff;
        font-size: 20px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #D4AF37;
    }

    .footer-about {
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .footer-links {
        list-style: none;
    }

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

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s;
    }

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

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #aaa;
    }

    .contact-item i {
        color: #D4AF37;
        margin-top: 4px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #777;
        font-size: 14px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer {
            padding: 60px 0 20px;
        }
        
        .footer-top {
            margin-bottom: 30px;
        }
    }
    /* FOOTER SECTION ENDS=================================================== */

    /* BREADCRUMB SECTION STARTS============================================================ */
      /* Breadcrumb Styles */
    .breadcrumb-section {
        position: relative;
        background: url('../img/bg.jpg') no-repeat center center;
        background-size: cover;
        padding: 100px 0;
        color: white;
        text-align: center;
    }

    .breadcrumb-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .breadcrumb-content {
        position: relative;
        z-index: 1;
    }

    .breadcrumb-section h1 {
           font-size: 3.5rem;
            font-weight: 700;
            margin: 60px 0px 0px 0px;
            color: var(--white);
            text-transform: uppercase;
    }

    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
        list-style: none;
        background: transparent;
        border-radius: 0;
    }

    .breadcrumb-item {
        font-size: 1rem;
        color: var(--white);
    }

    .breadcrumb-item a {
        color: var(--gold-light);
        text-decoration: none;
        transition: color 0.3s;
    }

    .breadcrumb-item a:hover {
        color: var(--white);
    }

    .breadcrumb-item.active {
        color: var(--white);
        opacity: 0.8;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        padding: 0 10px;
        color: var(--white);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .breadcrumb-section {
            padding: 70px 0;
        }
        
        .breadcrumb-section h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .breadcrumb-section {
            padding: 50px 0;
        }
        
        .breadcrumb-section h1 {
            font-size: 1.8rem;
        }
        
        .breadcrumb-item {
            font-size: 0.9rem;
        }
    }
    /* BREADCRUMB SECTION ENDS============================================================== */

    /* CONTACT PAGE STARTS============================================================== */
     .contact-container {
            margin: 70px 0px 0px 0px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeIn 1s ease-in-out;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-header h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--gold);
            bottom: -10px;
            left: 25%;
            border-radius: 2px;
        }

        .contact-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            animation: slideInLeft 0.8s ease-in-out;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .contact-image:hover img {
            transform: scale(1.05);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: slideInRight 0.8s ease-in-out;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 134, 144, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .info-item {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--gray);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
        }

        .info-item:hover .info-icon {
            color: var(--gold-light);
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .info-text h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .contact-map {
            width: 100%;
            height: 400px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-in-out;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { 
                opacity: 0;
                transform: translateX(-50px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from { 
                opacity: 0;
                transform: translateX(50px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-image, .contact-form {
                min-width: 100%;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
            
            .info-item {
                min-width: 100%;
            }
        }
        /* CONTACT PAGE ENDS================================================== */

        /* ===========================LOGIN PAGE STARTS======================================= */
        
.login-section {
    background-color: var(--gray);
}
.logincon{
        padding: 80px 30px 30px;
}
.login-image {
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}
.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.login-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
}
.login-header p {
    color: var(--text);
    font-size: 1rem;
}
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}
.nav-tabs .nav-link {
    color: var(--text);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px 6px 0 0;
    background: transparent;
    position: relative;
}
.nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
}
.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}
.nav-tabs .nav-link:hover:not(.active) {
    color: var(--primary);
}
.form-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}
.form-control, .input-group-text {
    padding: 0.75rem;
    border-radius: 6px !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.vbtn{
      background-color: var(--gold);
    border-color: var(--primary);
}
    /* Mobile Responsive Styles - Login Section */
@media (max-width: 767.98px) {
    /* Breadcrumb adjustments */
    .breadcrumb-section .breadcrumb-content {
        text-align: center;
        padding: 20px 0;
    }
    
    /* Main login container */
    .logincon {
        flex-direction: column;
    }
    .ab11{
            display: flex;
    flex-direction: column;
    }
    /* Hide image on mobile */
    .login-image {
        display: none;
    }
    
    /* Form container full width */
    .login-form-container {
        width: 100%;
        padding: 20px 15px;
    }
    
    /* Tabs - switch to vertical/column layout */
    #loginTabs {
        display: flex;
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }
    
    #loginTabs .nav-item {
        width: 100%;
        text-align: center;
    }
    
    #loginTabs .nav-link {
        border-radius: 5px !important;
        margin-bottom: 5px;
        border: 1px solid #dee2e6;
    }
    
    #loginTabs .nav-link.active {
        border-color: #0d6efd;
    }
    
    /* Tab content adjustments */
    #loginTabsContent {
        padding: 15px 0;
    }
    
    /* Form elements */
    .login-form .form-group {
        margin-bottom: 1.2rem;
    }
    
    .input-group-text {
        padding: 0.5rem 0.75rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.6rem;
        font-size: 1rem;
    }
    .logincon {
    padding: 50px 8px 30px;
}
    
    /* OTP button spacing */
    #sendOtpBtn, #verifyOtpBtn {
        margin-bottom: 15px;
    }
    
    /* Additional small screen adjustments */
    @media (max-width: 480px) {
        .login-form-container {
            padding: 15px 10px;
        }
        
        .login-header h2 {
            font-size: 1.5rem;
        }
        
        .login-header p {
            font-size: 0.9rem;
        }
        .logincon {
    padding: 50px 8px 30px;
}
    }
}
/* LOGIN PAGE ENDS-================================== */

/* OFFER SECTION STARTS=============================================================== */
 .car-rental-offers {
    padding: 3rem 1rem;
    background-color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .car-rental-offers h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
  }
  
  .car-rental-offers h2 span {
    color: var(--gold);
  }
  
  .section-subtitle {
    color: var(--text);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
  }
  
  .offers-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .offers-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }
  
  .offers-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .offer-card {
    flex: 0 0 calc(25% - 1.5rem);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    min-width: 280px;
  }
  
  .offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  }
  
  .offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .offer-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .offer-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  }
  
  .offer-content {
    padding: 1.5rem;
    text-align: left;
  }
  
  .offer-card h3 {
    color: var(--primary);
    margin: 0.5rem 0;
    font-size: 1.4rem;
  }
  
  .discount {
    color: var(--gold-light);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.8rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .description {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 60px;
  }
  
  .offer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }
  
  .valid-date {
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  .book-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .book-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .swipe-btn {
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 1;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
  }
  
  .swipe-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
  }
  
  .offer-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .indicator.active {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--gold);
  }
  
  /* Individual offer card accents */
  .offer1 .offer-badge { background-color: var(--primary); }
  .offer2 .offer-badge { background-color: var(--gold); }
  .offer3 .offer-badge { background-color: var(--primary-dark); }
  .offer4 .offer-badge { background-color: var(--gold-light); color: var(--black); }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .offer-card {
      flex: 0 0 calc(33.333% - 1.5rem);
    }
  }
  
  @media (max-width: 900px) {
    .offer-card {
      flex: 0 0 calc(50% - 1.5rem);
    }
    
    .swipe-btn {
      width: 40px;
      height: 40px;
    }
  }
  
  @media (max-width: 600px) {
    .offer-card {
      flex: 0 0 calc(100% - 1rem);
    }
    
    .offers-container {
      padding: 0 1rem;
    }
    
    .car-rental-offers h2 {
      font-size: 1.8rem;
    }
  }
  /* OFFER SECTION ENDS=================================================/ */

.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary) !important; }
.bg-gold { background-color: var(--gold) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Form Styles */
.form-control, .form-select {
    border: 1px solid #ced4da;
    height: calc(2.5rem + 2px);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

/* Tab Navigation */
.booking-tabs .nav-pills {
    border-radius: 0;
}

.booking-tabs .nav-link {
    font-weight: 600;
    color: var(--text);
    padding: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.booking-tabs .nav-link.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 0.5rem !important;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .booking-tabs .nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .subscription-cars-list .card-body {
        padding: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane {
    animation: fadeIn 0.5s ease-out;
}


/* ====================CAB BOOKING OPTIONS================================================== */
.op-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: opFadeIn 0.3s ease;
}

@keyframes opFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.op-modal-content {
    background-color: var(--gray);
    margin: 7% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: opSlideDown 0.4s ease;
}

@keyframes opSlideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.op-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.op-close:hover {
    color: var(--primary);
}

.op-modal-content h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Options Grid */
.op-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.op1, .op2, .op3, .op4 {
    background: var(--white);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.op1:hover, .op2:hover, .op3:hover, .op4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.op1 h3, .op2 h3, .op3 h3, .op4 h3 {
    color: var(--primary-dark);
    margin: 15px 0 10px;
    font-size: 20px;
}

.op1 p, .op2 p, .op3 p, .op4 p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 0;
}

.op-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.op1:hover .op-icon { background-color: var(--gold); }
.op2:hover .op-icon { background-color: var(--gold); }
.op3:hover .op-icon { background-color: var(--gold); }
.op4:hover .op-icon { background-color: var(--gold); }

.op-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.op1:hover .op-hover,
.op2:hover .op-hover,
.op3:hover .op-hover,
.op4:hover .op-hover {
    opacity: 1;
}

/* Trigger Elements */
.op-trigger {
    cursor: pointer;
    transition: transform 0.2s;
}

.op-trigger:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .op-modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .op-options {
        grid-template-columns: 1fr;
    }
}
/* =================================hourly cab=============================== */
.hcab3 {
    padding: 60px 0;
}

/* hcab4 (Tab Header) */
.hcab4 .nav-link {
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    position: relative;
}

.hcab4 .nav-link.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hcab4 .nav-link:not(.active):hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Form Styles */
.form-control, .form-select {
    border: 1px solid #ced4da;
    height: calc(2.5rem + 3px);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

/* Image Container */
.position-relative.rounded.overflow-hidden.h-100 {
    min-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .position-relative.rounded.overflow-hidden.h-100 {
        margin-top: 2rem;
        height: 300px;
    }
    
    .tab-content {
        padding: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .hcab4 .nav-link {
                font-size: 9px;
        padding: 0.2rem
    }
    
    .hcab4 .nav {
        flex-direction: column;
    }
    
    .hcab4 .nav-item {
        width: 100%;
        margin-bottom: 0.25rem;
    }
    
    .hcab3 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Animation */
@keyframes hcab-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane {
    animation: hcab-fadeIn 0.5s ease-out;
}

/* Accessibility Improvements */
.nav-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.form-control:focus, .form-select:focus {
    outline: none;
}

/* ONE WAY BOOKING-============================================================= */

/* oc4 - Booking Section */
.oc4 {
    background-color: var(--gray);
}

.oc5 {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oc5:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.oc6 {
    background-color: var(--white);
}

.oc7 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.oc7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.oc9 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.oc10 {
    margin-bottom: 20px;
}

.oc10 .input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.oc11 {
    border: 1px solid #ddd;
}

.oc11:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.oc12 {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.oc12:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);

}

.oc13 {
    position: relative;
}

.oc14 {
    position: relative;
    height: 100%;
}

.oc15 {
    object-fit: cover;
    animation: oc-zoomIn 1s ease-out;
}

.oc16 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.oc17 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.oc18 {
    opacity: 0.9;
}

/* Animations */
@keyframes oc-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes oc-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .oc1 {
        padding: 80px 0;
    }
    
    .oc1 h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .oc1 {
        padding: 60px 0;
    }
    
    .oc5 {
        margin-top: 20px;
    }
    
    .oc6 {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .oc1 h1 {
        font-size: 1.8rem;
    }
    
    .oc6 {
        padding: 20px;
    }
    
    .oc12 {
        padding: 10px;
    }
}

/* ==============================ROUND TRIP ============================================= */
.rc4 {
    background-color: var(--gray);
}

.rc5 {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rc5:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.rc6 {
    background-color: var(--white);
}

.rc7 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.rc7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.rc9 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.rc10 {
    margin-bottom: 20px;
}

.rc10 .input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.rc11 {
    border: 1px solid #ddd;
}

.rc11:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.rc12 {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.rc12:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.rc13 {
    position: relative;
}

.rc14 {
    position: relative;
    height: 100%;
}

.rc15 {
    object-fit: cover;
    animation: rc-zoomIn 1s ease-out;
}

.rc16 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.rc17 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rc18 {
    opacity: 0.9;
}

/* Animations */
@keyframes rc-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rc-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .rc5 {
        margin-top: 20px;
    }
    
    .rc6 {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .rc6 {
        padding: 20px;
    }
    
    .rc12 {
        padding: 10px;
    }
}
/* ====================================================FLIGHT BOOKING========================================= */
.fb4 {
    background-color: var(--gray);
}

.fb5 {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fb5:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* fb6 - Tab Navigation */
.fb6 .nav-link {
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
}

.fb6 .nav-link.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fb6 .nav-link:not(.active):hover {
    color: var(--primary);
    background-color: var(--gray);
}

.fb7 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.fb7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.fb9 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.fb10 {
    margin-bottom: 20px;
}

.fb10 .input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.fb11 {
    border: 1px solid #ddd;
}

.fb11:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.fb12 {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.fb12:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
        color: var(--white);

}

.fb13 {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.fb14 {
    object-fit: cover;
    height: 100%;
    animation: fb-zoomIn 1s ease-out;
}

.fb15 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.fb16 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fb17 {
    opacity: 0.9;
}

/* Animations */
@keyframes fb-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fb-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
    
    .fb13 {
        min-height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .fb6 .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .fb5 {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .fb6 .nav {
        flex-direction: column;
    }
    
    .fb6 .nav-item {
        width: 100%;
        margin-bottom: 0.25rem;
    }
    
    .fb12 {
        padding: 10px;
    }
}

/* ============================================LUXURY CARS BOOKING=========================================== */
.lx4 {
    background-color: var(--gray);
}

.lx5 {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lx5:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.lx6 {
    background-color: var(--white);
}

.lx7 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.lx7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.lx9 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.lx10 {
    margin-bottom: 20px;
}

.lx10 .input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.lx11 {
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.lx11:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.lx12 {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.lx12:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 134, 144, 0.3);
    color:white;
}

.lx13 {
    position: relative;
}

.lx14 {
    position: relative;
    height: 100%;
}

.lx15 {
    object-fit: cover;
    animation: lx-zoomIn 1s ease-out;
}

.lx16 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.lx17 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lx18 {
    opacity: 0.9;
}

/* Animations */
@keyframes lx-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lx-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
    
    .lx14 {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .lx5 {
        margin-top: 20px;
    }
    
    .lx6 {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .lx6 {
        padding: 20px;
    }
    
    .lx12 {
        padding: 10px;
    }
}
/* =========================BUS BOOKING======================================= */
.bs4 {
    background-color: var(--gray);
}

.bs5 {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs5:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.bs6 {
    background-color: var(--white);
}

.bs7 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.bs7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.bs9 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.bs10 {
    margin-bottom: 20px;
}

.bs10 .input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.bs11 {
    border: 1px solid #ddd
}

.bs11:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 134, 144, 0.25);
}

.bs12 {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.bs12:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 134, 144, 0.3);
}

.bs13 {
    position: relative;
}

.bs14 {
    position: relative;
    height: 100%;
}

.bs15 {
    object-fit: cover;
    animation: bs-zoomIn 1s ease-out;
}

.bs16 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.bs17 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bs18 {
    opacity: 0.9;
}

/* Animations */
@keyframes bs-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bs-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
    
    .bs14 {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .bs5 {
        margin-top: 20px;
    }
    
    .bs6 {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .bs6 {
        padding: 20px;
    }
    
    .bs12 {
        padding: 10px;
    }
}
/* =============================================TERMS AND CONDITIONS PAGE=================================== */
.terms-section {
    background-color: var(--gray);
}

.terms-card {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.terms-header h2 {
    font-weight: 700;
    position: relative;
}

.divider {
    margin: 15px 0;
}

.terms-content {
    color: var(--text);
    line-height: 1.8;
}

.terms-content h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.terms-content h5 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.terms-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-list li {
    margin-bottom: 8px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .terms-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .terms-content h4 {
        font-size: 1.3rem;
    }
}

/* =======================================PRIVACY PAGE================================================= */

/* Privacy Content Section */
.privacy-section {
    background-color: var(--gray);
}

.privacy-card {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.privacy-header h2 {
    font-weight: 700;
    position: relative;
}

.divider {
    margin: 15px 0;
}

.privacy-content {
    color: var(--text);
    line-height: 1.8;
}

.privacy-content h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.privacy-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-list li {
    margin-bottom: 8px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .privacy-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h4 {
        font-size: 1.3rem;
    }
}
    .op-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    @media only screen and (max-width: 768px) {
        .op-options {
            display: flex;
            flex-direction: column; 
            max-height: 60vh; 
            overflow-y: auto; 
            gap: 15px;
            padding-right: 8px; 
        }

        .op-options a {
            width: 100%; 
            margin-bottom: 0; 
        }
        .op-options::-webkit-scrollbar {
            width: 4px;
        }
        .op-options::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 2px;
        }
    }

    /* ================================USER DASHBOARD====================================================== */
     
    .dashboard-section {
        background-color: var(--gray);
            margin: 80px 30px;
    }
    
    .dashboard-sidebar {
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .user-profile {
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }
    
    .user-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 15px;
        border: 3px solid var(--primary);
        position: relative;
        cursor: pointer;
    }
    
    .user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .image-upload-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .user-avatar:hover .image-upload-overlay {
        opacity: 1;
    }
    
    .image-upload-overlay i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .image-upload-overlay span {
        font-size: 12px;
    }
    
    .user-info h5 {
        font-weight: 600;
        color: var(--black);
        margin-bottom: 5px;
    }
    
    .user-info span {
        color: var(--text);
        font-size: 14px;
    }
    
    .dashboard-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .dashboard-menu li {
        margin-bottom: 5px;
    }
    
    .dashboard-menu li a {
        display: block;
        padding: 12px 15px;
        color: var(--text);
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .dashboard-menu li a i {
        margin-right: 10px;
        color: var(--primary);
    }
    
    .dashboard-menu li a:hover,
    .dashboard-menu li.active a {
        background-color: rgba(0, 134, 144, 0.1);
        color: var(--primary);
    }
    
    .dashboard-menu li.active a {
        font-weight: 600;
    }
    
    .dashboard-card {
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .dashboard-card-header {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .dashboard-card-header h4 {
        margin: 0;
        color: var(--primary);
    }
    
    .dashboard-card-body {
        padding: 20px;
    }
    
    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
    }
    
    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }
    
    .badge-success {
        background-color: #28a745;
    }
    
    .badge-warning {
        background-color: #ffc107;
        color: #212529;
    }
    
    .badge-primary {
        background-color: var(--primary);
    }
    
    .badge-info {
        background-color: #17a2b8;
    }
    
    .booking-table th {
        background-color: var(--primary);
        color: var(--white);
    }
    
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(0, 134, 144, 0.25);
    }
    
    .custom-file-input:focus ~ .custom-file-label {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(0, 134, 144, 0.25);
    }
    
    .custom-file-label::after {
        background-color: var(--primary);
        color: var(--white);
    }
    
    /* Document Upload Styles */
    .document-item {
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        background-color: #f9f9f9;
    }
    
    .document-item h5 {
        color: var(--primary);
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .document-preview {
        min-height: 100px;
        border: 2px dashed #ddd;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        padding: 10px;
    }
    
    .document-preview img {
        max-width: 100%;
        max-height: 200px;
    }
    
    .document-preview p {
        margin: 0;
        color: #999;
    }
    
    /* Booking Tabs */
    .booking-tabs {
        border-bottom: none;
        margin-top: 15px;
    }
    
    .booking-tabs .nav-link {
        padding: 8px 15px;
        color: var(--text);
        border: none;
        border-bottom: 2px solid transparent;
    }
    
    .booking-tabs .nav-link.active {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
        background-color: transparent;
    }
    
    .booking-tabs .nav-link:hover:not(.active) {
        color: var(--primary-dark);
    }
    
    /* Modal Styles */
    .img-container {
        max-height: 60vh;
        overflow: auto;
    }
    
    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .dashboard-sidebar {
            margin-bottom: 20px;
        }
        
        .user-avatar {
            width: 80px;
            height: 80px;
        }
    }
    
    @media (max-width: 767.98px) {
        .dashboard-card-header h4 {
            font-size: 18px;
        }
        
        .booking-table th, 
        .booking-table td {
            padding: 8px;
            font-size: 14px;
        }
        
        .btn-sm {
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
        }
    }
    
    @media (max-width: 575.98px) {
        .dashboard-menu li a {
            padding: 10px 12px;
            font-size: 14px;
        }
        
        .dashboard-menu li a i {
            margin-right: 8px;
        }
        
        .booking-tabs .nav-link {
            padding: 6px 10px;
            font-size: 14px;
        }
    }
.dashboard-tab {
    display: none;
}
.dashboard-tab.active {
    display: block;
}
.booking-tab-content {
    display: none;
}
.booking-tab-content.active {
    display: block;
}
.booking-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    border-bottom: 1px solid #dee2e6;
}
.booking-tabs li {
    margin-right: 10px;
}
.booking-tabs li a {
    padding: 8px 15px;
    display: block;
    color: var(--text);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}
.booking-tabs li.active a {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* =========================testimonilas========================== */   /* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Testimonial Slider */
.testimonials-slider {
    padding: 10px 0 60px;
    margin: 0 -15px;
    position: relative;
}

.testimonial-item {
    height: auto;
    padding: 10px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {

    font-size: 20px;
}

.testimonial-inner {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 30px;
    position: relative;
}

.testimonial-item:hover .testimonial-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Testimonial Content */
.quote-icon-top,
.quote-icon-bottom {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    color: var(--primary);
}

.quote-icon-top {
    top: 15px;
    left: 20px;
}

.quote-icon-bottom {
    bottom: 15px;
    right: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-img {
    margin-right: 15px;
    flex-shrink: 0;
}

.client-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.client-info h5 {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text);
    display: block;
}

.rating {
    margin-top: 5px;
}

.rating i {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.testimonial-body p {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    position: relative;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    /* background: rgba(255,255,255,0.8); */
    border-radius: 50%;
    color: var(--primary) !important;
    display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 134, 144, 0.1) !important;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 2px solid var(--primary);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: flex;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-inner {
        padding: 20px !important;
    }
    
    .client-img img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-body p {
        font-size: 0.95rem;
    }
}
/* PACKAGES SECTION STARTS============================================= */
/* Packages Section Styles */
    .packages-section {
        position: relative;
        padding: 120px 0;
    }
    
    .package-card {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .package-header {
        position: relative;
    }
    
    .package-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .package-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .package-body {
        padding: 25px;
        flex-grow: 1;
    }
    
    .package-title {
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .package-price {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .package-price .currency {
        font-size: 1.2rem;
        color: var(--primary);
        vertical-align: top;
        line-height: 2.5rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin: 0 5px;
    }
    
    .package-price .duration {
        font-size: 1rem;
        color: var(--text);
    }
    
    .package-features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }
    
    .package-features li {
        padding: 8px 0;
        color: var(--text);
    }
    
    .package-features i {
        margin-right: 10px;
    }
    
    .package-footer {
        padding: 0 25px 25px;
    }
    
    /* Package Specific Styles */
    .pac1 .package-img {
        background-color: rgba(0, 134, 144, 0.1);
    }
    
    .pac2 .package-img {
        background-color: rgba(0, 106, 112, 0.1);
    }
    
    .pac3 .package-img {
        background-color: rgba(212, 175, 55, 0.1);
    }
    
    /* Responsive Styles */
    @media (max-width: 767px) {
        .package-card {
            margin-bottom: 30px;
        }
        
        .package-img img {
            height: 180px;
        }
    }
    .p_details1 {
    padding: 60px 0 100px;
    position: relative;
    background: var(--gray);
}

.p_details2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.p_details3 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.p_details3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p_details3:hover img {
    transform: scale(1.05);
}

.p_details_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
} */

.p_details4 {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p_details5 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.p_details6 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.p_details7 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 500;
}

.p_details7 i {
    color: var(--primary);
}

.p_details8 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.p_details9 {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.p_details10 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

.p_details11 {
    background: var(--gold);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.p_details_shortdesc {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.p_details_actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.p_details_inquire {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.p_details_inquire:hover {
    background: var(--primary-dark);
}

.p_details_share {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.p_details_share:hover {
    background: var(--primary);
    color: var(--white);
}

.p_details12 {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p_details13 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.p_details13::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.p_details14 {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.p_details15 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.p_details16 {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: var(--gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p_details16:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.p_details16 i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.p_details17 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.p_details18 {
    color: var(--text);
    line-height: 1.5;
}

.p_details_itinerary {
    margin: 30px 0;
}

.p_details_day {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #ddd;
}

.p_details_day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.p_details_daynumber {
    flex: 0 0 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
}

.p_details_daycontent h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.p_details_daycontent p {
    color: var(--text);
    line-height: 1.6;
}

.p_details_inclusion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.p_details_include h3, .p_details_exclude h3 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p_details_include h3 i {
    color: #28a745;
}

.p_details_exclude h3 i {
    color: #dc3545;
}

.p_details_include ul, .p_details_exclude ul {
    list-style: none;
}

.p_details_include li, .p_details_exclude li {
    margin-bottom: 10px;
    color: var(--text);
    padding-left: 25px;
    position: relative;
}

.p_details_include li::before {
    content: '✓';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.p_details_exclude li::before {
    content: '✗';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.p_details19 {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.p_details19.visible {
    bottom: 50px;
}

.p_details20 {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 134, 144, 0.3);
    transition: all 0.3s ease;
}

.p_details20:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 134, 144, 0.4);
}

@media (max-width: 992px) {
    .p_details2 {
        grid-template-columns: 1fr;
    }
    
    .p_details5 {
        font-size: 1.8rem;
    }
    
    .p_details15 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .p_details_inclusion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .p_details6 {
        flex-direction: column;
        gap: 10px;
    }
    
    .p_details12 {
        padding: 25px;
    }
    
    .p_details_day {
        flex-direction: column;
    }
    
    .p_details_daynumber {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .p_details_actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .p_details5 {
        font-size: 1.5rem;
    }
    
    .p_details10 {
        font-size: 1.5rem;
    }
    
    .p_details20 {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .p_details19.visible {
        bottom: 100px;
    }
    
    
.slide {
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
}/* Small phones */
@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
  }
}

/* Tablets */
@media (min-width: 580px) and (max-width: 852px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  }
}

/* Small laptops */
@media (min-width: 853px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  }
}
/*==============================
 Ride Services
==============================*/

.ride-services{
    display:flex;
    justify-content:center;
    margin:40px 0;
    padding:0 15px;
}

/* Main Card */
.ride-services-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;

    background:#ffffff;
    padding:18px 35px;
    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #ececec;

    width:fit-content;
    max-width:100%;
}

.tab-item{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#666;
    transition:.3s;
}

.tab-icon{
    width:52px;
    height:52px;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.tab-icon i{
    font-size:22px;
    color:#808080;
    transition:.3s;
}

.tab-item span{
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
}

/* Active */

.tab-item.active .tab-icon{
    background:#c8f2f5;
}

.tab-item.active .tab-icon i{
    color:#17b7c5;
}

.tab-item.active span{
    color:#17b7c5;
    font-weight:600;
}

/* Hover */

.tab-item:hover .tab-icon{
    background:#c8f2f5;
}

.tab-item:hover .tab-icon i{
    color:#17b7c5;
}

.tab-item:hover span{
    color:#17b7c5;
}

/*==============================
 Mobile
==============================*/

@media(max-width:768px){

.ride-services{
    margin:20px 0;
}

.ride-services-box{

    width:100%;
    max-width:360px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:12px;

    padding:15px;
}

.tab-item{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:8px;
}

.tab-icon{
    width:56px;
    height:36px;
}

.tab-icon i{
    font-size:18px;
}

.tab-item span{
    font-size:12px;
    line-height:15px;
}

}

@media(max-width:420px){

.ride-services-box{
    padding:12px;
    gap:8px;
}

.tab-icon{
    width:50px;
    height:34px;
}

.tab-item span{
    font-size:11px;
}

}.current-location-text{
    color:#0d6efd;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    transition:.3s;
}

.current-location-text:hover{
    color:#084298;
    text-decoration:underline;
}