/* Common classes */
.body,html{
    overflow-x: hidden;
}
.container{
    max-width:1300px;
    margin:0 auto;
    padding:0 20px;
    box-sizing:border-box;
}
/* navbar stars */
.img_1{
    margin-top:80px;
    margin-left:-42px;
}
.nav_ul{
    height:100px;
    top:0;
    left:0;
    right:0;
    z-index:300;
}
.navbar-nav{
    margin-left: 382px;
    margin-top: 12px;
    color:white;
}
.navbar-nav a{
    color:black;
}
.active{
    color:#ffcc00!important;
}
.nav_5{
    margin-left: 81px;
}
.btn_12{
    color:white;
    width:82px;
    height:36px;
    border-radius:5px;
    margin-top:11px;
}
/* navbar ends */
/* banner starts */
.btn-1 {
    background-color: #FFAE00;
    margin-left:235px;
    padding:13px 13px;
    border-radius: 5px;
}
.left_ban{
    width:790px;
    height:797px;
    margin-top:-42px;
}
.left_ban{
    margin-left:-215px;
    padding-top:800px;
}
.span-2{
    color:#FFAE00;
}
.right_ban{
    width:803px;
    height:797px;
    margin-top:80px;
    margin-left: -106px;
}
.xxn{
    left:521px;
    top:61px;
}
.x_1{
    max-width:928px;
    height:464px;
}
.car_banner{
    margin-top:42px;
}
.heading-1{
    margin-top:-498px;
    margin-left:180px;
}
.para_g{
    margin-left:180px;
    font-size:19px;
    line-height: auto;
    letter-spacing:0%;
}
/* banner ends */
/* search bar stars */
.search-box {
    background: #fff;
    padding: 30px 58px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width:1122px;
    height:155px;
    top:-200px;
  }
  .form-label {
    font-size: 20px;
    font-family: poppins;
    line-height: auto;
    letter-spacing:0%;
    font-weight:bold;
  }
  .form-text {
    color: #B0B0B0;
    font-size: 15px;
    font-family: poppins;
    line-height: auto;
    letter-spacing:0%;
  }
  .search-btn {
    background-color: #f4a100;
    color:black;
    font-weight: bold;
    max-width:134px;
    height:52px;
  }
  .search-btn:hover {
    background-color: #d88f00;
  }
/* search bar ends */
/* Faster checkout stars */
.head_109{
    margin-top:-94px;
}
:root {
    --primary-color: #FF9F1C;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-radius: 12px;
}
/* Slider Container Styles */
.travel-slider {
    position: relative;
    padding: 20px 40px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.slider-container {
    overflow: hidden;
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}
/* Travel Card Styles */
.slide {
    min-width: calc(33.333% - 14px);
    flex: 0 0 auto;
}
.travel-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 150px; 
}

.travel-card:hover {
    transform: translateY(-5px);
}

.card-inner {
    display: flex;
    height: 100%;
}

.card-image {
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.route {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}
.route .fa-arrow-right {
    color: var(--primary-color);
    font-size: 14px;
}
.schedule {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
/* Price Section Styles */
.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: white;
}
.price {
    display: flex;
    flex-direction: column;
}
.price .label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}
.price .amount {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}
.book-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}
.book-btn:hover {
    background-color: #e88c0c;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.nav-btn:hover {
    background: var(--primary-color);
    color: white;
}
.prev-btn {
    left: 10px;
    top:50%;
    transform:translate(0%,-50%);   
}
.next-btn {
    right: 10px;
    top:50%;
    transform:translate(0%,-50%);
}
.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide {
        min-width: calc(50% - 10px);
    }
    
    .travel-card {
        height: 140px;
    }
    
    .card-image {
        width: 140px;
    }
}
@media (max-width: 768px) {
    .travel-slider {
        padding: 15px 30px;
    }   
    .slide {
        min-width: calc(100% - 0px);
    }
    .travel-card {
        height: 130px;
    }
    .card-image {
        width: 130px;
    }
}
@media (max-width: 576px) {
    .travel-slider {
        padding: 10px 25px;
    }   
    .travel-card {
        height: 120px;
    }
    .card-image {
        width: 120px;
    }
    .card-content {
        padding: 10px;
    }
    
    .route {
        font-size: 14px;
    }
    
    .schedule {
        font-size: 12px;
    }
    
    .price-section {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 326px) {
    .travel-slider {
        padding: 10px 20px;
    }
    
    .travel-card {
        height: 110px;
    }
    
    .card-image {
        width: 110px;
    }
    
    .card-content {
        padding: 8px;
    }
    
    .route {
        font-size: 13px;
        gap: 6px;
    }
    
    .schedule {
        font-size: 11px;
    }
    
    .price .label {
        font-size: 10px;
    }
    
    .price .amount {
        font-size: 13px;
    }
    
    .book-btn {
        padding: 4px 12px;
        font-size: 12px;
    }
    
    .price-section {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
}
/* Faster checkout ends */
.rent_img{
    width:552px;
    height:428px;
    margin-top:58px;
}
/* Faster checkout ends */
/* Popular Catagories starts */
.head-11{
    margin-top:71px;
}
/* choose your plan starts */
.ul{
    list-style-type: none;
}
.head_e{
    font-size:45px;
    font-weight:600;
    line-height:auto;
    letter-spacing:0%;
    margin-top:75px;
}
.para_o{
    font-size:14px;
    line-height:auto;
    letter-spacing:0%;
    color:#8D8D8D;
    font-family: poppins;
}
.head-m{
    font-size:24px;
    line-height:auto;
    letter-spacing:0%;
    margin-top:-71px;
    margin-left:23px;
}
.para_a{
    font-size:14px!important;
    line-height:auto;
    letter-spacing:0%;
    color:#8D8D8D;
    font-family: poppins;
    margin-top:10px;
}
.img_u{
    margin-left:-61px;
    margin-top:70px;
}
.head_ei{
    font-size:24px;
    line-height:auto;
    letter-spacing:0%;
    margin-top:-66px;
    margin-left:27px;
}
.img_l{
    margin-left:-41px;
    margin-top:4px;
}
.para_op{
    font-size:14px!important;
    line-height:auto;
    letter-spacing:0%;
    color:#8D8D8D;
    font-family: poppins;
    margin-left:28px;
}
.img_q{
    margin-left:-34px;
    margin-top:53px;
}
.head_xa{
    font-size:24px;
    line-height:auto;
    letter-spacing:0%;
    margin-top:-66px;
    margin-left:27px;
}
.para_ji{
    font-size:14px!important;
    line-height:auto;
    letter-spacing:0%;
    color:#8D8D8D;
    font-family: poppins;
    margin-left:28px;
}
.left_1{
    margin-top:65px;
}
.right_1{
    margin-top:65px;
}
/* choose your plan ends */
/* Client Review Starts */
.head_1{
    margin-top:54px;
    font-size:45px !important;
    font-weight:600;
}
.cRwoc{
    margin-top:58px;
    margin-left:-331px;
}
.CRlower_right_1{
    margin-left:965px;
    margin-top:-193px;
}
.para_63{
    left:-21px;
    top:35px;
}
.img_245{
    left:309px;
    top:-5px;
}
.para_53{
    margin-left:-41px;
    margin-top:99px;
}
.para_69{
    margin-left:-38px;
    margin-top:36px;
}
.r_1{
    margin-left:-38px;
    margin-top:20px;
}
.testimonial-section{
    margin-top:-73px;
    margin-left: 34px;
}
:root {
    --primary-color: #FF9900;
    --text-color: #333;
    --card-bg: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
.testimonial-section {
    /* background-color: #f8f9fa; */
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.testimonial-slider {
    padding: 40px 0;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-item {
    min-width: 100%;
    padding: 0 15px;
    margin-left:50px;
}
.testimonial-content {
    position: relative;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-image {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 120px 30px 30px;
    margin-top: 66px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    width: 100%;
    max-width: 432px;
    margin-left: -45px;
    margin-right: auto;
}
.CRlower_right{
    margin-left:226px;
}
.CRlower_left{
    margin-left:100px;
    padding-left:28px;

}
.testimonial-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-name {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rating .fas.fa-star {
    color: var(--primary-color);
}

.review-count {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 3;
}

.nav-btn:hover {
    color: #e88c0c;
}

.nav-btn.prev {
    left: -20px;
}

.nav-btn.next {
    right: -20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-content {
        padding-top: 80px;
    }

    .client-image {
        width: 160px;
        height: 160px;
    }

    .testimonial-card {
        padding: 100px 20px 20px;
    }

    .nav-btn {
        font-size: 1.5rem;
    }

    .nav-btn.prev {
        left: -10px;
    }

    .nav-btn.next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        padding-top: 60px;
    }

    .client-image {
        width: 120px;
        height: 120px;
    }

    .testimonial-card {
        padding: 80px 15px 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .review-count {
        font-size: 0.8rem;
    }
}

@media (max-width: 326px) {
    .client-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-card {
        padding: 70px 10px 10px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .client-name {
        font-size: 1rem;
    }
}
.cR_Rakesh{
    margin-bottom:20px;
    margin-left: -52px;
    margin-top: -12px;
    max-width:402px;
    height:267px;
}

/* client Review Ends */
/* counter section starts */
.counter-section {
    background-color: #ffa500;
    padding: 60px 0;
}
.counter-box {
    text-align: center;
}
.counter-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}
.counter-text {
    font-size: 24px;
    color: #000;
}
/* Counter section ends */
/* Form section starts */
.rect_3{
    margin-top:18px;
    padding-left:340px;
}
.heading_quest{
    left:550px;
    right:100px;
    top:77px;
    font-size:47px;
}
.name_1{
    left:506px;
    top:129px;
    max-width:268px;
    height:44px;
}
.name_2{
    left:506px;
    top:155px;
    max-width:268px;
    height:44px;
}
.name_3{
    max-width:268px;
    height:94px;
    left:507px;
    top:209px;
}
.para_36{
    padding-left:572px;
    top:100px;
    font-size:24px;
}
.img_71{
    height:180px;
    max-width:180px;
    margin-left: 106px;
    margin-top:-100px;
}
.s_8{
    padding-left:-31px;
    top:99px;
    left:255px;
    font-size:16px;
}
.btn_i{
    border-radius:10px;
    font-size:15px;
    font-family:'poppins';
    margin-left:69px;
    top:298px;
    left:-356px;
  }
  .btn_g{
    border-radius:10px;
    font-size:15px;
    font-family:'poppins';
    margin-left:1px;
    margin-top:37px;
    top:159px;
    left:-153px;
  }
.img_231{
    max-width:691px;
    height:138px;
    left:-738px;
    top:417px;
}
.btn_6{
    left:502px;
    top:226px;
    padding:15px 15px;
    border-radius:10px;
    color:white;
}
.spn_3{
    font-size:25px;
    font-family:'poppins';
    margin-left:20px;
  }
.spn_4{
    font-size:25px!important;
    font-family:'poppins';
    margin-left:-2px;
  }
/* form section ends */
/* footer section starts */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer .social-icons a {
    margin-right: 20px;
    max-width:1600px;
    height:1223px;
}
.social-icons a {
    color: #FFAE00;
}
.footer .subscribe input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}
.footer .subscribe button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffcc00;
    color: #000;
}
.img_2{
    margin-top:319px;
    left:100px;
    margin-left:-30px;
}
.para_91{
    margin-top:-87px;
    margin-left:0px;
}
.heading-68{
    margin-top:466px;
    margin-left:50px;
}
.li_9{
    margin-top:19px;
    margin-left:50px;
}
.heading-78{
    margin-top:470px;
    margin-left:50px;
}
.li_10{
    margin-top:19px;
    margin-left:50px;
}
.sub_10{
    margin-top:-206px;
    margin-left:916px;
}
.f_2{
    margin-top:-19px;
}
.f_3{
    margin-top:-19px;
}
.i_1, .i_2, .i_3, .i_4{
    padding-right:10px;
    /* background-color: #ffa500; */
}
/* Footer ends */