body {
    /*font-family: "Poppins", serif;*/
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 16px;
    line-height: 24px;
    overflow-x: hidden;
}

.container-fluid{
    max-width: 1920px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}


.container{
    max-width: 1170px !important;
    width: 100%;
    margin: 0 auto;
}

p{
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #333;
}

/**********HEADER**********/

.top-header{
    padding: 5px 0;
    background-color: rgb(48 48 48);
    border-bottom: 1px solid #3e3e3e;
}

.header-left ul{
    padding: 0px;
    margin: 0px;
}

.header-left ul li{
    list-style-type: none;
    display: inline-block;
    padding-right: 15px;
}

.header-left ul li a{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.header-left p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.header-left p a{
    color: #fff;
    text-decoration: none;
    padding-left: 10px;
    color: #FCE45B;
}

.header-left p a i{
    font-size: 15px;
}

.header-right ul{
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: end;
    float: right;
}

.header-right ul li{
    list-style-type: none;
    display: inline-block;
    padding-left: 15px;
}

.header-right ul li a{
    font-size: 16px;
    color: #fff;
}

.header-right ul li a:hover{
    color: #FD4441;
}

a.btn.btn-price{
    font-size: 15px;
    padding: 5px 20px;
    line-height: 19px;
    border: none;
    border-radius: 30px;
    outline: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 1400% 1400%;
    animation: rainbowStripes 5s linear infinite;
    float: right;
}
@keyframes rainbowStripes {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

a.btn.btn-price:hover{
    color: #fff;
}

header{
    position: absolute;
    width: 100%;
    z-index: 999;
}

.menu-section{
    padding: 0px;
    background-color: rgb(18 18 18 / 82%);

}

.menu-section .row{
    border-bottom: 1px solid #FC4440;
    margin-left: 0px;
    margin-right: 0px;
}

.menu-section nav.navbar.navbar-expand-lg.bg-body-tertiary{
    background-color: transparent !important;
    padding: 0px;
}

.menu-section.fixed-top{
    background-color: rgb(253 68 65 / 94%);
    box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
}

.menu-section.fixed-top .navbar-brand img {
    width: 60px;
    position: relative;
    top: 0px;
}

.menu-section.fixed-top .navbar-expand-lg .navbar-collapse{
    border-top: none;
}

a.navbar-brand {
    width: 90px;
    padding: 0px !important;
}

.navbar-brand img{
    width: 65px;
}

.navbar-brand h6{
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.navbar-brand h6 span{
    color: #fa0000;
}

.navbar-fixed {
  top: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding: 10px 24px;
    font-size: 20px;
    line-height: 44px;
    font-weight: 400;
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active{
    color: #FCE45B;
}

.navbar-expand-lg .navbar-nav .dropdown-menu{
    padding: 0px;
    border-radius: 0px;
    background-color: #fff;
    border: none;
    width: 200px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FD4441;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li{
    border-bottom: 1px solid #eee;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child{
    border-bottom: none;
}

a.dropdown-item {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    background-color: transparent;
    padding: 10px 10px;
}

a.dropdown-item i{
    padding-right: 5px;
}

a.dropdown-item:last-child{
    border-bottom: none;
}

a.dropdown-item:hover{
    color: #FD4441;
    padding: 10px 10px;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    background-color: #fff;
    color: #000;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}



/**********MOBILE MENU***********/

.clickmenus{
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #000;
    z-index: 99;
    display: none;
    float: left;
    background-color: #FCE45B;
    padding: 10px 12px;
    border-radius: 10px;
}

.clickmenus h6{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #dc3545;
    text-transform: uppercase;
    float: right;
    margin-left: 10px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fa0000;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #222;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #fff;
}

.sidenav .closebtn {
    position: absolute;
    top: 8px;
    right: 11px;
    font-size: 50px;
    margin-left: 50px;
    z-index: 9999;
    padding: 0px;
    color: #fff;
}

@media screen and (max-height: 450px) {
  .sidenav a {font-size: 18px;}
}


.sidenav .card{
    background-color: transparent;
    border: none;
}


.card-header{
  background-color: transparent;
  border-bottom: 1px solid #eee;
}

.sidenav .card-body{
    padding: 0 10px;
}

.mobile-menus ul{
    padding: 0px;
    margin: 0px;
}

.mobile-menus ul li{
    list-style-type: none;
}

.mobile-menus ul li a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    padding: 14px 20px;
    border-bottom: 1px solid #d96506;
}

.sidenav .card-body ul li a {
    font-size: 12px;
}


.sidenav .card-body ul li a:hover {
    color: #fff;
    font-size: 12px;
    background-color: transparent;
}

.mobile-menus ul li a i.fa{
    float: right;
    margin-top: 5px;
}


@media(max-width: 991px)
{
  .clickmenus{
    display: block;
    top: 54px;
    right: 26px;
    left: unset;
  }

  .fixed-top .clickmenus {
    top: 10px;
    z-index: 9;
  }

  .navbar-light .navbar-brand{
    display: block;
  }

  .navbar-toggler-icon{
    display: none;
  }

  nav.navbar.navbar-expand-lg.navbar-light{
    height: auto;
  }

  .navbar-light .navbar-toggler{
    display: none;
  }
}

@media(max-width: 767px){
    .clickmenus{
        top: 88px;
    }
}


/*************BANNER SECTION************/

.banner-section .carousel .carousel-inner .carousel-item {
  height: 100vh;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* black overlay with 50% opacity */
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
    position: absolute;
    top: 75%;
    left: 15%;
    transform: translate(0%, -70%);
    color: #fff;
    text-align: center;
}

.banner-section h6{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.banner-section h1{
    font-size: 75px;
    line-height: 80px;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px #fff;
}

.banner-section p{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fefefe;
}

a.btn.btn-explore{
    border: 1px solid rgb(252 228 91 / 66%);
    background-color: rgb(252 228 91 / 66%);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

a.btn.btn-checked{
    border: 1px solid rgb(253 68 65 / 76%);
    background-color: rgb(253 68 65 / 76%);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/**************WELCOME SECTION*************/

.welcome-section{
    padding: 70px 0;
}

.welcome-section .row{
    padding-left: 120px;
    padding-right: 120px;
}

.welcome-section h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

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

a.btn.btn-book {
    border: 1px solid #FD4441;
    background-color: #FD4441;
    padding: 12px 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    max-width: 146px;
    width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-box-shadow: 0 2px 10px #FD4441;
    box-shadow: 0 2px 10px #FD4441;
    margin-bottom: 40px;
}

a.btn.btn-book:hover {
    border: 1px solid #FCE45B;
    background-color: #FCE45B;
    -webkit-box-shadow: 0 2px 10px #FCE45B;
    box-shadow: 0 2px 10px #FCE45B;
    color: #000;
}


.welcome-section .effect-1 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  height: 350px;
  border-radius: 5px;
}

.welcome-section .effect-1 .effect-img {
  font-size: 0;
}

.welcome-section .effect-1 .effect-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.welcome-section .effect-1 .effect-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  top: calc(100% - 60px);
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .65);
  transition: .5s;
}

.welcome-section .effect-1:hover .effect-text {
  top: 0;
}

.welcome-section .effect-1 .effect-text h2 {
  height: 45px;
  color: #ffffff;
  font-size: 20px;
  margin: -15px 0 0 0;
  transition: .5s;
}

.welcome-section .effect-1:hover .effect-text h2 {
  margin: 0;
}

.welcome-section .effect-1 .effect-text p {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 10px 0;
}

.welcome-section .effect-1 .effect-btn .btn {
  display: inline-block;
  padding: 7px 15px;
  color: #333333;
  font-weight: 400;
  background: #ffffff;
  text-decoration: none;
}



/****************RIDE SECTION**************/

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
}

.advantages-section h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.advantages-section p{
    text-align: center;
    margin-bottom: 30px;
}

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

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff0000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.advantage-card:hover
 {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advantage-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.advantage-icon {
    background: rgba(42, 157, 143, 0.1);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

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




/**************DESTINATION SECTION**************/

.graph-img1{
    background-color: #f7cdcd;
}

.graph-img1 img{
    width: 100%;
    height: 100px;
}

.destination-section{
    padding: 70px 0;
}


.destination-section h4{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.destination-section .image-text-overlay {
    height: 260px;
    margin-bottom: 30px;
}




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

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #e63946;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
}

.card-content {
    padding: 20px;
}

.tour-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 15px;
}

.tour-title a{
    color: #000;
    text-decoration: none;
}

.tour-title a:hover{
    color: #FD4441;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-item {
    text-align: center;
}

.detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3e3e3e;
}

.detail-label {
    font-size: 0.85rem;
    color: #5a6a7e;
    margin-top: 5px;
}

.tour-highlights {
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #333;
}

.highlight-icon {
    color: #2a9d8f;
    margin-right: 10px;
    font-size: 1.2rem;
}

.book-btn {
    display: block;
    width: 100%;
    background: #FD4441;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #d62828;
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2.2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }
}




a.btn.btn-destination{
    border: 1px solid #FD4441;
    background-color: #FD4441;
    padding: 12px 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    max-width: 236px;
    width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-box-shadow: 0 2px 10px #FD4441;
    box-shadow: 0 2px 10px #FD4441;
    margin-top: 30px;
}

a.btn.btn-destination:hover {
    border: 1px solid #FCE45B;
    background-color: #FCE45B;
    -webkit-box-shadow: 0 2px 10px #FCE45B;
    box-shadow: 0 2px 10px #FCE45B;
    color: #000;
}

/**************COST SECTION**************/

.graph-img{
    background-color: #333;
}

.graph-img img{
    width: 100%;
    height: 100px;
}

.cost-section{
    padding: 70px 0;
    background-color: #eee;
}

.cost-section h4{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.cost-box{
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 1px 6px rgb(225 225 225 / 20%);
}

.cost-box img{
    width: 100%;
    height: 280px;
    border-radius: 10px 10px 0 0;
}

.cost-content {
    background-color: #e3e3e3;
    border-radius: 0 0 10px 10px;
}

.cost-box h5{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    text-align: center;
}

.cost-box h5 a{
    color: #000;
    text-decoration: none;
}

.cost-box h5 a:hover{
    color: #FD4441;
}

.cost-box p{
    text-align: center;
    color: #999;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 0px;
}

a.btn.btn-bike{
    border: 1px solid #FD4441;
    background-color: #FD4441;
    padding: 12px 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-box-shadow: 0 2px 10px #FD4441;
    box-shadow: 0 2px 10px #FD4441;
    margin-bottom: 40px;
}

a.btn.btn-bike:hover {
    border: 1px solid #FCE45B;
    background-color: #FCE45B;
    -webkit-box-shadow: 0 2px 10px #FCE45B;
    box-shadow: 0 2px 10px #FCE45B;
    color: #000;
}

/***************RATING SECTION**************/

.rating-section{
    padding: 70px 0;
}

.rating-section img{
    width: 100%;
}

/**************REQUEST SECTION**************/

.request-section{
    background: url("../images/page-banne1.jpg") top center no-repeat;
    width: 100%;
    background-size: cover;
}

.request-section .overlay{
    background-color: rgb(0 0 0 / 63%);
    padding: 80px 0;
}

.request-section .form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.request-section .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.request-section .form-header h4{
    color: #000;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 10px;
    font-weight: 700;
}

.request-section .form-header p {
    color: #666;
    font-size: 1.1rem;
}

.request-section .form-group {
    margin-bottom: 15px;
    position: relative;
}

.request-section .form-row {
    display: flex;
    gap: 20px;
}

.request-section .form-row .form-group {
    flex: 1;
}

.request-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.request-section input, .request-section textarea, .request-section select {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.request-section input:focus, .request-section textarea:focus, .request-section select:focus {
    outline: none;
    border-color: #FD4441;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.request-section textarea {
    min-height: 100px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    height: 20px;
    width: 20px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #555;
}

.submit-btn {
    background: linear-gradient(135deg, #FD4441, #ff9e00);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #ff9e00, #FD4441);
}

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


.icon {
    display: inline-block;
    margin-right: 8px;
    color: #FD4441;
}

/* Phone input custom styles */
.phone-container {
    position: relative;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 10px 0 0 10px;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-right: none;
}

.iti__selected-flag {
    padding: 14px 16px;
}

.iti__country-list {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

input[type="tel"] {
    border-radius: 10px;
    padding-left: 10px;
}

.phone-container:focus-within .iti__flag-container {
    border-color: #FD4441;
    background-color: #fff;
}

.phone-container:focus-within input[type="tel"] {
    border-color: #FD4441;
    background-color: #fff;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-header h1 {
        font-size: 1.9rem;
    }

    .iti--container {
        width: 100%;
    }
}

.request-section img{
    transform: rotate(40deg) scaleX(-1);
    width: 100%;
    margin-top: 150px;
}


/*****************TESTIMONIALS SECTION***************/

.testimonials-section{
    padding: 80px 0;
    background-color: #f9e4e4;
}

.testimonials-section h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

p.event-content {
    padding-left: 400px;
    padding-right: 400px;
}

.testimonials-section .quote-icon{
    width: 160px !important;
    float: left;
    margin-right: 20px;
}

.testimonials-section .quote-icon i{
    font-size: 64px;
    color: #000;
    position: absolute;
    left: 4%;
    top: 42%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

p.description{
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #000;
}

p.description span{
    display: block;
    font-size: 14px;
    line-height: 45px;
    font-weight: 600;
    position: relative;
    top: 10px;
    display: flex;
}

p.description span img{
    width: 50px !important;
    height: 50px ;
    border-radius: 30px;
    margin-right: 10px;
}

.testimonials-section .owl-carousel .owl-item .quote-icon img{
    filter: brightness(0%);
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span{
    background-color: #FD4441 !important;
}
.testimonials-section .owl-theme .owl-nav{
    display: none !important;
}

/**************NEWS SECTION*************/

.news-section{
    padding-top: 70px;
    padding-bottom: 100px;
}

.news-section h4{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.news-section .card {
  overflow: hidden;
  box-shadow: 0px 2px 20px #d7dfe2;
  background: white;
  border-radius: 0.5rem;
  position: relative;
  width: 100%;
  transition: 250ms all ease-in-out;
  margin-bottom: 30px;
}

.news-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 40px #d7dfe2;
}

.banner-img {
  position: absolute;
  object-fit: cover;
  height: 14rem;
  width: 100%;
}

.category-tag {
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  background: red;
  padding: 0.5rem 1.3rem 0.5rem 1rem;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  top: 1rem;
  border-radius: 0 2rem 2rem 0;
}

.popular {
  background: #ef257a;
}

.technology {
  background: #651fff;
}

.psychology {
  background: #e85808;
}

.news-section .card-body {
  margin: 15rem 1rem 1rem 1rem;
  padding: 0px;
}

.blog-hashtag {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

.blog-title {
  font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-title a{
    color: #000;
    text-decoration: none;
}

.blog-title a:hover{
    color: #FD4441;
}

.blog-description {
  color: #000;
  font-size: 0.9rem;
}

.news-section .card-body ul{
    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
}

.news-section .card-body ul li{
    list-style-type: none;
    display: inline-block;
    padding-right: 15px;
}

.news-section .card-body ul li a{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #585858;
    text-decoration: none;
}

.news-section .card-body ul li a:hover{
    color: #FD4441;;
}

a.views {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
}

a.views:hover{
    color: #FD4441;
    text-decoration: none;
}


/************FOOTER************/

footer{
    background: #111 url("../images/footer-bg.png") top center no-repeat;
    background-size: cover;
    width: 100%;
    background-attachment: fixed;
}

.top-footer p{
    color: #fff;
    margin-bottom: 10px;
}

.top-footer p i{
    color: #FD4441;
    padding-right: 5px;
}

.top-footer{
    padding-top: 60px;
    padding-bottom: 40px;
}

.top-footer-content p{
    line-height: 30px;
}

.top-footer ul{
    padding: 0px;
    margin: 0px;
    margin-top: 20px;
}

.top-footer ul li{
    list-style-type: none;
    display: inline-block;
}

.top-footer ul li a i{
    border: 1px solid #fff;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
    color: #FD4441;
    width: 30px;
    height: 30px;
    margin-right: 6px;
    text-align: center;
    line-height: 18px;
}

.top-footer ul li a i:hover{
    border: 1px solid #FD4441;
    background-color: #FD4441;
    color: #fff;
}

.newslatter-box{
    background: url("../images/subscribe-bg.png") top center no-repeat;
    width: 100%;
    background-size: cover;
    padding: 58px 45px;
    border-radius: 0px 0px 10px 10px;
    margin-top: -100px;
    position: relative;
}

.newslatter-box::before {
    content: "";
    position: absolute;
    border-right: 44px solid transparent;
    border-bottom: 40px solid #9C0308;
    border-top: 64px solid transparent;
    top: -64px;
    right: -42px;
    z-index: 9;
}

.newslatter-box::after {
    content: "";
    position: absolute;
    border-left: 44px solid transparent;
    border-bottom: 40px solid #9C0308;
    border-top: 64px solid transparent;
    top: -64px;
    left: -44px;
    z-index: 9;
}

.newslatter-box h4{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.newslatter-box form input{
    width: 100%;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 15px;
    border-radius: 5px;
    height: 45px;
    padding: 10px;
}

.newslatter-box form button{
    border: 1px solid #FCE45B;
    background-color: #FCE45B;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
}

.middle-footer{
    padding: 50px 0;
    border-top: 1px dashed #464646;
}

.middle-footer h4{
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.quick ul{
    padding: 0px;
    margin: 0px;
}

.quick ul li{
    list-style-type: none;
    padding-bottom: 10px;
}

.quick ul li a{
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.quick ul li a:hover{
    color: #FD4441;
}

.campaign-lists ul{
    padding: 0px;
    margin: 0px;
}

.campaign-lists ul li{
    list-style-type: none;
    display: inline-block;
    width: 47%;
    margin-right: 20px;
}

.campaign-lists ul li:last-child{
    margin-right: 0px;
}

.campaign-lists ul li h5{
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.campaign-lists ul li h5 a{
    color: #fff;
    text-decoration: none;
}

.campaign-lists ul li h5 a:hover{
    color: #FD4441;
}

.campaign-lists ul li p{
    color: #fff;
    margin-bottom: 0px;
}

.campaign-lists ul li h6{
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.campaign-lists ul li h6 span {
    background-color: #FD4441;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
    margin-right: 20px;
}

.bottom-footer{
    padding: 20px 0;
    border-top: 1px dashed #464646;
}

.bottom-footer p{
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.bottom-footer p a{
    color: #fff;
    text-decoration: none;
}

.bottom-footer p a:hover{
    color: #FD4441;
}

.btn-wrapper.poll-btn {
    position: fixed;
    top: 50%;
    right: -41px;
    z-index: 99;
    text-decoration: none;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.btn-wrapper .boxed-btn.btn-poll {
    background-color: #FD4441;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 5px 5px 0px 0px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}


/*************BACK TO TOP**************/

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: #fa0000;
    color: #fff;
    width: 45px;
    height: 44px;
    line-height: 7px;
    right: 15px;
    bottom: 40px;
    padding-top: 12px;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
    font-size: 26px;
}

.scroll-top-wrapper h5{
    margin-top: 0px;
    font-weight: 300;
    font-size: 12px;
}

/****************ABOUT US PAGE START HERE***************/

.page-banner{
  background: url("../images/page-banne1.jpg") center center no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  height: 500px;
}

.page-banner .overlay{
  background-color: rgb(0 0 0 / 35%);
  height: 500px;
    padding: 100px 0;
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
}

.page-banner h1{
    font-size: 75px;
    line-height: 80px;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px #fff;
}

.about-body{
    padding: 70px 0;
}

.company-header {
    text-align: center;
    margin-bottom: 30px;
}

.company-header h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.company-header p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 40px;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: #FD4441;
}

.service-icon {
    font-size: 2.5rem;
    color: #FD4441;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.whatdo-section{
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.whatdo-section h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.whatdo-section h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.whatdo-content{
    text-align: center;
    padding-left: 120px;
    padding-right: 120px;
    text-align: center;
    margin-bottom: 50px;
}

.whatdo-box{
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    min-height: 401px;
}

.whatdo-box ul{
    padding: 0px;
    margin: 0px;
    padding-left: 20px;
}

.whatdo-box ul li{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
}

.whatdo-box ul li:last-child{
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}









/******************SERVICE PAGE****************/

.service-section{
    padding: 80px 0;
    background-color: #eee;
}

.service-section .effect-1 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  height: 350px;
  border-radius: 5px;
}

.service-section .effect-1 .effect-img {
  font-size: 0;
}

.service-section .effect-1 .effect-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.service-section .effect-1 .effect-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  top: calc(100% - 60px);
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .65);
  transition: .5s;
}

.service-section .effect-1:hover .effect-text {
  top: 0;
}

.service-section .effect-1 .effect-text h2 {
  height: 45px;
  color: #ffffff;
  font-size: 20px;
  margin: -15px 0 0 0;
  transition: .5s;
}

.service-section .effect-1:hover .effect-text h2 {
  margin: 0;
}

.service-section .effect-1 .effect-text p {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 10px 0;
}

.service-section .effect-1 .effect-btn .btn {
  display: inline-block;
  padding: 7px 15px;
  color: #333333;
  font-weight: 400;
  background: #ffffff;
  text-decoration: none;
}

.destination-section .pagination .page-item .page-link{
    color: #000;
}

.destination-section .active>.page-link, .destination-section .page-link.active{
    background-color: #ccc !important;
    border: 1px solid #ccc !important;
}

/*********GALLERY SECTION********/

.gallery-section{
    padding: 80px 0;
    background-color: #eee;
}

.gallery-section h4{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

 .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #FD4441;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.image-overlay p {
    font-size: 0.9rem;
    color: #fff;
}

.lightbox-caption p{
    color: #fff;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    overflow: auto;
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin-top: 5%;
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-lightbox:hover {
    color: #FD4441;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav button {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lightbox-nav button:hover {
    background-color: rgba(255,107,0,0.7);
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: #ddd;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FD4441;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .lightbox-nav button {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}

/**************REIDE DETAIL PAGE**************/

.rider-banner{
  background: url("../images/rider-banner.webp") center center no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  height: 500px;
}

.rider-banner .overlay{
  background-color: rgb(0 0 0 / 35%);
  height: 500px;
    padding: 100px 0;
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
}

.rider-banner h1{
    font-size: 75px;
    line-height: 80px;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px #fff;
}

.rider-detail-section{
    padding: 80px 0;
}

.rider-detail-section h2{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
    background-color: #FFE7E6;
    border-radius: 5px 5px 0 0;
    padding: 10px;
    border-bottom: 2px solid #ffc0bd;
}

.detail-contain-box{
    background-color: #FFE7E6;
    padding: 30px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
}

.detail-contain-box img{
    width: 100%;
    border-radius: 10px;
    height: 450px;
    object-fit: cover;
}

.detail-contain-box p{
    margin-bottom: 15px;
    text-align: justify;
}

/*************BIKE BOOKING PAGE*************/

.bike-booking-section{
    padding: 80px 0;
}



:root {
    --primary-color: #FD4441;
    --secondary-color: #000;
    --light-color: #F8FAFC;
    --dark-color: #1E293B;
    --gray-color: #CBD5E1;
    --success-color: #10B981;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Layout styles */
.bike-booking-section .booking-container {
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;*/
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.bike-booking-section .booking-info {
    background: linear-gradient(135deg, var(--secondary-color), #0F172A);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bike-booking-section .booking-info h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bike-booking-section .booking-info .tour-details {
    margin-top: 30px;
}

.bike-booking-section .tour-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bike-booking-section .tour-detail-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 24px;
}

.bike-booking-section .booking-form {
    padding: 50px;
}

/* Form styles */
.bike-booking-section .form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.bike-booking-section .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.bike-booking-section .form-group {
    margin-bottom: 25px;
}

.bike-booking-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bike-booking-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.bike-booking-section input, .bike-booking-section select, .bike-booking-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bike-booking-section input:focus, .bike-booking-section select:focus, .bike-booking-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.bike-booking-section .form-section {
    margin-bottom: 35px;
}

.bike-booking-section .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.bike-booking-section .section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Motorcycle options */
.bike-booking-section .motorcycle-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bike-booking-section .motorcycle-option {
    position: relative;
}

.bike-booking-section .motorcycle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.bike-booking-section .motorcycle-option label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--gray-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bike-booking-section .motorcycle-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
}

.bike-booking-section .motorcycle-option label i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Checkbox styles */
.bike-booking-section .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bike-booking-section .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    height: 20px;
    width: 20px;
}

.bike-booking-section .checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

/* Button styles */
.bike-booking-section .btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.bike-booking-section .btn-submit:hover {
    background-color: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.bike-booking-section .btn-submit i {
    margin-left: 10px;
}

/* Signature area */
.bike-booking-section .signature-area {
    border: 1px dashed var(--gray-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 10px;
    background-color: var(--light-color);
    cursor: pointer;
}

.bike-booking-section .signature-placeholder {
    color: #64748B;
    font-style: italic;
}

/* Notification */
.bike-booking-section .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transform: translateX(150%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.bike-booking-section .notification.show {
    transform: translateX(0);
}

.bike-booking-section .notification i {
    margin-right: 10px;
}

/* Phone input styling */
.bike-booking-section .phone-input-container {
    position: relative;
}

.bike-booking-section .phone-input {
    padding-left: 50px;
}

.bike-booking-section .iti--allow-dropdown {
    width: 100%;
}

.bike-booking-section .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.bike-booking-section .iti__selected-flag {
    padding-left: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .bike-booking-section .booking-container {
        grid-template-columns: 1fr;
    }

    .bike-booking-section .booking-info {
        padding: 40px 30px;
    }

    .bike-booking-section .booking-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .bike-booking-section .form-row {
        grid-template-columns: 1fr;
    }

    .bike-booking-section .motorcycle-options {
        grid-template-columns: 1fr;
    }

    .bike-booking-section .booking-info h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .bike-booking-section .booking-info, .bike-booking-section .booking-form {
        padding: 30px 20px;
    }

    .bike-booking-section .form-title {
        font-size: 1.5rem;
    }
}

/*************BIKE DETAILS PAGE************/

.bike-detail-section{
    padding: 70px 0;
}

.bike-detail-section h2{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.bike-detail-section img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bike-detail-section p{
    text-align: justify;
}

/*************PRICING PAGE*************/

.princing-section{
    padding: 70px 0;
}

.boxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(900px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-box {
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    height: 600px;
}

/* Image Slider Styles */
.slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.princing-section .slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.princing-section .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.princing-section .slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.princing-section .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.princing-section .nav-dot.active {
    background-color: white;
}

.princing-section .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Pricing Section Styles */
.pricing-section {
    flex: 1;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular-tag {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #e74c3c;
    color: white;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 20px;
}

.bike-name {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.price-options {
    list-style: none;
    margin-bottom: 30px;
    padding: 0px;
}

.price-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #e74c3c;
    font-size: 18px;
}

.price-details {
    flex: 1;
}

.price-label {
    font-size: 16px;
    color: #34495e;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.book-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    margin-top: auto;
}

.book-button:hover {
    background-color: #c0392b;
}

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

    .tour-box {
        flex-direction: column;
        height: auto;
    }

    .slider-container {
        min-height: 300px;
    }

    .pricing-section {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .pricing-title {
        font-size: 24px;
    }

    .bike-name {
        font-size: 18px;
    }
}

/*************FAQS SECTION***********/

.faqs-body{
    padding: 80px 0;
}

.faqs-body h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

p.faqs-content{
    color: #fff;
    padding-left: 200px;
    padding-right: 200px;
    margin-bottom: 25px;
    text-align: center;
}

.faqs-section img{
    width: 100%;
    margin-top: 30px;
}

.accordion-container{
  position: relative;
  max-width: 100%;
  width: 100%;
  /*float: left;*/

}
.accordion-container > h2{
  text-align: center;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.set{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #FFE7E6;
  box-shadow: 0 5px 1px -3px rgba(0,0,0,.15);
  -webkit-box-shadow: 0 5px 1px -3px rgba(0,0,0,.15);
  -moz-box-shadow: 0 5px 1px -3px rgba(0,0,0,.15);
  -ms-box-shadow: 0 5px 1px -3px rgba(0,0,0,.15);
    margin-bottom: 15px;
    border-radius: 10px;
}
.set > a{
  display: block;
  font-size: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: #282828;
  font-weight: 600;
  background-color: #FFE7E6;
  -webkit-transition:all 0.2s linear;
  -moz-transition:all 0.2s linear;
  transition:all 0.2s linear;
    border-radius: 10px;
}
.set > a i{
  float: right;
  margin-top: 2px;
}
.set > a.active{
  background-color: #FFE7E6;
  color: #000;
}
.set .content{
  background-color: #FFE7E6;
      border-radius: 0 0 10px 10px;
  display:none;
}
.set .content p{
  padding: 10px 15px;
  margin: 0;
  color: #333;
}

/************CONTACT US PAGE************/

.address-section{
    padding: 70px 0;
}

.address-box{
    padding: 30px;
    border: 2px solid #eee;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 8px rgb(189 189 189 / 71%);
}

.address-box img{
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.address-box h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.address-box p{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}

.query-section{
    padding: 70px 0;
    background-color: #eee;
}

.query-section h2{
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.query-section form{
    background-color: #fff;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(189 189 189 / 71%);
}

.query-section form input{
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    height: 42px;
    color: #000;
    border-radius: 5px;
    margin-bottom: 15px;
}

.query-section form textarea{
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    height: 100px;
    color: #000;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.query-section form button.btn.btn-primary{
    border: none;
    background-color: #0e115a;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
}

.query-section form button.btn.btn-primary:hover{
    border: none;
    background-color: #ED3F3C;
}

/****************BLOG DETAIL PAGE***************/

.event-detail-section{
  padding: 70px 0;
}

.event-detail-left img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.event-detail-left h2{
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.event-detail-left h3{
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.event-detail-left p{
    text-align: justify;
}

.event-left-icon ul{
  padding: 0px;
  margin: 0px;
    margin-bottom: 10px;
}

.event-left-icon ul li{
  list-style-type: none;
  display: inline-block;
  padding-right: 15px;
}

.event-left-icon ul li a{
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.event-left-icon ul li a:hover{
  color: #FD4441;
}

.event-left-social ul{
  padding: 0px;
  margin: 0px;
    margin-bottom: 10px;
    text-align: right;
    margin-right: 20px;
}

.event-left-social ul li{
  list-style-type: none;
  display: inline-block;
  padding-left: 15px;
}

.event-left-social ul li a{
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.event-left-social ul li a:hover{
  color: #FD4441;
}

.event-detail-right h4{
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.event-detail-right ul{
  padding: 0px;
  margin: 0px;
}

.event-detail-right ul li{
  list-style-type: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.event-detail-right ul li:last-child{
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.event-detail-right ul li a{
  text-decoration: none;
}

.event-detail-right ul li a img{
  width: 80px;
  height: 70px;
  float: left;
  margin-right: 10px;
  border-radius: 5px;
}

.event-detail-right ul li a h5{
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.event-detail-right ul li a h5:hover{
    color: #FD4441;
}

.event-detail-right ul li p{
  font-size: 14px;
  /* line-height: 18px; */
  color: #777;
  margin-bottom: 0px;
}

/*************TEAM PAGE START HERE************/

.speakers-section-three{
    padding: 70px 0;
}



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

.team-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.card-header {
    background: linear-gradient(135deg, #f96e6c, #FA4340);
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #FA4340;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.card-body {
    padding: 35px 20px 25px;
    text-align: center;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d3436;
}

.member-position {
    color: #e63946;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 20px;
}

.member-bio {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f2f6;
    color: #e63946;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: #e63946;
    color: white;
}

.contact-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(to right, #f96e6c, #FA4340);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}





















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

.privacy-section{
    padding: 80px 0;
}

.privacy-section h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.privacy-section h3{
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.privacy-section p{
    text-align: justify;
}

/***************BIKES PAGE***************/

.bike-section{
    padding: 70px 0;
}




.bikes-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;*/
    margin-top: 40px;
}

.bike-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    background-color: #f0e4e4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bike-image {
    height: 330px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

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

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

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 71, 43, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bike-info {
    padding: 25px;
}

.bike-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
    display: flex;
    align-items: center;
}

.bike-name i {
    margin-right: 10px;
    color: #ff4b2b;
}

.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    background: #f1cdcd;
    padding: 12px;
    border-radius: 8px;
}

.spec-item i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #ff4b2b;
    width: 24px;
    text-align: center;
}

.spec-label {
    font-size: 0.9rem;
    color: #111;
}

.spec-value {
    font-weight: bold;
    margin-left: auto;
}

.features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    color: #4caf50;
    margin-right: 10px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.6);
}

.btn-secondary {
    background: #ffbcbc;
    color: #111;
    border: 1px solid #ffbcbc;
}

.btn-secondary:hover {
    background: #ffbcbc;
    color: #111;
}

.rating {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.stars {
    color: #ffd700;
    margin-right: 10px;
}

.rating-value {
    font-weight: bold;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .bikes-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    .specs {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
    }
}


/************VIDEO STORY PAGE***********/

.story-section{
    padding: 70px 0;
}

.story-section .video-background1{
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 15px;
}

.story-section p{
    text-align: justify;
}

.story-section ul{
    padding: 0px;
    margin: 0px;
    padding-left: 20px;
    margin-bottom: 15px;
}

.story-section ul li{
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
}


/**************BOOKIGN SUCCESS PAGE************/

.success-section{
    padding: 70px 0;
}

.success-section .success-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
    margin: 0 auto;
    display: block;
}

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

.success-section .success-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.success-section .success-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-section .success-icon i {
    font-size: 40px;
    color: #4CAF50;
}

.success-section .success-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.success-section .success-subtitle {
    font-size: 16px;
    opacity: 0.9;
    color: #ffffff;
    margin-bottom: 0px;
}

.success-section .booking-details {
    padding: 30px;
}

.success-section .booking-id {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.success-section .booking-id-label {
    font-weight: 600;
    color: #666;
}

.success-section .booking-id-value {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.success-section .detail-section {
    margin-bottom: 25px;
}

.success-section .detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.success-section .detail-title i {
    margin-right: 10px;
    color: #FD4441;
}

.success-section .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.success-section .detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.2s ease;
}

.success-section .detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-section .detail-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.success-section .detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.success-section .price-summary {
    background: linear-gradient(135deg, #FD4441 0%, #af0300 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.success-section .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.success-section .price-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: bold;
}


.success-section .share-section {
    margin-top: 30px;
    text-align: center;
}

.success-section .share-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.success-section .share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.success-section .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.success-section .share-btn:hover {
    transform: scale(1.1);
}

.success-section .share-btn.facebook { background: #3b5998; }
.success-section .share-btn.twitter { background: #333; }
.success-section .share-btn.whatsapp { background: #25d366; }
.success-section .share-btn.email { background: #ea4335; }

@media (max-width: 768px) {

    .success-section .success-header {
        padding: 30px 20px;
    }

    .success-section .booking-details {
        padding: 30px 20px;
    }

    .success-section .detail-grid {
        grid-template-columns: 1fr;
    }
}









/**************MEDIA QUERY*************/

@media(max-width: 1060px){
    .banner-section .carousel .carousel-inner .carousel-item{
        height: 90vh;
    }
    .banner-section h1{
        font-size: 50px;
        line-height: 60px;
    }
    .speaker-block-three .inner-box{
        max-width: 100%;
    }
}

@media(max-width: 1024px){
    .welcome-section .row{
        padding-left: 0px;
        padding-right: 0px;
    }
    .services-grid{
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .whatdo-content{
        padding-left: 0px;
        padding-right: 0px;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        padding: 10px 20px;
    }
}

@media(max-width: 991px){
    .navbar-toggler{
        display: none;
    }
    .newslatter-box{
        margin-top: 20px;
        padding: 30px;
        border-radius: 10px;
    }
    .newslatter-box::after,
    .newslatter-box::before{
        display: none;
    }
    .welcome-section .effect-1 .effect-text h2{
        font-size: 18px;
    }
    .story-section .video-background1{
        height: 400px;
    }
}

@media(max-width: 768px){
    .banner-section .carousel .carousel-inner .carousel-item{
        height: 70vh;
    }
    .banner-section h1{
        font-size: 40px;
        line-height: 50px;
    }
    .welcome-section .effect-1 .effect-text h2{
        font-size: 16px;
    }
}

@media(max-width: 767px){
    .welcome-section .effect-1 .effect-text h2{
        font-size: 24px;
    }
    .detail-contain-box img,
    .bike-image,
    .cost-box img{
        height: auto;
    }
    .request-section .form-container{
        max-width: 100%;
    }
    .banner-img{
        height: 24rem;
    }
    .news-section .card-body{
        margin: 25rem 1rem 1rem 1rem;
    }
    .whatdo-box{
        margin-bottom: 30px;
        min-height: auto;
    }
    .query-section form,
    .address-box{
        margin-bottom: 30px;
    }
    .event-detail-right ul li{
        min-height: 82px;
    }
    .event-left-social ul{
        text-align: left;
    }
    .event-left-social ul li{
        padding-left: 0px;
        padding-right: 15px;
    }
    .header-left ul{
        text-align: center;
        margin-bottom: 10px;
    }
    .header-right ul{
        float: none;
        justify-content: center;
    }
}

@media(max-width: 600px){
    .banner-section .carousel .carousel-inner .carousel-item{
        height: 55vh;
    }
    .event-detail-left h2,
    .query-section h2,
    .request-section .form-header h4,
    .banner-section h1{
        font-size: 30px;
        line-height: 36px;
    }
    .carousel-caption{
        top: 65%;
    }
    .event-detail-section,
    .bike-section,
    .address-section,
    .query-section,
    .bike-detail-section,
    .bike-booking-section,
    .top-footer,
    .whatdo-section,
    .faqs-body,
    .about-body,
    .speakers-section-three,
    .news-section,
    .request-section .overlay,
    .rating-section,
    .cost-section,
    .destination-section,
    .story-section,
    .middle-footer,
    .success-section,
    .advantages-section,
    .princing-section,
    .privacy-section,
    .rider-detail-section,
    .welcome-section{
        padding: 30px 0;
    }
    .query-section h2,
    .advantages-section p,
    .whatdo-content,
    .company-header p{
        margin-bottom: 20px;
    }
    .rider-banner h1,
    .page-banner h1{
        font-size: 40px;
        line-height: 50px;
    }
    .request-section .form-container,
    .bike-booking-section .booking-form{
        padding: 20px;
    }
    .story-section .video-background1{
        height: 250px;
    }
}

@media(max-width: 575px){
    .rider-banner,
    .rider-banner .overlay,
    .page-banner,
    .page-banner .overlay{
        height: 350px;
    }
    .banner-img {
        height: 18rem;
    }
    .news-section .card-body {
        margin: 19rem 1rem 1rem 1rem;
    }
}

@media(max-width: 450px){
    .campaign-lists ul li{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
}

@media(max-width: 420px){
    .banner-img {
        height: 14rem;
    }
    .news-section .card-body {
        margin: 15rem 1rem 1rem 1rem;
    }
}

@media(max-width: 375px){
    .clickmenus {
        top: 72px;
    }
}

































