@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 80px; /* Adjust based on header height */
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

a{
    font-family: "League Spartan", sans-serif; 
}

p{
    font-family: "League Spartan", sans-serif;
}

ul li, ol li{
    font-family: "League Spartan", sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-family: "League Spartan", sans-serif;
}

input::placeholder, textarea::placeholder {
    color: #000000;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .my-float {
    margin-top: 16px;
  }
  
  .mobile-quick {
    display: none;
  }

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Basic grid system */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

.com-padding{
    padding: 50px 0px;
}

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

.pt-10{
    padding-top: 10px;
}

/* Top Header Styles */
.top-header {
    background-color: #e20014;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    font-family: "League Spartan", sans-serif;
}

.top-header a{
    color: white;
}

/* Main Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* background-image: url(img/header-bg.jpg); */
    width: 100%;
    transition: top 0.3s;
    position: relative;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Fixed header class */
header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for visibility */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 300px;
    height: auto;
}

.cta img{
    width: 70px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}

.nav-links li a:hover{
    color: #102983;
}

.nav-links li a.active {
    color: #102983;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
}

.fade {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade.visible {
    opacity: 1;
}

.home{
    display: flex;
    background-color: #102983;
    position: relative;
}

.home .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.home .slick-dots {
    position: absolute;
    bottom: 10px;
    z-index: 999;
}

.home .slick-dots li button:before {
    font-family: slick;
    font-size: 15px;
    line-height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home .slick-dots li.slick-active button:before{
    color: #e20014;
  }

.home .slider{
    width: 75%;
}

.home .slider .item{
   position: relative;
}

.home .slider .item::after {
    content: "";
    background-color: rgb(16 41 131 / 40%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.home .slider .item .content {
    position: absolute;
    top: 208px;
    left: 0px; 
    width: 100%;
    padding: 20px;
    z-index: 999;
    text-align: center;
}

.home .slider .item .content h4{
    color: #ffffff;
    font-size: 50px;
    padding-bottom: 10px;
    line-height: 1.2;
    text-transform: capitalize;
}

.home .slider .item .content h4 span {
    display: block;
    font-weight: normal;
    font-size: 35px;
}

.home .slider .item .content a {
    background-color: #e20014;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
}

.home .slider .item .content a:hover{
    background-color: #102983;
}

.home .slider img{
    width: 100%;
    height: auto;
}

.enquiry-form {
    width: 25%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-form h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 10px;
    margin: 0;
}

.enquiry-form input, 
.enquiry-form textarea, 
.enquiry-form select {
    padding: 10px;
    width: 100%;
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
    color: #000000;
    border: 1px solid #ccc; /* Add border to ensure consistency */
    outline: none; /* Remove the default focus outline */
    background: #fff; /* Ensure background is set */
    -webkit-appearance: none; /* Remove default styling in Safari */
    appearance: none; /* General reset for non-Safari browsers */
}

.enquiry-form textarea{
    height: 100px;
}

.enquiry-form select {
    padding: 10px;
    width: 100%;
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
    color: #000000;
    border: 1px solid #ccc;
    outline: none;
    background: #fff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"%3E%3Cpath fill="none" stroke="%23000" stroke-width="1.5" d="M1 1l4 4 4-4"%3E%3C/path%3E%3C/svg%3E') no-repeat right 10px center;
    background-size: 10px 6px; /* Adjust size of the arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.enquiry-form input:focus, 
.enquiry-form textarea:focus, 
.enquiry-form select:focus {
    border-color: #102983; /* Optional: Add a focus border color */
}

.form-group{
    margin: 10px 0;
}

.enquiry-form button {
    background-color: #e20014;
    width: 100%;
    padding: 10px 20px;
    border: 0;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "League Spartan", sans-serif;
    cursor: pointer;
}

.enquiry-form button:hover{
    background-color: #3d3d3d;
}

/* main heading */

.main-heading span {
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
    font-weight: 700;
    font-family: "League Spartan", sans-serif;
}

.main-heading h3 {
    color: #e20014;
    padding-bottom: 30px;
    font-size: 36px;
    text-transform: uppercase;
}

.main-heading h3::before {
    content: "";
    width: 6%;
    height: 2px;
    background: linear-gradient(to right, #fcfdfa, #102983);
    display: inline-block;
    position: relative;
    bottom: 10px;
    right: 5px;
}

.main-heading h3::after{
    content: "";
    width: 6%;
    height: 2px;
    background: linear-gradient(to right, #102983, #fcfdfa);
    display: inline-block;
    position: relative;
    bottom: 10px;
    left: 5px;
}

/* About */

.about .row{
    align-items: center;
}

.about-us {
    padding: 0px 0px;
}

.about p {
    font-size: 18px;
    line-height: 1.2;
    text-align: justify;
}

.about img {
    width: 100%;
    height: auto;
    display: block;
}

.about p + p{
    padding-top: 10px;
}

.counter-bg{
    background-color: #102983;
    padding: 20px 0px;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.counter-box {
    background: #e20014;
    padding: 18px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* width: 180px; */
}

.counter-box  i{
    color: #ffffff;
    font-size: 40px;
}
.counter {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    font-family: "League Spartan", sans-serif; 
    padding: 15px 0px;
}

.counter-box  .label{
    color: #ffffff;
    font-family: "League Spartan", sans-serif;
    font-size: 20px;
}

/* Services */
.bus-sec{
    background: linear-gradient(180deg, #e1f2ff, #e5f4ff 41.32%, #fff);
}

.bus-sec  p.intro{
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

 /* Vertical Tabs (Desktop) */

 .tab-container {
    display: flex;
    max-width: 100%;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 30px 0px;
 }

 .tabs {
    display: flex;
    flex-direction: column;
    width: 30%;
    background: #333;
}

.tab {
    padding: 15px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #555;
    transition: 0.3s;
    font-family: "League Spartan", sans-serif;
    text-transform: uppercase;
}



.tab:hover,
.tab.active {
    background: #102983;
}

.tab-content {
    width: 70%;
    padding: 20px;
    display: none;
}

.tab-content .btn-en{
    text-align: center;
    margin-top: 10px;
}

.content-row{
    display: flex;
}

.content-row .div{
    width: 60%;
}

.tab-content h4 {
    font-size: 24px;
    color: #e20014;
    padding-bottom: 5px;
}

.tab-content p{
    font-size: 18px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.tab-content img {
    width: 100%;
    height: auto;
    display: block;
}

.tab-content a {
    background-color: #e20014;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
}

.tab-content a:hover{
    background-color: #102983;
}

.bus-inner-slider img{
    width: 100%;
    height: auto;
}

.tab-content.active {
    display: block;
}

/* Accordion (Mobile) */
.accordion {
    display: none;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item img {
    width: 100%;
    height: auto;
    display: block;
}

.accordion-header {
    background: #333;
    color: white;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    font-family: "League Spartan", sans-serif;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
}

.accordion-content p{
    line-height: 1.3;
}

.accordion-header.active {
    background: #102983;
}

.accordion-content .btn-en{
    margin-top: 20px;
}

.accordion-content a {
    background-color: #e20014;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
}

.accordion-content a:hover{
    background-color: #102983;
}

/* Responsive: Show Accordion on Mobile */
@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
    }

    .tabs {
        display: none;
    }

    .tabs, .tab-content {
        display: none !important;
    }


    .accordion {
        display: flex;
    }
}


/* Services */
.products{
    background-color: #ffffff;
}

.products .col-6{
    padding-bottom: 20px;
}

.products .col-6:last-child{
    padding-bottom: 0px;
}

.products-box {
    display: flex;
    background-color: #ffffff;
    align-items: center;
}

.products-box .image{
    width: 40%;
}

.products-box .content {
    width: 60%;
    padding: 20px 20px 0px 20px;
}

.products-box .content h3 {
    font-size: 25px;
    color: #102983;
    padding-bottom: 15px;
    font-weight: 700;
}

.products-box .content p{
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 20px;
}

.products-box img{
    width: 100%;
    height: auto;
}

.products-box a {
    background-color: #e20014;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
}

.products-box a:hover{
    background-color: #102983;
}

/* why-choose-us */
.why-choose-us {
    background-image: url(img/bus-travel.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: -1;
}

.why-choose-us::after {
    content: "";
    background-color: rgb(0 0 0 / 46%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: -1;
}

.why-choose-us .main-heading span{
    color: #ffffff;
}

.why-choose-us .main-heading h3{
    color: #ffffff;
    padding-bottom: 0px;
}

.why-choose-box{
    color: #ffffff;
    padding-top: 30px;
    text-align: center;
}

.why-choose-box .image {
    width: 100px;
    height: 100px;
    background-color: #102983;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.why-choose-box .image img{
    width: 60px;
    height: auto;
}

.why-choose-box h3 {
    font-size: 25px;
    padding: 18px 0px;
}

.why-choose-box p{
    font-size: 20px;
    line-height: 1.4;
}

/* call-action */
.call-action{
    background-color: #e20014;
    padding: 30px 0px;
}

.action-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.action-box p {
    font-size: 30px;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
}

.action-box a {
    background-color: #102983;
    padding: 18px 30px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
}


/* Gallery */
.gallery-row {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-row .item {
    width: 23.9%;
}

.gallery-row .item img{
    width: 100%;
    height: auto;
}

/* videos */
.videos{
    background: linear-gradient(180deg, #e1f2ff, #e5f4ff 41.32%, #fff);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire container */
}


/* testimonials */

.testimonials{
    background-color: #102983;
}

.testimonials .main-heading span{
    color: #ffffff;
}

.testimonials .main-heading h3 {
    color: #ffffff;
}

.testimonial-slider .item{
    margin: 0px 20px;
    
}

.testimonial-slider .item .testimonial-box{
    background-color: #e20014;
    padding: 20px 30px;
    border-radius: 10px;
}

.testimonial-slider .item .testimonial-box p{
    font-size: 20px;
    color: #ffffff;
    line-height: 1.4;
}

.testimonial-slider .item .testimonial-box h4{
    color: #ffffff;
    font-size: 24px;
    padding-top: 30px;
}

/* contact */

.contact h4{
    font-size: 30px;
    padding-bottom: 20px;
}

.contact li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    line-height: 1.4;
    padding-left: 80px;
    padding-bottom: 50px;
    word-wrap: break-word;
    text-wrap: auto;
    word-break: break-all;
}

.contact li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 60px;
    height: 60px;
    background-color: #102983;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    color: #ffffff;
}


.contact li:nth-child(1)::before {
    content: "\f3c5";
    top: 0; 
}

.contact li:nth-child(2)::before {
    content: "\f3ce";
}

.contact li:nth-child(3)::before {
    content: "\f0e0";
}

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

.contact span.middle-line{
    padding: 0px 10px;
}

.contact .enquiry-form {
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, #e1f2ff, #e5f4ff 41.32%, #fff);
}

.contact .enquiry-form h3 {
    color: #3d3d3d;
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 10px;
    margin: 0;
}

.contact .enquiry-form input, .contact .enquiry-form textarea, .contact .enquiry-form select{
    padding: 10px;
    width: 100%;
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
}

.contact .form-group{
    margin: 10px 0;
}

.contact .enquiry-form button {
    background-color: #e20014;
    width: 100%;
    padding: 10px 20px;
    border: 0;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "League Spartan", sans-serif;
    cursor: pointer;
}

.contact .enquiry-form button:hover{
    background-color: #102983;
}

.recaptcha-container {
    transform: scale(); /* Adjust scale as needed */
    transform-origin: 0 0; /* Keeps it aligned to the top-left */
    -webkit-transform-origin: 0 0;
}

.recaptcha-container iframe {
    max-width: 100% !important; /* Ensures it doesn't overflow */
    height: auto !important;
}

.thankyou{
    text-align: center;
}

.thankyou p{
    text-align: center;
    font-size: 20px;
}


/* Footer */

footer {
    background-image: url(img/header-bg.jpg);
    padding: 40px 0px;
    text-align: center;
}

footer h4{
    color: #ffffff;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
}

ul.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

ul.social-links li {
    list-style: none;
    margin: 0px 5px;
    background-color: #102983;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-links li:hover{
    background-color: #ed3b3a;
}

ul.social-links li:last-child{
    margin-right: 0px;
}

ul.social-links li a {
    color: #ffffff;
}

footer img.logo{
    width: 300px;
    height: auto;
}

footer p.copyright{
    font-size: 16px;
    color: #ffffff;
}

.clients{
    background: linear-gradient(180deg, #e1f2ff, #e5f4ff 41.32%, #fff);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
    .nav-links {
        position: fixed;
        top: 74px; /* Adjust for fixed header */
        right: 0;
        background: #3c3c3c;
        color: white;
        width: 200px;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-links li a {
        color: white;
    }

    .hamburger {
        display: flex;
    }

    .main-heading h3{
        font-size: 28px;
        text-align: center;
    }
    

    .home, .products-box, .action-box{
        flex-direction: column;
    }

    .home .slider, .home .enquiry-form, .products-box .image, .products-box .content{
        width: 100%;
    }

    .action-box p{
        font-size: 25px;
        text-align: center;
        padding-bottom: 10px;
    }

    .action-box a {
        display: inline-block;
        font-size: 18px;
        padding: 12px 20px;
    }

    .gallery-row .item {
        width: 46.9%;
    }

    .videos .col-4 + .col-4{
        padding-top: 15px;
    }

    .top-header span {
        display: block;
    }

    .top-header span + span{
        padding-top: 5px;
    }
    
    .top-header span.border-mid{
        display: none;
    }

    .products-box .content{
        padding-bottom: 20px;
    }

    .about-img{
        padding-bottom: 30px;
    }

    footer img.logo {
        width: 250px;
        height: auto;
    }

    .float {
        display: none;
    }
    
    .mobile-quick {
        display: block;
        z-index: 999;
        position: absolute;
    }
    
    .mobile-quick ul {
        padding: 0px;
        margin: 0px;
        display: flex;
        width: 100%;
        position: fixed;
        bottom: 0px;
    }
    
    .mobile-quick li {
        width: 50%;
        color: #ffffff;
        padding: 6px;
        font-size: 18px;
        list-style: none;
        text-align: center;
    }
    
    .mobile-quick li:first-child {
        background-color: #34b7f1;
    }
    
    .mobile-quick li:last-child {
        background-color: #25d366;
    }
    
      .mobile-quick li a {
        color: #ffffff;
        text-decoration: none;
      }
      .logo img {
        width: 180px;
    }
    .cta img {
        width: 60px;
        height: auto;
    }

    .about{
        background-image: none;
    }
    .about-us {
        padding: 20px 0px;
    }
    
    .enquiry-form{
        margin-top: 10px;
    }

     .home .slider .item .content {
        position: relative;
        top: 0;
        padding: 10px 0px;
        background-color: #000000;
    }
    
    .home .slider .item .content h4{
            font-size: 20px;
    }
    
    .home .slider .item .content h4 span {
    font-size: 18px;
}
    
    .counter-container{
        flex-wrap: wrap;
    }
}
