/* --------------------------NAVBAR----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

.paddi {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn{
    height: 60px;
}



/* ACTIVE MENU STYLE */
.active-menu {
    color: #ffc107 !important;
    font-weight: 700;
}

/* NORMAL NAV LINKS */
.nav-link {
    color: #222;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: #ffc107;
}

/* MODERN DROPDOWN */
/* .modern-dropdown {
    min-width: 260px !important;
    border-radius: 20px;
    background: #ffffff;
    animation: fadeIn 0.3s ease;
} */

/* DROPDOWN ITEMS */
/* .modern-dropdown-item {
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s ease;
} */

/* .modern-dropdown-item:hover {
    background: #ffc107;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} */

/* ANIMATION */
@keyframes fadeIn {
    0% { opacity:0; transform:translateY(10px); }
    100% { opacity:1; transform:translateY(0); }
}



.navbar{
    margin-top: -60px;
    border-radius: 26px;
    padding: 23px;
    z-index: 9;
}




/* ========== NAVBAR LINKS HOVER EFFECT ========== */
.navbar .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Hover underline animation */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #f4b200;   /* yellow accent */
    transition: width 0.3s ease;
    border-radius: 5px;
}

.navbar .nav-link:hover {
    color: #f4b200 !important;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Active Menu Style */
.active-menu {
    color: #f4b200 !important;
}
.active-menu::after {
    width: 100% !important;
}


/* ========== FIX DROPDOWN POSITION UNDER ORIGINAL PATH ========== */
.nav-item.dropdown.position-static {
    position: relative !important;
}

.nav-item.dropdown .dropdown-menu {
    left: 0;                  /* Keep aligned under 'Services' */
    right: auto;
    top: 45px;                /* perfect vertical alignment */
    
}



/* ========== MODERN DROPDOWN STYLE ========== */
.modern-dropdown {
    padding: 12px 0;
    border-radius: 18px;
    background: #ffffff;
    animation: dropdownFade 0.25s ease;
    min-width: 260px;
    border: 1px solid #eee;
}

/* Dropdown animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------- Dropdown Items --------------*/
.modern-dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.25s ease;
}

/* Hover effect */
.modern-dropdown-item:hover {
    background-color: #fff4d2;
    color: #c88a00 !important;
    padding-left: 24px;
}



.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Allow underline animation on dropdown toggle also */
.navbar .dropdown-toggle {
    position: relative;
}

.navbar .dropdown-toggle::after {
    display: none !important; /* Remove caret icon */
}

/* Custom underline for dropdown toggle */
.navbar .dropdown-toggle::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #f4b200;
    transition: width 0.3s ease;
    border-radius: 5px;
}

/* Hover underline on SERVICES */
.navbar .dropdown-toggle:hover::before {
    width: 100%;
}

/* Active underline */
.active-menu.dropdown-toggle::before {
    width: 100% !important;
}


/* ==================== LOGO SIZE==================== */
.navbar img {
    width: 140px;
}


.booking-box{
    margin-top: -20%;
}



/* @media (max-width: 992px) {
    .navbar {
        margin-top: 0 !important;
        padding: 15px !important;
    }

    .navbar-nav {
        margin-top: 15px !important;
        gap: 0 !important;
    }

    .nav-link {
        padding: 10px 0 !important;
        font-size: 15px;
    }

    /* Button goes full width on mobile */
    /* .navbar .btn-warning {
        width: 100%;
        margin-top: 10px;
        height: 54px !important;
    }

    /* Dropdown goes full width below Services */
    /* .nav-item.dropdown .dropdown-menu {
        width: 100% !important;
        position: static !important;
        transform: none !important;
        margin-top: 10px;
    }
} */ 






/* ============================================
   SECTION RESPONSIVE SPACING
============================================ */
/* @media (max-width: 992px) {
    .paddi {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

@media (max-width: 576px) {
    .paddi {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
} */



/* -------------------------------HERO SECTION------------------------------------ */
.hero {
    background: linear-gradient(rgba(69, 65, 65, 0.688), rgba(54, 51, 51, 0.419)),
        url('images/herp_bg.webp') center/cover no-repeat;
    ;
    padding: 250px 0;
    margin-top: -50px;
    color: #fff;
    min-height: 100vh;
}


.hero-img-phone img {
    width: 55vh;
    transition: transform 0.6s ease; /* smooth zoom */
    transform: scale(1); /* default size */
}

.hero-img-phone img:hover {
    transform: translateY(-20px); /* zoom on hover */
}



.section-title {
    font-weight: 700;
    font-size: 32px;
}

.rate-card,
.service-card {
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

footer {
    background: #111;
    color: #aaa;
    padding: 60px 0;
}



/* About Section Improvements */
.about-section {
    position: relative;
}

.about-img-wrap {
    position: relative;
        /* width: 410px; */
        max-width: 75%;
    
}



.testimonial-box {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: #fff;
    max-width: 330px;
    border-left: 4px solid #f6b900;
}

.icon-box img {
    filter: brightness(0) invert(1);
}

.icon-box.bg-warning img {
    filter: none;
}

.hero {
    padding-top: 180px;
}





/*---------------------------- BOOKING FORM SECTION----------------- --> */
.form {
    padding: 7px;
}

/* DEFAULT DROPDOWN LOOK */
.form-select {
    background: #f7f7f7 !important;
    border: 2px solid #ddd !important;
    height: 55px !important;
    border-radius: 10px !important;
    padding-left: 15px !important;
    font-size: 15px;
    appearance: none !important;

    /* custom arrow */
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

/*  ON CLICK (FOCUS) — YELLOW BORDER */
.form-select:focus {
    border-color: #f4b200 !important;
    box-shadow: 0 0 0 0.15rem rgba(244, 178, 0, 0.3) !important;
}

/* OPTION STYLES */
.form-select option {
    padding: 12px 10px;
    font-size: 15px;
}

/*  OPTION CLICKED (SELECTED) — TURN YELLOW */
.form-select option:checked {
    background-color: #f4b200 !important;
    color: white !important;
}

/* ==================================Book taxi=================================================== */

.booktaxi {
    background: linear-gradient(rgba(48, 47, 47, 0.88), rgba(38, 36, 36, 0.91)),
        url('images/newsection-img.webp') center/cover no-repeat;
    padding-bottom: 120px;
    
}


/* <!-------------------------------------- OUR SERVICES------------------------------------- --> */

.icon-box {
    width: 70px;
    height: 70px;
    background: #2e2e2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.service-card a{
    text-decoration: none;
}

.service-card {
    transition: 0.3s ease-in-out;
    border-radius: 25px;
}

.service-card:hover {
    background: #1f1f1f !important;
    color: #fff !important;
}

.service-card:hover .icon-box {
    background: #f9b700 !important;
    /* same as bg-warning */
}

.service-card:hover i {
    color: #000 !important;
}

.service-card p {
    transition: 0.3s ease-in-out;
}

.service-card:hover p {
    color: #eee;
}






 /* --------------------------------------------------- pricing----------------------------------
  .rate-card p:hover{
    color:#000;
 

/* -----------------------------------------TESTIMONIAL------------------------------------------- */

.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.91)),
        url('images/testimonials-bg-img') center/cover no-repeat;
    padding-bottom: 120px;
    
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 25px;
    white-space: normal;
}
.testimonial-card {
    min-width: 380px; /* Increased from 300px → wider card */
    max-width: 400px; /* Keeps layout stable */
    display: flex;
    box-sizing: border-box;
}

.card-box {
    background: #fff;
    border-radius: 30px;
    padding: 35px 30px; /* More padding for long text */
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 100%; /* ensures equal height */
    display: flex;
    flex-direction: column;
    text-align: center;
     box-sizing: border-box;
}

.card-box p {
    line-height: 1.65;          /* Better readability */
    text-align: normal;        /* Good for long paragraphs */
}

.testimonial-card .card-box {
    transition: all 0.4s ease;
}

.testimonial-card:hover .card-box {
    transform: scale(1.03); /* Bigger hover scale */
    /* box-shadow: 0 12px 35px rgba(204, 220, 89, 0.753); */
}
/* ------------------------------blog-------------------------------- */

.card {
    height: 100%;
}

.card img {
    height: 250px;        /* same height for all images */
    object-fit: cover;    /* crops nicely */
    width: 100%;
}

.card-body {
    min-height: 180px;    /* ensures all cards align even if text length differs */
}

.card-body a{
    text-decoration:none;
    color: #000;
}


/* ------------------------YELLOW SECTION-------------------------*/
.yellow-section .container
{
            font-size: 30px;
            font-weight: 600;
            padding-right: 15px;
          
}
/* -------------------------footer------------------------- */
.footer-section {
    background: linear-gradient(rgba(18, 16, 16, 0.87), rgba(22, 20, 20, 0.95)),
        url('images/dubai-aerial-view.webp') center/cover no-repeat;
    ;

    padding-bottom: 23px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.whatsapp-footer:hover {
    background: #ff8b33;
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.whatsapp-footer {
    position: fixed;
    left: 10px;
    bottom: 20px;
    background: #ffc107;
    padding: 4px 10px;
    border-radius: 50px;
    width: 8%;
    z-index: 2;
    border: 1px solid black;
}

.yellow-section{
    height: 450px;
    padding: 150px;
}



.shake {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

/* Shake keyframes */
@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes shake {
    0% {
        transform: translate3d(0, 0, 0);
    }

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}



/* ------------------------------------------ABOUT PAGE STARTING----------------------------------- */


.about-banner {
    min-height:400px;
    background: linear-gradient(rgba(69, 65, 65, 0.688), rgba(54, 51, 51, 0.419)),
              url('images/about-banner.jpg') center/cover no-repeat;
    position: relative;
    margin-top: -48px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important; /* breadcrumb divider */
}

.breadcrumb-item a:hover {
    color: #ffc107 !important; /* hover yellow */
}





.Lets-ride {
    background: linear-gradient(rgba(56, 55, 55, 0.471), rgba(52, 51, 51, 0.532)),
        url('images/about-ban-bg-car.webp') center/cover no-repeat;

    max-height: 500px;
}

.Lets-ride img {
    width: 670px;
    z-index: 1;
}


/* ---------------------------------------------HOW WE WORK-------------------------------------- */

.steps-section {
    position: relative;
    padding-top: 140px;
}

/* Step Boxes */
.step-box {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Icons */
.step-icon {
    font-size: 45px;
    color: #ffbe00;
}

/* Box Background Colors */
.dark-box {
    background: #1c1c1c;
}

.white-box {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.yellow-box {
    background: #ffbe00;
}

.yellow-box .step-icon {
    color: #000;
}

/* Dotted Line Behind Icons */
.dotted-line {
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 1;
    max-width: 84%;
}


/* --------------------------------Service page-------------------------------- */

.service-banner {
    min-height: 400px;
    background: linear-gradient(rgba(69, 65, 65, 0.688), rgba(54, 51, 51, 0.419)),
              url('images/service-banner-bg.jpg') center/cover no-repeat;
    position: relative;
    margin-top: -57px;
    
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important; /* breadcrumb divider */
}

.breadcrumb-item a:hover {
    color: #ffc107 !important; /* hover yellow */
}

/* ----CLIENT ENQURIES----*/

/* --------------------- IMAGE SECTION --------------------- */
.faq-img-wrapper , .about-img-wrap {
    position: relative;
}

.faq-main-img {
    width: 65%;
    border-radius: 22px;
}


/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    background: #fff;
    padding: 28px 35px;
    border-radius: 20px;
    width: 72%;
}

/* --------------------- RIGHT SIDE FAQ --------------------- */
.related-title {
    font-size: 48px;
    line-height: 1.2;
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Accordion Button */
.accordion-button {
    background: #fcbf10 !important;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: none;
}

/* Remove default arrow */
.accordion-button::after {
    background-image: none !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    transform: rotate(-90deg);
    transition: 0.3s ease;
    /* content: ""; */
}

/* Rotate arrow when open */
.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

/* Yellow active card */
.active-faq .accordion-button {
    background: #fcbf10 !important;
    color: #000 !important;
    z-index: 2;
}

/* Arrow inside yellow tab */
.active-faq .accordion-button::after {
    color: #000;
    /* content: ""; */
}

/* Body */
.accordion-body {   
    background: transparent;
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.6;
}

.floating-card a{
    text-decoration: none;
}



/* ---------------------------------------CONTACT US PAGEE------------------------------------- */

.contact-banner {
    min-height: 400px;
    background: linear-gradient(rgba(69, 65, 65, 0.688), rgba(54, 51, 51, 0.419)),
              url('images/contactus-banner.jpg')  center 45%/cover no-repeat;
    position: relative;
    margin-top: -48px;
    
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important; /* breadcrumb divider */
}

.breadcrumb-item a:hover {
    color: #ffc107 !important; /* hover yellow */
}

/* ---------get in touch -------- */

/* ------------------- TITLES ------------------- */
.title-contact {
    font-size: 48px;
    line-height: 1.2;
}

/* ------------------- ICON BOXES ------------------- */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.dark-icon {
    background: #232323;
    color: #fcbf10;
}

.yellow-icon {
    background: #fcbf10;
    color: #000;
}

.white-icon {
    background: #ffffff;
    color: #000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* ------------------- FORM CARD ------------------- */
.contact-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
}

.form-custom {
    background: #f7f7f7;
    border: none;
    height: 55px;
    border-radius: 10px;
}

.form-custom:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #fcbf10;
}

/* Textarea height */
textarea.form-custom {
    height: auto;
}

/* ------------------- SOCIAL ICONS ------------------- */
.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.yellow-bg {
    background: #fcbf10;
    color: #000;
}

.dark-bg {
    background: #232323;
    color: #fcbf10;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-media a {
    text-decoration: none;

}

/* ------------------- BUTTON ------------------- */
.send-btn {
    border-radius: 12px;
    font-size: 18px;
}



/* --------------------------------------Map----------------------------------------- */
.map-section {
    background: #fff;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px; /* adjust height if needed */
    border: 0;
    border-radius: 25px;
}


/* --------------------------------------------blog page---------------------------------------- */
.btn-social:hover {
      background-color: #ffc107!important;
      color: #fff;
      border:none!important;
    }


/* style.css — custom styles for the Bootstrap site */

/* Root & fonts */
:root{
  --accent: #ffb800;
  --muted: #6b6b6b;
  --card-bg: #fff;
  --shadow: 0 8px 25px rgba(0,0,0,0.08);
  --radius-lg: 20px;
}

body{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:#fafafa;
  color:#222;
}

/* Section titles */
.section-title{
  font-size:34px;
  font-weight:800;
}

/* Cards used in grid */
.rate-card{
  border-radius:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
  border:0;
}
.rate-card .card-body { padding:60px; }

/* Sidebar card */
.sidebar-card{
  border-radius:18px;
  box-shadow:var(--shadow);
  border:0;
}

/* Search box */
.search-box{
  background: #fff;
  border-radius:14px;
  align-items:center;
}
.search-box .form-control{
  background:transparent;
  font-size:16px;
  box-shadow:none;
}
.search-btn{
  background: #222;
  color: var(--accent);
  width:54px;
  height:54px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
}

/* Recent posts */
.recent-title{ font-weight:700; font-size:20px; }
.recent-post-item h6{ font-size:15px; margin:0; font-weight:700; }

/* Blog detail */
.blog-main-img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
}

/* Article typography */
.blog-title{
  font-size:30px;
  font-weight:800;
  margin-bottom:6px;
}
.article-meta{ color:var(--muted); font-size:14px; }

/* Why choose card */
.why-choose-card{
  border-radius:14px;
  box-shadow:var(--shadow);
  border:0;
}
.why-image{ width:100%; }
.why-image img{ border-radius:14px; width:100%; height:auto; object-fit:cover; }

/* Why list */
.why-list{ list-style:none; padding:0; margin:0; }
.why-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  margin-bottom:10px;
  color:#2b2b2b;
}
.check-icon{
  color:var(--accent);
  background:#fff;
  border-radius:50%;
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  box-shadow: 0 6px 18px rgba(246,184,0,0.08);
}

/* Related cards */
.related-card{ border-radius:12px; box-shadow:var(--shadow); overflow:hidden; }

/* Comments */
.comment{ border-radius:0; }
.comment-form{ border-radius:12px; box-shadow:var(--shadow); }


/* Hover effects (subtle, matching video style) */
.rate-card:hover, .related-card:hover{
  transform: translateY(-6px);
  transition: all .28s ease;
}
.rate-card img, .related-card img{
  transition: transform .5s ease;
}
.rate-card:hover img, .related-card:hover img{
  transform: scale(1.03);
}

/* Utilities */
.text-warning{ color:var(--accent) !important; }


.why-choose-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.why-choose-container {
    width: 85%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-image img {
    width: 367px;
    height: 247px;
    border-radius: 20px;
    object-fit: cover;
}

.why-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list ul li {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #f4b400;   /* Yellow check icon — exact like screenshot */
    font-size: 22px;
    margin-right: 12px;
    font-weight: bold;
}


 :root{
      --accent: #ffb800;
      --muted:#6b6b6b;
      --card-bg: #fff;
      --shadow: 0 8px 25px rgba(0,0,0,0.08);
      --radius-lg: 20px;
      --radius-md: 12px;
      --max-width: 1200px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background:#fafafa;
      color:#222;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    .wrap{max-width:var(--max-width);margin:40px auto;padding:0 24px;display:grid;grid-template-columns:360px 1fr;gap:36px;align-items:start;}
    /* Left column (sidebar) */
    .sidebar-card{
      background:var(--card-bg);
      border-radius:var(--radius-lg);
      padding:28px;
      box-shadow:var(--shadow);
      margin-bottom:20px;
    }

    /* 1. Search */
    .search-box{display:flex;gap:12px;align-items:center;border-radius:16px;background:#fff;border:1px solid #f0f0f0;}
    .search-box input{flex:1;border:none;outline:none;font-size:16px;padding:6px 8px;background:transparent}
    .search-box button{width:54px;height:54px;border-radius:12px;border:none;background:#2e2e2e;color:var(--accent);font-size:18px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center}

    /* 2. Recent Posts */
    .recent-title{font-size:22px;font-weight:700;margin-bottom:18px}
    .recent-item{display:flex;gap:14px;align-items:center;padding:8px 0;border-radius:12px}
    .recent-item img{width:98px;height:64px;object-fit:cover;border-radius:10px;flex-shrink:0}
    .recent-item .meta h4{font-size:15px;margin:0 0 6px 0;font-weight:600}
    .recent-item .meta p{margin:0;font-size:13px;color:var(--muted);display:flex;gap:8px;align-items:center}

    /* 3. Categories */
    .categories{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
    .chip{background:#fff;border:1px solid #f0f0f0;padding:8px 12px;border-radius:12px;font-weight:600;color:#333}

/* left side two sections */
    /* Custom CSS for Sidebar Widgets */

/* --- Color Variables --- */
:root {
    --cta-dark-bg: #333333; /* Dark background color for the CTA widget */
    --widget-bg: #ffffff; /* White background for the Categories widget */
    --primary-yellow: #ffc107; /* Bright yellow for accents */
}

/* --- 1. CTA Widget Styling --- */
.cta-widget {
    background-color: var(--cta-dark-bg);
    /* Rounded corners on the top/bottom left/right */
    border-radius: 0.5rem; 
}

/* Phone Icon Box (Yellow Circle) */
.phone-icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--primary-yellow);
    color: #333; /* Dark icon color inside yellow circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* CTA Button Styling (The container of the phone box) */
.btn-dark-cta {
    background: #000; /* Black button background */
    border: none;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s;
}

/* Hover effect for the CTA button */
.btn-dark-cta:hover {
    background: #111; /* Slightly darker black/grey on hover */
}


/* --- 2. Categories Widget Styling --- */
.categories-widget {
    background-color: var(--widget-bg);
    border-radius: 0.5rem; 
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
    
    /* The screenshot shows the Categories title is pushed slightly down, 
       but the overall padding keeps the content clean. */
}

/* Categories Link Hover Effect */
.category-link {
    transition: color 0.2s ease;
}

.category-link:hover {
    /* Text turns bright yellow/orange on hover */
    color: var(--primary-yellow) !important;
}

/* The yellow caret icons are achieved via: i class="fas fa-caret-right me-2 text-warning" */

    /* Right column (article) */
    .article{
      background:transparent;
    }

    .hero-img{width:100%;height:380px;object-fit:cover;border-radius:var(--radius-lg);box-shadow:var(--shadow);display:block;margin-bottom:28px}

    .article-title{font-size:25px;margin:0 0 18px;font-weight:600}
    .article-meta{display:flex;gap:18px;align-items:center;color:var(--muted);margin-bottom:22px}
    .article-meta i{color:var(--muted);margin-right:8px}

    .article-body{font-size:15px;line-height:1.85;color:#555}

    /* Author card */
    .author-card{display:flex;gap:18px;align-items:center;margin-top:26px;background:var(--card-bg);padding:18px;border-radius:14px;box-shadow:var(--shadow)}
    .author-card img{width:84px;height:84px;border-radius:50%;object-fit:cover}
    .author-info h4{margin:0;font-size:16px;font-weight:700}
    .author-info p{margin:6px 0 0;color:var(--muted);font-size:14px}

    /* Related posts */
    /* Custom CSS for the "Leave a Reply" section */

/* Ensure the top spacing and border are present, matching the visual flow */
.comment-form-section {
    border-top: 1px solid #dee2e6; /* Standard Bootstrap border color */
    padding-top: 3rem; /* Large top padding */
}

/* Style for the labels (Required fields marker) */
.form-label {
    font-size: 1rem;
    color: #212529; /* Dark text color */
}

/* Style for the input fields (Textarea, Name, Email) */
.form-control-lg {
    /* Large height for the input fields */
    padding: 1rem 1rem; 
    font-size: 1rem;
    
    /* Rounded corners, but not excessively rounded */
    border-radius: 0.25rem; 
    
    /* Light background color to match the subtle shade in the screenshot */
    background-color: #f7f7f7; 
    
    /* Subtle shadow/border treatment to match the visual depth */
    border: 1px solid #ddd;
    box-shadow: none; /* Remove default focus shadow if it's too harsh */
}

/* Focus state: Keep it clean and subtle */
.form-control-lg:focus {
    background-color: #fff; /* White background on focus */
    border-color: #ffc107; /* Use the primary yellow/orange for focus border */
    box-shadow: 0 0 0 0.1rem rgba(255, 193, 7, 0.25); /* Subtle glow */
}

/* Style the textarea height */
#comment {
    /* Maintain the height set by rows=6 but ensure the padding is applied */
    min-height: 150px; 
}

    /* Comments */
    .comments{margin-top:32px}
    .comments h3{font-size:20px;margin-bottom:18px}
    .comment{display:flex;gap:14px;padding:14px 0;border-top:1px solid #f0f0f0}
    .comment:first-of-type{border-top:none}
    .comment .avatar{width:56px;height:56px;border-radius:50%;object-fit:cover}
    .comment .c-body{flex:1}
    .c-body h5{margin:0 0 6px;font-size:15px}
    .c-body .c-meta{color:var(--muted);font-size:13px;margin-bottom:8px}
    .c-body p{margin:0;color:#444;line-height:1.6}

    /* Comment form */
    .comment-form{margin-top:22px;background:var(--card-bg);padding:18px;border-radius:14px;box-shadow:var(--shadow)}
    .form-row{display:flex;gap:12px}
    .form-row .field{flex:1}
    .field input,.field textarea{width:100%;padding:12px;border-radius:10px;border:1px solid #ececec;font-size:15px;outline:none;resize:vertical}
    .field textarea{min-height:120px}
    

    /* small helpers */
    .muted{color:var(--muted);font-size:14px}
    .hr{height:1px;background:#f2f2f2;margin:18px 0;border-radius:2px}



/* Custom styles for the specified section */

/* --- Yellow/Orange Color Variable --- */
/* Define the yellow color used for checks and tags (similar to Bootstrap's warning) */
:root {
    --custom-yellow: #ffc107; 
    --custom-dark-grey: #333333;
}

/* --- Features List Styling --- */
.feature-list li {
    font-size: 1rem; /* Adjust font size if necessary */
    font-weight: 500; /* Medium weight */
    color: var(--custom-dark-grey); /* Darker text color */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Checkmark Icon Color */
.checkmark-color {
    color: var(--custom-yellow) !important;
}

/* --- Tags Styling --- */
.tag-link {
    
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

/* Tag Hover Effect (looks like the text changes color) */
.tag-link:hover {
    color: var(--custom-yellow) !important;
    border-color: var(--custom-yellow);
}

/* --- Social Share Icons --- */
.btn-social {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0.25rem; /* Square corners */
    color: #fff; /* Default icon color */
    transition: background-color 0.2s;
}

/* Facebook (Yellow background) */
.btn-facebook {
    background-color: var(--custom-yellow);
    border-color: var(--custom-yellow);
    color: #333; /* Dark icon */
}
.btn-facebook:hover {
    background-color: #e0a800; /* Slightly darker hover */
    border-color: #e0a800;
}

/* Twitter/X and LinkedIn (Darker/Black) */
.btn-dark {
    background-color: #000 !important;
    border-color: #000 !important;
}
.btn-linkedin {
    background-color: var(--custom-dark-grey) !important; /* Slightly distinct dark grey for LinkedIn */
    border-color: var(--custom-dark-grey) !important;
}

/* WhatsApp (Green) */
.btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}    



/* -------------------------------------Airport transfer page styling--------------------------------- */
/* FAQ BOX STYLE */

.faq-box {
    background: #fdbf11;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-header {
    width: 100%;
    background: #fdbf11;
    border: none;
    padding: 18px;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header:hover {
    background: #ffc933;
}

.faq-icon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Rotating icon style */
.faq-icon.rotate i {
    transform: rotate(180deg);
}

.faq-body {
    background: #ffffff;
    padding: 18px;
    border-top: 1px solid #eee;
    font-size: 15px;
}


/* Fix when open */
/* .collapse.show + .faq-body,
.faq-body.show {
    background-color: white;
} */



/* <!-- ------------------preloader--------------------- --> */

/* Preloader full screen */
/* Fullscreen blur wrapper */
/* #loader-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
} */

/* Bars container */
/* .loader-bars {
    display: flex;
    gap: 10px;
} */

/* Individual bars */
/* .loader-bars span {
    width: 10px;
    height: 40px;
    background: #ffc107; 
    border-radius: 4px;
    animation: upDown 0.6s ease-in-out infinite alternate;
} */

/* Delay each bar */
/* .loader-bars span:nth-child(1) { animation-delay: 0s; }
.loader-bars span:nth-child(2) { animation-delay: 0.15s; }
.loader-bars span:nth-child(3) { animation-delay: 0.30s; }
.loader-bars span:nth-child(4) { animation-delay: 0.45s; } */

/* Up-down animation */
/* @keyframes upDown {
    from { transform: translateY(0); height: 40px; }
    to   { transform: translateY(-20px); height: 60px; }
} */





/* ------------------------------------BOOK YOUR CAR BUTTON---------------------------- */


.book-btn {
    position: fixed;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #fdbf11; /* warning yellow */
    color: #fff !important;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    z-index: 99999;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #ffcd38;
    color: #fff;
}


fo



/* ==============================MEDIA QUERIESSS FOR RESPONSIVENEZSS====================== */

/* Mobile view */
@media (max-width: 991px) {
    .nav-item.dropdown .dropdown-menu {
        transform: none;
        top: 0;
        left: 0;
    }
}


@media (min-width: 992px) {

    .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .dropdown-menu {
        top: 100% !important;   /* FIX: NO GAP */
        left: -10px !important;
    }
}

/* --------------------------------top and navbar responsiveness------------------------- */
/* ============================================
   RESPONSIVE TOPBAR
============================================ */
@media (max-width: 992px) {
    .topbar {
        display: none !important;
    }
}
/* ============================================
   NAVBAR RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .navbar img {
        width: 120px;
    }
    .yellow-section{
        padding: 0!important;
    }

    .privacy-policy{
        margin-bottom: 35px;
    }
    
     .brad_titl{
     padding-top: 90px;
    }

    .navbar 
    {
        padding: 10px !important;
        margin-top: 1px;
    }

    .sec-title{
        font-size: 25px!important ;
    }

    .paddi {
    padding-top: 40px;
    }

    .service-banner{
    min-height: 200px!important;
    margin-top: -76px!important;
    }
    
     .yellow-section{
        height: 350px!important;
    padding-top: 80px!important;
    }

    .booking-box{
        padding-left: 10px!important;
        padding-right: 10px!important;
    }

    .about-img-wrap{
        max-width: 100%!important;
    }

     .hero{
        margin-top: -76px;
    }

    .booking-box {
    margin-top: -80%;
   }

   .service-banner{
        padding-top: 80px;
        height: 250px;
   }

   .lichfield{
    font-size: 22px;
   }

   .lichfield-home{
        padding-top: 30px;
   }

}

@media screen and (max-width: 768px) {
    .hero {
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    body, html {
        overflow-x: hidden;
    }

    .font-size{
        font-size: 17px!important;
    }

    .about-padding{
        padding-bottom: 15px;
    }

    .steps-section{
        position: relative;
    padding-top: 40px!important;
    }
}

@media(max-width:992px){
    .navbar
    {
        margin-top: 0;
    }

    .hero
    {
        margin-top: -110px!important;
    }
}


@media screen and (max-width: 768px) {

    /* Stop full-page overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Your main layout fix */
    .wrap {
        display: block !important;     /* stop side-by-side layout */
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Sidebar full-width on mobile */
    aside {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Article full-width on mobile */
    .article {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Any images inside article */
    .article img,
    .hero-img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* Prevent Bootstrap rows from overflowing */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 768px) {

    .search-box {
        display: flex;
        align-items: center;
        width: 100%;
        overflow: hidden;      /* prevents horizontal overflow */
    }

    .search-box input {
        flex: 1;               /* input takes full width */
        min-width: 0;          /* critical: prevents overflow! */
    }

    .search-box button {
        flex-shrink: 0;        /* keeps button inside */
        padding: 10px 14px;
    }
}


@media screen and (max-width: 545px) {
    .whatsapp-footer {
        width: 25%;
    }
}

@media screen and (max-width: 500px) {

    .cd-top,
    .whatsapp-footer {
        bottom: 1%;
        left: 4px;
    }
}

@media(max-width:768px){
   .Lets-ride img {
    width: 375px;
   }
}

/* Fix right-side white space */
@media screen and (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
    }

    .about-section,
    .about-section * {
        max-width: 100% !important;
        box-sizing: border-box;
        padding-bottom: 0!important;
    }

    /* Remove extra padding causing overflow */
    .about-img-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ensure image fits inside screen */
    .about-img-wrap img {
        width: 100% !important;
        height: auto !important;
    }

    /* Remove Bootstrap's ps-5 spacing on mobile */
    .about-section-left {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Remove extra padding from container */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .about-section-left{
        min-width: 385px;
    }
}

/* Hide dotted line on small screens */
@media (max-width: 992px) {
    .dotted-line {
        display: none;
    }
}

@media (max-width: 968px) {
    .faq-main-img {
    width: 65%!important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .related-title {
        font-size: 34px;
    }
    .floating-card {
        width: 85%;
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .title-contact {
        font-size: 34px;
    }
    .contact-form-card {
        padding: 25px;
    }

    .space{
        padding-left: 0!important;
        padding-right: 0!important;
    }

    .quote-box{
        margin-top: 80px;
    }

    .service-padding{
        padding-bottom: 0!important;
    }
}

@media screen and (max-width: 768px) {

    /* Make name + email stack */
    .contact-form-card .row .col-md-6 {
        width: 100% !important;
        margin-bottom: 18px;
    }

    /* Align labels left & full width */
    .contact-form-card label {
        display: block;
        width: 100%;
        margin-bottom: 6px;
        font-size: 16px;
    }

    /* Make input boxes full width */
    .contact-form-card .form-custom {
        width: 100% !important;
        height: 55px;
        border-radius: 10px;
        display: block;
    }

    /* Textarea styling for mobile */
    .contact-form-card textarea.form-custom {
        height: auto !important;
        min-height: 140px;
    }

    /* Ensure card stays centered */
    .contact-form-card {
        padding: 25px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {

    /* Force Name + Email columns to full width */
    .contact-form-card .row .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    /* Add spacing between Name and Email */
    .contact-form-card .row .col-md-6:first-child {
        margin-bottom: 18px;
    }

    /* Ensure ALL inputs have same width */
    .contact-form-card .form-custom,
    .contact-form-card textarea.form-custom {
        width: 100% !important;
        display: block;
    }

    /* Remove card padding on mobile – optional but recommended */
    .contact-form-card {
        padding: 25px !important;
    }
}


/* Small screens */
@media (max-width: 991px){
  .blog-main-img{ height:260px; }
  .section-title{ font-size:28px; }
}

 @media (max-width:1100px){
      .wrap{grid-template-columns:320px 1fr;padding:0 18px;gap:24px}
    }
    @media (max-width:880px){
      .wrap{grid-template-columns:1fr;padding:0 16px}
      .related-grid{grid-template-columns:repeat(2,1fr)}
      .hero-img{height:260px}
    }
    @media (max-width:520px){
      .related-grid{grid-template-columns:1fr}
      .search-box button{width:48px;height:48px}
    }








