/* === Basic Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    color: #000;
}

:root {
    --main-color: #ff9900;
    --font-xxl: 1.3rem;
    --font-size: 1.2rem;
    --font-sm: 0.8rem;
    --font-lg: 1rem;
    --font-light: 300;
    --font-5xl: 2.4rem;
}

/**************** header css start *************************/


.header-outer {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

/* === Navbar === */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    padding: 10px 20px;
    position: relative;
}

    /* === Logo === */
    .header img {
        height: 60px;
        width: auto;
        cursor: pointer;
    }

/* === Hamburger Icon === */
.menu-toggle {
    font-size: 28px;
    display: none;
    cursor: pointer;
    color: #000;
}

/* === Nav Links === */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    gap: 25px;
}

    .nav-links > li {
        cursor: pointer;
        position: relative;
        padding: 10px;
        font-size: 16px;
        color: #000;
        transition: color 0.3s ease;
    }

        .nav-links > li a {
            text-decoration: none;
            color: #000;
            transition: color 0.3s ease;
        }

        .nav-links > li:hover {
            color: var(--main-color);
        }

/* === Submenu === */
.has-submenu {
    position: relative;
}

/* .subnav-links {
  display: none;
  flex-direction: column;
  list-style: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
  width: 220px;
  z-index: 999;
  
}

.subnav-links li {
  padding: 10px 20px;
  color: #333;
  transition: all 0.3s ease;
  font-size: 15px;
} */


.subnav-links {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1px 0;
    width: 220px;
    z-index: 999;
    animation-fill-mode: both;
}

    .subnav-links li {
        padding: 10px 20px;
        color: #333;
        transition: all 0.3s ease;
        font-size: 15px;
        opacity: 0;
        transform: translateY(-8px);
        animation: subItemSlide 0.4s ease-out forwards;
    }

        /* Stagger animation for each sub-item */
        .subnav-links li:nth-child(1) {
            animation-delay: 0.05s;
        }

        .subnav-links li:nth-child(2) {
            animation-delay: 0.10s;
        }

        .subnav-links li:nth-child(3) {
            animation-delay: 0.15s;
        }

        .subnav-links li:nth-child(4) {
            animation-delay: 0.20s;
        }

        .subnav-links li:nth-child(5) {
            animation-delay: 0.25s;
        }

        .subnav-links li:nth-child(6) {
            animation-delay: 0.30s;
        }

@keyframes subItemSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subnav-links li:hover {
    background: #f7f7f7;
    color: var(--main-color);
}

.inner-sub {
    font-weight: 600;
    color: var(--main-color);
    padding: 10px 20px;
}

/* 
.has-submenu:hover .subnav-links {
  display: flex;
  animation: dropdownFade 0.2s ease-in;
}
.has-submenu.active .subnav-links{
 display: flex;
  animation: dropdownFade 0.2s ease-in;
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.has-submenu:hover .subnav-links {
    display: flex;
    animation: dropdownFadeIn 0.35s ease-out forwards;
}


.has-submenu.active .subnav-links {
    display: flex;
    animation: dropdownFadeIn 0.35s ease-out forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
        visibility: hidden;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}
/* === Phone Number === */
.contact {
    background-color: var(--main-color);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 40px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact a {
        color: white;
        text-decoration: none;
    }

    .contact:hover {
        background: #000;
        color: #fff;
    }

@media (max-width: 1800px) {
    #burger-icon {
        display: none;
    }
}
/* === Responsive (mobile) === */
@media (max-width: 1000px) {
    .header {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px 5px 10px;
    }

        .header img {
            width: 100px;
            height: 37px;
            padding: 2px 0;
        }
    /* Hamburger visible on mobile */
    .menu-toggle {
        display: block;
    }

    /* Mobile nav menu */
    .nav-links {
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: relative;
        top: 0;
        left: 0;
        gap: 0px;
        border-top: 1px solid #eee;
        z-index: 999;
    }

        .nav-links.active {
            display: flex;
            padding: 0;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
            font-size: 15px;
            ;
            border-bottom: 1px solid #d0d0d0;
            padding: 8px;
        }


    /* Mobile submenu */
    /* .has-submenu .subnav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
  }

  .has-submenu.active .subnav-links {
    max-height: 500px;
  }

  .has-submenu i {
    float: right;
    margin-right: 0px;
    gap: 0px;
   
  }

  .has-submenu.active i{
    transform: rotate(180deg);
    padding-left:none;
  }
  .has-submenu.active .subnav-links li {
   font-size: 10px;
  } */
    .has-submenu .subnav-links {
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease-out, padding 0.35s ease;
    }

    .has-submenu.active .subnav-links {
        max-height: 600px;
        opacity: 1;
        padding: 1px 0;
        animation: none;
    }

        /* Re-apply staggered item animation on mobile too */
        .has-submenu.active .subnav-links li {
            opacity: 0;
            transform: translateY(-8px);
            animation: subItemSlide 0.45s ease-out forwards;
        }

            .has-submenu.active .subnav-links li:nth-child(1) {
                animation-delay: 0.1s;
            }

            .has-submenu.active .subnav-links li:nth-child(2) {
                animation-delay: 0.15s;
            }

            .has-submenu.active .subnav-links li:nth-child(3) {
                animation-delay: 0.2s;
            }

            .has-submenu.active .subnav-links li:nth-child(4) {
                animation-delay: 0.25s;
            }

            .has-submenu.active .subnav-links li:nth-child(5) {
                animation-delay: 0.3s;
            }

    .contact {
        display: none;
        margin-top: 10px;
    }

    #burger-icon {
        display: inline !important;
    }
}

/**************** header css end *************************/



/**************** Book  **************/

.book {
    width: 80%;
    padding: 1rem 0;
    box-sizing: border-box;
    margin: auto;
}

.book-inner {
    border: 4px solid var(--main-color);
    padding: 30px 30px 15px 30px;
}

.book-inner-1 {
    border: 4px solid var(--main-color);
    padding: 15px;
    /* margin:20px 0; */
}

.book-heading {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px
}

.book-heading-1 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.book-heading span {
    color: #ffa200;
}

.form-rows {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
}

    .form-rows input,
    .form-rows select,
    textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #cfcfcf;
        border-radius: 3px;
        font-size: 15px;
    }

textarea {
    height: 150px;
    resize: none;
}

.radio-group {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: left;
}

    .radio-group label {
        margin-right: 20px;
        font-size: 15px;
    }

.submit-btn {
    width: 25%;
    padding: 15px;
    background: #ffa200;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
}

    .submit-btn:hover {
        opacity: 0.9;
    }



@media (max-width: 992px) {
    .book {
        width: 100%;
        padding: 25px;
    }

    .book-inner-1 {
        margin: 0;
    }

    .book-heading {
        font-size: 28px;
    }

    .book-heading-1 {
        font-size: 1.4rem;
    }

    .form-rows {
        gap: 15px;
        display: block;
        margin-bottom: 0;
    }

        .form-rows input, .form-rows textArea, .form-rows select {
            margin-bottom: 10px;
        }

    .book-inner {
        border: 3px solid var(--main-color);
        padding: 15px 10px;
    }

    .submit-btn {
        padding: 5px !important;
    }

    #returnPassengerFields {
        display: block;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .book {
        width: 95%;
        padding: 20px;
    }

    .book-heading {
        font-size: 24px;
    }
}


@media (max-width: 480px) {
    .book {
        width: 100%;
        padding: 18px;
    }

    .book-heading {
        font-size: 22px;
        line-height: 30px;
    }

    input, select, textarea {
        font-size: 14px;
        padding: 10px;
    }
}


/***************** Book end **********/



/******* gallery start *******/

.gallery {
    text-align: center;
    padding: 20px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s;
    }

    .gallery-item .heading {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        color: #fff;
        display: flex;
        padding: 0.5rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        opacity: 0;
        transform: translate(0);
        transition: all 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.02);
    }

.gall-padd {
    padding: 0.5rem;
}

.gallery-item:hover .heading {
    opacity: 1;
}


@media (max-width: 1200px) {

    .gallery-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 20px 10px;
    }

    .gall-padd {
        padding: 0.5rem 0;
    }
}

/************* gallery end ***********/




/************airport transfers *******/
.airport-transfers {
    padding: 20px;
}

.airport-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.airport-left {
    flex: 1;
}

    .airport-left p {
        font-size: var(--font-lg);
        font-weight: var(--font-light);
        margin-bottom: 0.5rem;
    }

.airport-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .airport-right img {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
    }

.airport-transfers h1 {
    font-size: 2rem;
    color: #222;
}

.airport-transfers h2 {
    font-size: var(--font-xxl);
    color: #222;
    margin-bottom: 0rem;
}

.airport-transfers ul {
    margin-left: 25px;
    margin-bottom: 0.5rem;
}

    .airport-transfers ul li strong {
        font-size: var(--font-size);
    }

.airport-transfers .service-item {
    font-size: var(--font-lg);
    font-weight: var(--font-light);
}

.airport-left img {
    width: 650px;
}

@media (max-width: 992px) {
    .airport-transfers {
        padding: 0;
    }

    .airport-row {
        gap: 30px;
    }

    .airport-transfers h1 {
        font-size: 24px;
    }

    .airport-left img {
        margin-bottom: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .airport-left p {
        hyphens: auto;
        text-align: justify;
    }

    .airport-transfers ul li {
        line-height: 1.4rem;
    }

        .airport-transfers ul li strong {
            font-size: var(--font-lg);
        }
}

@media (max-width: 768px) {
    .airport-row {
        flex-direction: column;
    }

    .airport-right {
        order: 2;
    }

    .airport-left {
        order: 1;
    }

    .airport-transfers {
        padding: 0;
        margin: 20px;
    }

        .airport-transfers h1 {
            text-align: center;
        }
}

@media (max-width: 480px) {

    .airport-transfers h1 {
        font-size: 24px;
    }

    .airport-transfers h2 {
        font-size: 18px;
    }

    .airport-transfers p,
    .airport-transfers li {
        font-size: 15px;
        line-height: 1.6;
    }
}

/************airport transfers end *******/

/********** breadcrump *********/

.breadcrump {
    background: linear-gradient(rgba(0, 0, 0, 0.518), rgba(0, 0, 0, 0.518)), url("../assets/taxi.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 180px;
}

.breadcrump-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.518), rgba(0, 0, 0, 0.518)), url("../assets/breadcrump2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 180px;
}

.breadcrump-heading {
    color: white;
    font-size: var(--font-5xl);
    font-weight: 600;
}

.breadcrump-paragraph {
    color: white;
    font-size: var(--font-xxl);
    padding: 0 180px 10px 180px;
    font-weight: 400;
}

.breadcrump-btn i {
    color: white;
    background-color: var(--main-color);
    padding: 20px 40px;
    border-radius: 5px;
    font-size: var(--font-lg);
    letter-spacing: 1.4px;
}

@media (max-width: 992px) {
    .breadcrump-heading {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .breadcrump {
        padding: 20px 10px;
    }

    .breadcrump-2 {
        padding: 20px 10px;
    }

    .breadcrump-paragraph {
        padding: 0;
        font-size: var(--font-lg);
        hyphens: auto;
        text-align: justify;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        margin-bottom: 10px;
        line-height: 1.4rem;
    }

    .breadcrump-btn i {
        padding: 10px;
        margin-bottom: 10px;
        font-size: var(--font-sm);
    }
}

/********** breadcrump end *********/

/****************** book us  *******************/
.book-us {
    background-color: #8a868614;
    /* padding:3rem 0rem; */
}

.book-us-con {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.book-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 10px 0;
}

.book-content p {
    font-size: var(--font-size);
    font-weight: var(--font-light);
    padding-bottom: 20px;
}

.book-content button {
    background-color: var(--main-color);
    color: white;
    font-size: var(--font-light);
    font-weight: var(--font-light);
    padding: 12px 25px;
}

    .book-content button:hover {
        border-color: var(--main-color);
    }

.book-us-pic img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .book-us {
        padding: 0rem;
    }

        .book-us h4 {
            width: 100%;
            font-size: 25px;
            text-align: center;
            padding: 0;
        }

        .book-us p {
            width: 100%;
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            font-size: var(--font-light);
        }

    .book-content p {
        margin: 10px 0;
        padding-bottom: 0;
    }

    .book-content button {
        padding: 6px 15px;
        margin-bottom: 10px;
        font-size: var(--font-sm);
    }

    .book-us-con {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }
}

/****************** book us end  *******************/

/************* services start ********/

.services-section {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
}

    .services-section .title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #111;
    }

        .services-section .title span {
            color: var(--main-color);
        }

/* MAIN CONTAINER */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    /* margin-bottom: 35px; */
}

/* CARD (DESKTOP) */
.service-card {
    width: calc(33.33% - 20px);
    text-align: left;
    background: #fff;
}

    /* CARD STYLES */
    .service-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 18px 0 10px;
        color: #000;
    }

        .service-card h3 span {
            color: var(--main-color);
        }

    .service-card p {
        font-size: var(--font-size);
        font-weight: var(--font-light);
        color: #444;
    }

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 22px;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    font-size: var(--font-lg);
    border-radius: 4px;
    transition: 0.2s;
    margin: 10px 0 0 0;
}

    .btn span {
        margin-left: 5px;
        font-size: 1.2rem;
    }

    .btn:hover {
        background: #e58a00;
    }

/* TABLET */
@media (max-width: 992px) {
    .services-section {
        padding: 0rem;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .services-section .title {
        margin-bottom: -0px;
        font-size: 24px;
        margin-top: 10px;
    }

    .service-card p {
        margin-bottom: 0;
        font-size: var(--font-light);
    }

    .service-container {
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
}

/************* services end ********/

/********contanct start **********/
.contact-section {
    padding: 2rem 2rem 2rem 2rem;
}

.contact-section-2 {
    padding: 3rem 0;
}
/* GRID WRAPPER */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-left {
    flex: 1.2;
    margin-bottom: 10px;
}

    .contact-left h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--text-dark);
    }

        .contact-left h2 span {
            color: var(--main-color);
        }

.contact-desc {
    font-size: var(--font-size);
    font-weight: var(--font-light);
    line-height: 1.6;
    margin-right: 10px;
    margin-bottom: 35px;
}


.contact-info p {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    font-size: 1.2rem;
    color: var(--main-color);
}



/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

    .social-icons span i {
        font-size: var(--font-xxl);
        cursor: pointer;
        background-color: rgb(33, 37, 41);
        border-radius: 50%;
        padding: 8px;
    }

        .social-icons span i:hover {
            background-color: var(--main-color);
        }

/* RIGHT SIDE FORM */
.contact-right {
    flex: 1;
}

.contact-form {
    background: #f5f7fa;
    padding: 25px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form label {
        color: #333;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        font-size: var(--font-size);
        border-radius: 6px;
        border: 1px solid #dcdcdc;
        outline: none;
        background: white;
    }

    .contact-form textarea {
        height: 140px;
        resize: none;
    }

/* SUBMIT BUTTON */
.submit-btn {
    margin-top: 10px;
    padding: 15px 0;
    background: var(--main-color);
    color: #fff;
    font-size: var(--font-lg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        opacity: 0.85;
    }

input::placeholder,
textarea::placeholder {
    font-size: var(--font-lg);
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-section {
        padding: 1rem 2rem 2rem 2rem;
    }

    .contact-form {
        gap: 6px;
        padding: 15px;
    }

    .contact-right {
        width: 100%;
        margin-top: 2rem;
    }

    .contact-desc {
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        font-size: var(--font-light);
        margin-bottom: 5px;
        margin-right: 0px;
    }

    .contact-info p {
        gap: 0;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact-left h2 {
        font-size: 24px;
        font-weight: 600;
        text-align: center;
    }

    .social-icons {
        margin: 10px 0 0 0;
        gap: 5px;
    }

    .contact-section-2 {
        padding: 1rem 0;
    }

        .contact-section-2 .contact-wrapper .contact-left h2 {
            text-align: center;
        }

    .social-icons span i {
        font-size: 1rem;
        padding: 5px;
    }

    .icon {
        padding-right: 3px;
        font-size: 0.8rem;
    }
}

/********contact end **********/

span {
    color: var(--main-color);
}
/****************** About us  *******************/
.about-us {
    background-color: #8a868614;
    /* padding:4rem 2rem ; */
}

.about-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 10px 0;
}

.about-content p {
    font-size: var(--font-size);
    font-weight: var(--font-light);
    padding-bottom: 20px;
}

.about-content button {
    background-color: var(--main-color);
    color: white;
    font-size: var(--font-light);
    font-weight: var(--font-light);
    padding: 12px 25px;
}

    .about-content button:hover {
        border-color: var(--main-color);
        color: rgb(31, 31, 31);
    }

.about-us-pic img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .about-us {
        padding: 1rem 0rem;
    }

        .about-us h4 {
            width: 100%;
            font-size: 25px;
        }

        .about-us p {
            width: 100%;
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            font-size: var(--font-light);
        }

    .about-content button {
        padding: 6px 15px;
        font-size: var(--font-sm);
    }
}

/****************** About us  *******************/

/****************** how its works  *******************/

.inner-works-1 {
    border: 2px solid var(--main-color);
    padding: 2rem;
    margin: 10px;
}

.how-its-Work h2 {
    font-size: 2em;
    font-weight: 600;
    color: #102236;
}

.how-its-Work span {
    color: var(--main-color);
}

.how-its-Work p {
    font-size: var(--font-size);
    font-weight: var(--font-light);
}

.inner-works-1 p {
    font-size: 1rem;
    font-weight: var(--font-light);
}

.inner-works-1 .location {
    font-size: 4rem;
    cursor: pointer;
}

.inner-works-1 :is(i, h4):not(p):hover {
    color: var(--main-color);
    cursor: pointer;
}

@media (max-width: 990px) {
    .how-its-Work h2 {
        font-size: 24px;
    }

    .how-its-Work p {
        font-size: var(--font-lg);
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
    }

    .inner-works-1 p {
        text-align: justify;
        hyphens: auto;
        --webkit-hyphens: auto;
        -moz-hyphens: auto;
        font-weight: var(--font-light);
    }

    .inner-works-1 {
        border: 2px solid var(--main-color);
        padding: 2rem;
        margin: 10px 0;
    }
}
/****************** how its works  end *******************/



/* main css start  */

/****************** swipper css start *******************/
.swiper {
    position: absolute !important;
}

.main-content {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
}

.swiper-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .swiper-background .swiper-slide {
        background-size: cover;
        background-position: center;
        /* animation: scale 20s infinite alternate;  */
    }

#swiper-slide-1 {
    background: url("../assets/car-boy.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#swiper-slide-2 {
    background: url("../assets/section-government-mandates-767x520-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#swiper-slide-3 {
    background: url("../assets/decoding-uk-airport-transfer-pricing-airporttaxiexpress-co-uk.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* Overlay with content */
.fixed-content {
    position: relative;
    z-index: 10;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.55);
}

.slide-content {
    width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    flex-wrap: wrap;
    gap: center;
    color: #fff;
}

/* Left side – text */
.slide-text {
    flex: 1 1 500px;
    padding: 30px 0;
}

    .slide-text h2 {
        /*font-size: clamp(2rem, 8vw, 4.5rem);*/
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 600;
        ;
    }

        .slide-text h2 .tag {
            color: var(--main-color);
        }

    .slide-text p {
        font-size: var(--font-size);
        line-height: 1.7;
        font-weight: var(--font-light);
        margin-bottom: 30px;
        text-align: left;
    }

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.search-services {
    padding: 14px 32px;
    background: var(--main-color);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .search-services a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-services:hover {
        background: #e68a00;
        transform: translateY(-3px);
    }


.form-right {
    flex: 1 1 400px;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.938);
    border-radius: 16px;
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    /* .form-right input,
.form-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
} */

    .form-right textarea {
        resize: vertical;
        min-height: 120px;
    }


    .form-right button:hover {
        background: #e68a00;
    }

/* ==================== RESPONSIVE FIXES ==================== */

@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .slide-text {
        padding: 20px 0;
        display: none;
    }

        .slide-text p {
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            margin-bottom: 15px;
            line-height: 1.1;
        }

    .form-right {
        margin: 0 20px;
    }

    .search-services {
        padding: 10px 20px;
        font-size: var(--font-lg)
    }

    .buttons {
        gap: 10px;
        justify-content: center;
    }

    .slide-text h2 {
        margin-bottom: 15px;
    }

    .fixed-content {
        padding: 20px;
    }
}
/****************** swipper css end *******************/

/****************google map********************/

@media (max-width: 992px) {
    .map iframe {
        height: 300px;
    }
}

/***************google map end***************/

/**************Area Operation ***************/

.operation {
    padding: 2rem 0;
    text-align: center;
}

.operation-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.operation-inner {
    margin: 0 auto;
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.op-box {
    padding: 70px 20px;
    font-size: 1.7rem;
    border-radius: 20px;
}


.gold {
    background: var(--main-color);
    color: rgb(13, 15, 18);
}

.black {
    background: rgb(13, 15, 18);
    color: white;
}


@media (max-width: 992px) {
    .operation-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .operation {
        padding: 2rem;
    }

    .operation-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
        ;
    }

    .op-box {
        padding: 30px 20px;
        font-size: 1.22rem;
    }
}

@media (max-width: 576px) {
    .operation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .op-box {
        padding: 19px 5px;
        font-size: 0.9rem;
    }
}





/***************payment mode *************/
.payment {
    background-color: rgb(13, 15, 18);
    text-align: center;
    padding: 4rem;
}

    .payment h2 {
        font-size: 2rem;
        font-weight: 600;
        color: rgb(255, 255, 255);
    }

    .payment img {
        width: 70%;
    }


@media(max-width:992px) {
    .payment {
        padding: 3rem 0 1.3rem 0;
    }

        .payment h2 {
            font-size: var(--font-lg);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .payment img {
            width: 100%;
        }
}

@media(max-width:447px) {

    .payment h2 {
        font-size: var(--font-lg);
        font-weight: 400;
    }
}
/***************payment mode end*************/

/********footer start **********/

.footer {
    background-color: #0d0f12;
    color: #ffffff;
    padding: 3.5rem 2rem 2rem 2rem;
}

/* FLEX WRAPPER */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* COLUMNS */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.col-about {
    max-width: 380px;
}

.footer-col h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

/* TEXT */
.footer-col p {
    font-size: var(--font-lg);
    font-weight: var(--font-light) !important;
    line-height: 1.5;
    text-decoration: none;
    color: white
}

.footer-col a p:hover {
    color: var(--main-color);
}

.footer-col li {
    font-size: var(--font-lg);
    font-weight: var(--font-light) !important;
    line-height: 0.8;
    margin-bottom: 12px;
}

.footer-col ul li {
    font-weight: var(--font-light) !important;
}

/* LISTS */
.footer-col ul {
    list-style: none;
}

    .footer-col ul li a {
        text-decoration: none;
        color: #ffff;
        transition: 0.3s;
    }

        .footer-col ul li a:hover {
            color: #ff9900;
        }

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #2f2f2f;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-size: 0.9rem;
        margin: auto;
    }

    .footer-bottom a {
        color: #ffffff;
        font-size: 0.9rem;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #ff9900;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer {
        padding: 1rem;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 15px;
        padding-top: 10px;
    }


    .footer-col p {
        font-weight: var(--font-light);
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        font-size: var(--font-light);
        margin-bottom: 0;
    }

    .footer-col li {
        font-weight: var(--font-light);
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        font-size: var(--font-light);
        margin-bottom: 0;
        line-height: 1.4;
    }

    .footer-col h3 {
        margin-bottom: 10px;
    }

    .footer-col h2 {
        margin-bottom: 10px;
    }

    .footer-wrapper {
        gap: 20px;
    }
}

/******** footer end **********/
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.call-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 75px;
    right: 20px;
    background-color: #2a93ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.sms-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 130px;
    right: 20px;
    background-color: #bc2727;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

    .sms-float:hover, .call-float:hover, .whatsapp-float:hover {
        transform: scale(1.1);
    }

.sms-icon, .whatsapp-icon {
    width: 32px;
    filter: brightness(0) invert(1);
}

.call-icon {
    width: 32px;
}

@media (max-width: 900px) {
    .whatsapp-float, .sms-float, .call-float {
        width: 50px;
        height: 50px;
    }
}
