* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00355F;
    /* Yellow */
    color: #fcfcfc;
    /* Blue icon */
    z-index: 99;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {

    background-color: #FFD700;
    /* Blue background */
    color: #FFD700;
    /* Yellow icon */
    transform: translateY(-5px);
    /* Lift effect */
}


/* ''''''''''All-out'''''''''''' */
.All-tour {
    position: relative;
    margin-top: -80px;
    text-align: center;
    z-index: 5;
}

.All-tour img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* '''''''''''''''''''''' */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffcc00;
    color: #333;
    border: 2px solid #ffcc00;
}

.btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.btn-outline {
    background-color: #e6b800;
    color: #080707;
    border: 2px solid #e6b800;
}

.btn-outline:hover {
    background-color: #2d113d;
    color: #ffffff;
    border: 2px solid #2d113d;
}

.btn-block {
    display: block;
    width: 100%;
}

/* \\\\\\\\\\\\\\\\\\\--------------navbar----------------------\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

/* ''''''''''''''''''''''''''''''''Slider '''''''''''''''''''''''''''''''''' */
.hero-slider-carsole {
    position: relative;
    height: 600px;
    margin-top: 79px;
}

.slider-container-carsole {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide-carsole {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide-carsole::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-carsole.active {
    opacity: 1;
    z-index: 1;
}

.slide-content-carsole {
    position: relative;
    color: #fff;
    max-width: 600px;
    z-index: 2;
}

.slide-content-carsole h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content-carsole p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Controls */
.slider-controls-carsole {
    position: absolute;
    bottom: 112px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-slide-carsole,
.next-slide-carsole {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dot-carsole {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-carsole {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot-carsole.active {
    background: #ffcc00;
}

/* Booking form */
/* Booking Form Styles */
.booking-form-container-carsole {
    position: absolute;
    bottom: 19px;
    left: 66%;
    width: 33%;
    z-index: 100;
}

.booking-form-carsole {
    background-color: #00355F;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header-carsole {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.form-tabs-carsole {
    display: flex;
}

.form-tabs-carsole li {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.form-tabs-carsole li:hover {
    color: #00355F;
}

.form-tabs-carsole li.active {
    color: #00355F;
    border-bottom-color: #ffcc00;
}

.form-body-carsole {
    padding: 30px;
}

.form-tab-content-carsole {
    display: none;
}

.form-tab-content-carsole.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group-carsole {
    margin-bottom: 20px;
}

.form-row-carsole {
    display: flex;
    gap: 20px;
}

.form-row-carsole .form-group-carsole {
    flex: 1;
}

.form-group-carsole label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff3f3;
}

.form-group-carsole input,
.form-group-carsole select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group-carsole input:focus,
.form-group-carsole select:focus {
    border-color: #00355F;
    outline: none;
}

.radio-group-carsole {
    display: flex;
    gap: 20px;
}

.radio-carsole {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-carsole input {
    margin-right: 8px;
    width: auto;
}

/* '''''''''''''bg''''''' */
.slider-bottom-img-carsole {
    position: relative;
    margin-top: -133px;
    text-align: center;
    z-index: 5;
}

.slider-bottom-img-carsole img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Mobile Menu Hidden By Default */
.main-menu-carsole {
    display: flex;
}

@media (max-width: 768px) {
    .main-menu-carsole {
        display: none;
        flex-direction: column;
        background: #FF7F00;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        z-index: 999;
    }

    .main-menu-carsole.show {
        display: flex;
    }

    .main-menu-carsole li {
        margin: 12px 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider-bottom-img-carsole {
        margin-top: -40px;
    }

    .slider-controls-carsole {
        bottom: 14px;
    }

    .btn-primary-carsole {
        bottom: 20px;
        width: 47%;
    }
}

@media (max-width: 576px) {
    .slider-bottom-img-carsole {
        margin-top: -36px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid-carsole {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-menu-carsole {
        display: none;
        flex-direction: column;
        background: #FF7F00;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        z-index: 999;
    }

    .main-menu-carsole.show {
        display: flex;
    }

    .main-menu-carsole li {
        margin: 12px 0;
    }

    .header-right-carsole .phone-carsole,
    .header-right-carsole .btn-outline-carsole {
        display: none;
    }

    .mobile-menu-toggle-carsole {
        display: block;
    }

    .hero-slider-carsole {
        height: 500px;
    }

    .slide-content-carsole h1 {
        font-size: 36px;
    }

    .booking-form-container-carsole {
        position: relative;
        bottom: 0;
        margin-top: -80px;
    }

    .form-tabs-carsole {
        overflow-x: auto;
        white-space: nowrap;
    }

    .form-row-carsole {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider-carsole {
        height: 223px;

        width: 113%;
        left: -1px;
        margin-top: 60px;
    }

    .slide-content-carsole h1 {
        font-size: 21px;
    }

    .slide-content-carsole p {
        font-size: 9px;
        margin: 11px;
    }

    .features-grid-carsole {
        grid-template-columns: 1fr;
    }

    .booking-form-container-carsole {
        margin-top: -60px;
    }

    @media (max-width: 768px) {
        .booking-form-container-carsole {
            position: relative;
            width: 100%;
            margin: 20px auto;
            left: 0;
        }
    }

    .form-body-carsole {
        padding: 20px;
    }
}

/* ''''''''''''''''''''''''''''feet'''''''' */

/* ''''''''''''''''''our fleet '' */

/* Fleet Section Styles */
.fleet-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f3f3f3 50%, #00355F 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #00355f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: #ffcc00;
}

.section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Fleet Container and Cards */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.fleet-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #00355F;
}

/* Fleet Image */
.fleet-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

/* Fleet Info */
.fleet-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Fleet Features */
.fleet-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 18px;
    color: #00355F;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.feature i:hover {
    color: #FF7F00;
}

.feature span {
    font-size: 14px;
    color: #666;
}

/* Price */
.fleet-price {
    text-align: center;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc00;
}

.unit {
    font-size: 14px;
    color: #777;
}

/* Description */
.fleet-description {
    margin-bottom: 15px;
    min-height: 40px;
    text-align: center;
}

.fleet-description p {
    font-size: 13px;
    color: #777;
}

/* View Details Button */
.btn-details {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #00355F;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-details:hover {
    background-color: #FF7F00;
}

/* -------------------- Responsive -------------------- */

/* Large screens (≤1200px) */
@media (max-width: 1200px) {
    .fleet-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
    .fleet-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-image {
        height: 160px;
    }
}

/* Mobiles (≤576px) */
@media (max-width: 576px) {
    .fleet-container {
        grid-template-columns: 1fr;
    }

    .fleet-section {
        margin-left: 23px;
    }

    .fleet-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .fleet-image {
        height: 140px;
    }

    .feature i {
        font-size: 16px;
    }

    .feature span {
        font-size: 12px;
    }

    .price {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }
}


/* ''''''''''''''''''''''''''''''Our Serviceas'''''''' */

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 20px;
    width: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: #ff7e00;
    /* Orange color */
}

.section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Container and Cards */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 68px;
    width: 306px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #00355F;
    /* Orange border on hover */
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #00355F;
    /* Dark blue color */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #ff7e00;
    /* Orange background on hover */
}

.service-card:hover .service-icon i {
    color: #fff;
    /* White icon on hover */
}

/* Service Content */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00355F;
    /* Dark blue color */
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #ff7e00;
    /* Orange color */
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #00355F;
    /* Dark blue color on hover */
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-section {
        width: 108%;
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 26px;
    }
}


/* ''''''''''''''''''''czard'' */

/* Routes Section */
.routes-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.section-header h2 span {
    color: #ff7e00;
}

.section-header p {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Routes Grid */
.routes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Route Card */
.route-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Background Image */
.route-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.route-card:hover img {
    transform: scale(1.1);
}

/* Dark Overlay */
.route-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Content */
.route-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.route-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.route-info {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.route-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-info i {
    color: #FFD700;
}

/* Price + Button row */
.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 119%;
    margin-left: -51px;
    margin-top: -17px;
}

.route-price {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
}

.btn-book {
    background: #FFD700;
    color: #f6f8f9;
    ;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-book:hover {
    background: #00355F;
    color: #fff;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.route-card {
    animation: fadeInUp .7s ease forwards;
    opacity: 0;
}

.route-card:nth-child(1) {
    animation-delay: .1s;
}

.route-card:nth-child(2) {
    animation-delay: .2s;
}

.route-card:nth-child(3) {
    animation-delay: .3s;
}

.route-card:nth-child(4) {
    animation-delay: .4s;
}

.route-card:nth-child(5) {
    animation-delay: .5s;
}

.route-card:nth-child(6) {
    animation-delay: .6s;
}

/* Responsive */
@media (max-width:1024px) {
    .routes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:576px) {
    .routes-container {
        grid-template-columns: 1fr;
    }

    .route-card {
        height: 100%;
        width: 100%;
        margin-left: 7%;
        text-align: center;
    }

    .footer-logo img {
        width: 87%;
        margin-left: -15px;
        margin-top: -17px;
    }
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff7e00;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #e67200;
}


/* ''''''''''''''''''''About '' */


/* ''''''''''''''''''''''About us ''=================------------ */

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Side - Image */
/* Gallery */
.Details-gallery {
    flex: 1;
}

.Details-main-image {
    border-radius: 8px;
    overflow: hidden;
}

.Details-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s;
}

.Details-main-image:hover img {
    transform: scale(1.05);
}

.Details-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.Details-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.Details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Details-thumb.active {
    border-color: #ff7e00;
}

/* About Image Carousel */
.gallery-img {
    height: 100px;
    /* small size for mini gallery */
    width: auto;
    object-fit: cover;
    border-radius: 5px;
}

#aboutGallery {
    max-width: 100%;
}

#aboutGallery img {
    height: 150px;
    /* small size for gallery slider */
    object-fit: cover;
    border-radius: 5px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    background-color: #ff7e00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    max-width: 80%;
}

/* Right Side - Content */
.about-content {
    flex: 1;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ff7e00;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #00355F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title span {
    color: #ff7e00;
}

.about-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 126, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff7e00;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: #ff7e00;
    color: #fff;
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00355F;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #777;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #ff7e00;
}

.stat-text {
    font-size: 14px;
    color: #777;
}

/* About Buttons */
.about-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff7e00;
    color: #fff;
    border: 2px solid #ff7e00;
}

.btn-primary:hover {
    background-color: #e67200;
    border-color: #e67200;
}

.btn-outline {
    background-color: transparent;
    color: #00355F;
    border: 2px solid #00355F;
}

.btn-outline:hover {
    background-color: #00355F;
    color: #fff;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.about-content {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -15px;
    }

    .experience-badge .years {
        font-size: 30px;
    }

    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: 45%;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
        width: 112%;
    }

    .section-title {
        font-size: 24px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .experience-badge .years {
        font-size: 24px;
    }

    .experience-badge .text {
        font-size: 10px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .btn {
        width: 39%;
        text-align: center;
        font-size: 13px;
    }

    .stat-item {
        width: 100%;
    }
}

/* ==============================='''''''''''''''''''''''Texi servive''''''''''''''''''''''''====================' */

/* Section */

/* Section */
.package-section-tour {
    padding: 60px 20px;
    background: #f8f8f8;
}

/* Card */
.package-card-tour {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.package-card-tour:hover {
    transform: translateY(-10px);
}

/* Card Image */
.package-card-tour img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-tour:hover img {
    transform: scale(1.1);
}

/* Overlay */
.card-overlay-tour {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

/* Title */
.card-overlay-tour h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Buttons */
.card-buttons-tour {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.card-buttons-tour a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details-tour {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-details-tour:hover {
    background: #fff;
    color: #333;
}

.btn-book-tour {
    background: #ff7e00;
    color: #fff;
}

.btn-book-tour:hover {
    background: #e56b00;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #00355f;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #ff7e00;
}

/* =================== RESPONSIVE =================== */

/* Mobile: 0 - 767px */
@media (max-width: 767px) {
    .package-card-tour img {
        height: 200px;
        /* smaller height for mobile */
    }

    .card-overlay-tour h3 {
        font-size: 18px;

    }

    .card-buttons-tour a {
        padding: 8px;
        font-size: 14px;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .package-card-tour img {
        height: 220px;
    }

    .card-overlay-tour h3 {
        font-size: 19px;

    }

    .card-buttons-tour a {
        padding: 9px;
        font-size: 15px;
    }
}

/* Desktop: 1024px and above */
@media (min-width: 1024px) {
    .package-card-tour img {
        height: 250px;
    }

    .card-overlay-tour h3 {
        font-size: 20px;
    }

    .card-buttons-tour a {
        padding: 10px;
        font-size: 16px;
    }
}

/* ''''''''''''''''''''''''''''''''''''''''''''''''Team'''''''' */

.team-section--slider-team {
    padding: 60px 20px;
    text-align: center;
    margin-left: 48px;
    background: #eef5ff;
}

.team-section--slider-team h2 {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 10px;
}

.team-section--slider-team p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

/* ===== Swiper Slider ===== */
.myTeamSwiper--slider-team {
    padding-bottom: 50px;
}

.swiper-slide--slider-team {
    display: flex;
    justify-content: center;
}

.team-card--slider-team {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.team-card--slider-team:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* ===== Team Image ===== */
.team-card--slider-team img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #ffd700;
}

/* ===== Social Icons ===== */
.social-icons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card--slider-team:hover .social-icons {
    opacity: 1;
}

.social-icons a {
    color: #004aad;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

/* ===== Text Content ===== */
.team-card--slider-team h3 {
    color: #004aad;
    font-size: 1.3rem;
    margin: 0;
    padding: 15px;
    margin-bottom: 5px;
}

.team-card--slider-team h5 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.team-card--slider-team p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

/* ===== Swiper Arrows ===== */
.swiper-button-next--slider-team,
.swiper-button-prev--slider-team {
    color: #004aad;
    background: rgba(255, 215, 0, 0.8);
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    top: 45%;
}

.swiper-button-next--slider-team:hover,
.swiper-button-prev--slider-team:hover {
    background: #ffd700;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .team-card--slider-team {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .team-card--slider-team {
        width: 220px;
    }

    .team-section--slider-team h2 {
        font-size: 2rem;
    }

    .team-section--slider-team p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-card--slider-team {
        width: 90%;
    }

    .swiper-button-next--slider-team,
    .swiper-button-prev--slider-team {
        display: none;
    }
}



/* ''''''''''''''''''''''''''''''''''''''Booking'''''''''' */


/* ''''''''''''''''''''''''''''''''''''''''''''''Booking'''''''''========================////////////////////////////' */

/* Section Background */
.plackraj-booking-section {
    padding: 80px 0;

    background: linear-gradient(135deg, #00355F, #005f99);
    color: #fff;
}

.plackraj-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.plackraj-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.plackraj-section-header h2 span {
    color: #ffcc00;
}

.plackraj-section-header p {
    font-size: 18px;
    color: #eee;
}

/* Booking Content */
.plackraj-booking-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Form */
.plackraj-booking-form-container {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.plackraj-booking-form-header h3 {
    font-size: 24px;
    color: #00355F;
}

.plackraj-form-group {
    margin-bottom: 20px;
}

.plackraj-form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #00355F;
}

.plackraj-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.plackraj-form-row {
    display: flex;
    gap: 20px;
}

.plackraj-btn-continue {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff7e00, #ffb300);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.plackraj-btn-continue:hover {
    background: linear-gradient(135deg, #e67300, #cc9900);
    transform: translateY(-2px);
}

/* Map */
.plackraj-map-container {
    flex: 1;
}

.plackraj-map {
    height: 350px;
    background: #eee;
    border-radius: 10px;
    position: relative;
}

.plackraj-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
}

.plackraj-map-placeholder i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #00355F;
}

/* Responsive */
@media (max-width: 992px) {
    .plackraj-booking-content {
        flex-direction: column;
    }

    .plackraj-map {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .plackraj-section-header h2 {
        font-size: 28px;
    }

    .plackraj-booking-section {
        width: 424px;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''HOtaal''''''''''''''''''''''' */

/* Section */
.hotel-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.hotel-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hotel-section p {
    color: #777;
    margin-bottom: 30px;
}

/* Cards */
.hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
}

.hotel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hotel-content {
    padding: 15px;
}

.hotel-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* 
.hotel-content h5 {
    font-size: 12px;
    margin-top: -28px;
    margin-left: 12pc;
} */

.hotel-content .rating {
    font-size: 14px;
    color: #ff9800;
    margin-bottom: 8px;
}

.hotel-content .price {
    font-size: 16px;
    font-weight: 700;
    color: #e53935;
}

/* Progress Bar */
.progress-container {
    position: relative;
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: #ff7e00;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-circle {
    position: absolute;
    top: -6px;
    left: 0;
    width: 18px;
    height: 18px;
    background: #ff7e00;
    border-radius: 50%;
    transform: translateX(0%);
    transition: transform 0.3s ease;
}

/* Swiper nav */
.swiper-button-next,
.swiper-button-prev {
    color: #00355f;
}

/* Hotel Card Buttons */
.hotel-content .btn {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Primary Button */
.hotel-content .btn-primary {
    background-color: #00355f;
    border: none;
}

.hotel-content .btn-primary:hover {
    background-color: #cda815;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.hotel-content .btn-success {
    background-color: #25D366;
    border: none;
}

.hotel-content .btn-success:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

/* Responsive spacing */
.hotel-content .d-flex a {
    flex: 1;
    text-align: center;
    margin: 0 5px;
}

/* For small screens: buttons stack */
@media (max-width: 576px) {
    .hotel-content .d-flex {
        flex-direction: column;
    }

    .hotel-content .d-flex a {
        margin: 5px 0;
        width: 100%;
    }
}

/* * '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' Fooyrtr '' '' '' */

/* Footer Main */
.travel-footer {
    background-color: #00355F;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    max-width: 1200px;
    margin: auto;
}

/* About */
.footer-about h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Links */
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* Contact */
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    margin: 15px 0;
}

.footer-subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-subscribe button {
    padding: 10px 15px;
    background: #ff7e00;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background: #e67300;
}

/* Payment Logos */
.footer-payments img {
    height: 25px;
    margin: 5px;
    background: #fff;
    padding: 3px 6px;
    border-radius: 4px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #ddd;
}

@media (max-width: 768px) {

    .travel-footer {
        width: 113%;
    }
}