
    .landing-banner {
        padding: 10px 0;
        /* optional background image */
        /* background: url('https://shifteazy.in/front/img/new-images/landing-car.png') no-repeat center center; */
        background-size: cover;
        position: relative;
    }

    .banner-content {
        text-align: center;
        margin-bottom: 10px;
    }

    .main-heading {
        font-size: 25px;
        font-weight: 900;
        color: #080808;
        margin-bottom: 5px;
    }

    .main-heading .sub-heading {
        font-size: 25px;
        font-weight: 900;
        color: #080808;
        display: inline; /* keep on the same line */
        margin-left: 10px; /* optional spacing */
    }

    .banner-image-container {
        position: relative;
        max-width: 800px;
        margin: 20px auto;
    }

    .banner-image {
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }


    .overlay-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.6); /* black semi-transparent */
        color: #fff;
        font-weight: 500;
        text-align: center;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        font-size: 14px;
        padding: 6px 10px;  /* thin strip */
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
    .main-home-form {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 900px;
        margin: 0 auto;
    }

    .form-heading {
        font-size: 22px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
        color: #E22B2E;
    }

    .quote-form .form-control {
        border: 1px solid #050505ff;
        border-radius: 5px;
        /* padding: 12px 15px; */
        width: 100%;
        font-size: 16px;
        color: #0e0d0dff;
        transition: all 0.3s ease;
    }

    /* Highlight effect on input focus */
    .quote-form .form-control:focus {
        border-color: #1e90ff;
        box-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
        outline: none;
    }

    .quote-form .btn-primary {
        background-color: #e63946;
        border: none;
        color: #fff;
        font-weight: 800;
        width: auto;   /* shrink width */
        display: inline-block;
    }

    .highlight-text {
        color: #1240FF; /* Blue color */
        font-size: 16px;
        font-weight: 600;
        margin-top: 0px;
        text-align: center;
    }
    .quote-form {
        text-align: center;
    }

    /* Contact Buttons */
    .contact-buttons .btn-call,
    .contact-buttons .btn-whatsapp {
        font-size: 16px;
        padding: 12px;
        border-radius: 5px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .btn-call {
        background-color: #1a535c;
        color: #fff;
    }

    .btn-whatsapp {
        background-color: #25d366;
        color: #fff;
    }

    .btn-call i,
    .btn-whatsapp i {
        margin-right: 8px;
    }

    .routes-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

    .routes-list li {
        background: linear-gradient(135deg, #4facfe, #1240FF);
        color: #fff;
        padding: 18px 20px;
        border-radius: 15px;
        font-size: 1rem;
        font-weight: 600;
        /* display: flex; */
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .routes-list li span {
        font-size: 1.4rem;
    }

    .routes-list li:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        background: linear-gradient(135deg, #301f20, #e63946);
        cursor: pointer;
    }


    /* ============================= */
    /* ======= Mobile Styles ======= */
    /* ============================= */
    @media (max-width: 767px) {



        .main-heading {
            font-size: 22px;
            white-space: normal; /* allow wrapping in mobile */
            overflow: visible;   /* show full text */
            text-overflow: clip;
        }

        .main-heading .sub-heading {
            display: block;  /* move to new line */
            font-size: 15px;
            margin-left: 0;
            margin-top: 5px;
        }
        .highlight-text {
            font-size: 12px;
            margin-top: 5px;
            white-space: normal;
        }

        .form-heading {
            font-size: 13px;
        }

        .main-home-form {
            padding: 15px;
        }
    }

    /* ============================= */
    /* ===== Desktop Full Width ===== */
    /* ============================= */
    @media (min-width: 1200px) {
    .landing-banner .container {
        max-width: 1400px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .main-home-form {
        max-width: 1200px;
    }

    .banner-image-container {
        max-width: 760px;
    }
    }

    /* ============================= */
    /* Floating Contact Buttons */
    /* ============================= */
    .floating-contact {
        position: fixed;
        top: 50%;                /* vertical center for desktop */
        right: 0;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Common button styles */
    .floating-contact .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        padding: 10px 15px;
        margin: 5px 0;
        border-radius: 5px 0 0 5px;
        font-size: 14px;
        width: 180px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .floating-contact .btn i {
        margin-right: 8px;
        font-size: x-large;
    }

    .floating-contact .btn-call {
        background-color: #002EFE;
    }
    .floating-contact .btn-call:hover {
        background-color: #16484b;
    }

    .floating-contact .btn-whatsapp {
        background-color: #00BF62;
    }
    .floating-contact .btn-whatsapp:hover {
        background-color: #1eb954;
    }

    /* ============================= */
    /* Mobile adjustments */
    /* ============================= */
    @media (max-width: 767px) {
    .floating-contact {
        top: auto;
        bottom: 0;             /* stick to bottom */
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
    }

    .floating-contact .btn {
        flex: 1;
        width: 50%;           /* half screen each */
        margin: 0;
        border-radius: 0;
        padding: 12px 0;
        font-size: 14px;
    }

    .floating-contact .btn i {
        margin-right: 5px;
    }
    }

    .useful-links a {
        margin: 0 10px;
        text-decoration: none;
        color: #fff;      /* white */
        /* font-weight: bold; bold */
    }
    .useful-links a:hover {
        text-decoration: underline;
        color: #f8f9fa; /* slightly lighter white on hover */
    }

    .features-list p {
        color: #000000ff;           /* white text */
        font-weight: 500;      /* semi-bold */
        font-size: 15px;       /* mobile-friendly size */
        line-height: 1.6;
        margin: 6px 0;
        display: flex;
        align-items: center;
    }

    .features-list p::before {
        /* content: "✅"; */
        margin-right: 8px;
        font-size: 16px;
    }

    .features-list p {
        position: relative;
        padding-left: 30px; /* space from left for checkmark */
        margin-bottom: 10px;
        color: #070707ff;       /* white text */
        font-weight: 500;
        line-height: 1.6;
    }

    .features-list p::before {
        content: "✅";
        position: absolute;
        left: 0;           /* checkmark on the far left */
        top: 0;
        font-size: 18px;
    }

    /* Hide banner image container on mobile */
    @media (max-width: 767px){
    .banner-image-container{
        display: none !important;
    }
    }

    @media (max-width: 767px){
    .banner-image-container img{
        display: none !important;
    }
    }

    .quote-form .form-control {
        color: #000 !important;
        background-color: #fff !important;
        border: 1px solid #ccc;
    }

    .quote-form select.form-control {
        color: #000 !important;
        background-color: #fff !important;
        appearance: auto !important;
    }
    .testimonial-item {
        border-left: 4px solid #1f4fd8;
        padding-left: 20px;
    }

    .testimonial-item h5 {
        font-weight: 600;
    }

    .rating {
        font-size: 18px;
        color: #f5a623;
    }

    .customer-reviews .reviews-head{
        display:flex;
        justify-content:space-between;
        align-items:flex-end;
        gap:12px;
        margin-bottom:8px;
    }

    .customer-reviews .title{
        font-size:26px;
        font-weight:800;
        margin:0;
    }

    .customer-reviews .subtext{
        margin:0 0 16px 0;
        color:#444;
    }

    .customer-reviews .see-all{
    font-weight:600;
    text-decoration:none;
    color:#111;
    white-space:nowrap;
    }
    .customer-reviews .see-all:hover{ text-decoration:underline; }

    .customer-reviews .reviews-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    }

    .review-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:16px;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    position:relative;
    }

    .review-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:10px;
    }

    .user{
    display:flex;
    gap:12px;
    align-items:center;
    min-width:0;
    }

    .avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex:0 0 46px;
    }

    .avatar-letter{
    background:#c2185b;
    color:#fff;
    font-weight:800;
    font-size:18px;
    }

    .meta{ min-width:0; }

    .name{
    font-weight:800;
    font-size:16px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:220px;
    }

    .stars{
    margin-top:3px;
    line-height:1;
    font-size:14px;
    user-select:none;
    }
    .star{ color:#f5a623; }

    .review-title{
    font-size:15px;
    font-weight:800;
    margin:0 0 6px 0;
    }

    .review-text{
    margin:0;
    color:#333;
    font-size:14px;
    line-height:1.6;
    }

    .review-footer{
    margin-top:10px;
    font-size:13px;
    color:#666;
    }

    .see-more{
    border:none;
    background:transparent;
    padding:0;
    margin-top:6px;
    color:#1f4fd8;
    font-weight:700;
    cursor:pointer;
    }
    .see-more:hover{ text-decoration:underline; }

    /* Text clamp like screenshot */
    .clamp{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    }

    /* Responsive */
    @media (max-width: 991px){
    .customer-reviews .reviews-grid{ grid-template-columns:repeat(2, 1fr); }
    }
    @media (max-width: 575px){
    .customer-reviews .reviews-grid{ grid-template-columns:1fr; }
    .customer-reviews .title{ font-size:22px; }
    }

    /* Clean text alignment & heading size */
    .relocation-text p{
        text-align: justify;
        font-size: 15px;
        line-height: 1.7;
        color: #222;
        margin-bottom: 12px;
    }

    .relocation-text h4{
        font-size: 16px;        /* smaller */
        font-weight: 700;      /* bold */
        margin-top: 18px;
        margin-bottom: 6px;
        color: #111;
        text-align: left;
    }

    /* Mobile optimization */
    @media (max-width: 767px){
        .relocation-text p{
            font-size: 14px;
            line-height: 1.65;
        }

        .relocation-text h4{
            font-size: 15px;
            text-align: left;
        }
    }

    .relocation-text p{
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    }

    .relocation-intro{
    max-width: 900px;
    margin-bottom: 16px;
    }

    .relocation-points{
    display: flex;
    flex-direction: column;
    gap: 14px;
    }

    .relocation-point{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    }

    .relocation-icon{
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
    }

    .relocation-point h4{
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    }

    .relocation-point p{
    margin: 0;
    text-align: justify;
    }

    @media(max-width:767px){
    .relocation-text p{
        font-size: 14px;
    }
    .relocation-point h4{
        font-size: 15px;
    }
    }
    @media (max-width: 991px) {
        .hide-mobile {
            display: none !important;
        }
    }
    @media (min-width: 992px) {
        .hide-mobile {
            display: block;
        }
    }

    @media (max-width: 991px) {
        .show-mobile {
            display: block !important;
        }
    }
    @media (min-width: 992px) {
        .show-mobile {
            display: none !important;
        }
    }

    /* Mobile banner wrapper */
    .mobile-banner {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    /* Banner image (more grey + clean) */
    .mobile-banner .banner-image {
        width: 100%;
        display: block;
        /* filter: grayscale(35%) brightness(65%); */
    }

    /* Strong dark overlay for readability */
    .mobile-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.6),
            rgba(0,0,0,0.8)
        );
        z-index: 1;
    }

    /* Text on top */
    .mobile-banner .banner-text {
        position: absolute;
        inset: 0;
        z-index: 2;
        /* padding: 16px; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        color: #ffffff;
    }

    /* Heading */
    .mobile-banner .main-heading {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 8px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        color: #fff;
    }

    /* Highlight text */
    .mobile-banner .highlight-text {
        font-size: 12px;
        line-height: 1.6;
        font-weight: 600;
        text-align: left;
       /* -webkit-text-stroke: 0.5px #ffffff; */
        paint-order: stroke fill;
        margin-left: 30px;
    }

    .faq-cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, #e60023, #ff3b3b); /* attractive red */
        color: #ffffff;
        padding: 12px 32px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;

        /* CENTER */
        margin: 20px auto 40px;   /* top | auto-center | bottom space */
        display: block;
        width: fit-content;

        transition: all 0.3s ease;
    }

    /* Hover effect */
    .faq-cta-btn:hover {
        background: linear-gradient(135deg, #c4001c, #ff1f1f);
        transform: translateY(-2px);
        color: #ffffff;
    }

    @media (max-width: 767px) {
        .faq-cta-btn {
            margin-bottom: 60px;
        }
    }

    html {
        scroll-behavior: smooth;
    }


/* form */

/* ======= YOUR ORIGINAL CSS (UNCHANGED) ======= */
.main-home-form {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.form-heading{
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: #E22B2E;
}

.nb-toggle{
  display:flex;
  justify-content:center;
  background:#00000026;
  border-radius: 999px;
  padding: 4px;
  width: 320px;
  margin: 0 auto 10px auto;
}

.nb-btn{
  border:0;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor:pointer;
  color:#333;
  width: 50%;
}
.nb-btn.active{
  background:#002EFE;
  color:#fff;
}

.quote-form .form-control{
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  font-size: 15px;
  height: 37px;
}

.quote-form .btn-primary{
  background-color:#E22B2E;
  border:none;
  color:#fff;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 6px;
}

.error-line{
  font-size: 12px;
  color: #d90429;
  min-height: 14px;
}

@media(max-width:767px){
  .form-heading{ font-size: 18px; }
  .nb-toggle{ width: 100%; max-width: 340px; }
}

@media(max-width:767px){
  .banner-image-container{ display:none !important; }
}

.tnc-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-size:14px;
  color:#111;
}
.tnc-line input{
  width:16px;
  height:16px;
  margin:0;
}
.tnc-line a{ color:#1240FF; text-decoration:none; font-weight:700; }
.tnc-line a:hover{ text-decoration:underline; }

@media(max-width:767px){
  .tnc-line{ font-size:13px; }
}

/* =========================================================
   NEW UI CSS (ONLY ADDITIONS)
========================================================= */

/* ✅ Desktop row alignment: keep clean + centered */
@media (min-width: 768px){
  .quote-row{
    justify-content: center;
    align-items: flex-start;
  }
  .quote-row > [class*="col-"]{
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Field label */
.field-lbl{
  display: none;
  font-size: 13px;
  font-weight: 800;
  color:#111;
  margin: 0 0 6px 2px;
}

/* wrapper for icon inside input */
.ui-wrap{
  position: relative;
}

/* red pin icon inside From/To */
.loc-ico{
  position:absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  z-index: 2;
  pointer-events:none;
}
.loc-ico svg{ width:16px; height:16px; display:block; }

/* pad input to make space for icon */
.loc-pad{
  padding-left: 34px !important;
}

/* +91 phone pill */
.phone-wrap{
  display:flex;
  align-items:center;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  height: 37px;
  overflow:hidden;
  background:#fff;
}
.phone-code{
  display:flex;
  align-items:center;
  gap:6px;
  padding: 0 10px;
  height: 100%;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
  font-size: 13px;
  color:#444;
}
.phone-flag{
  width:18px;
  height:12px;
  border-radius:2px;
  display:block;
}
.phone-code .caret{
  font-size:12px;
  color:#777;
}
.phone-wrap input{
  border:0 !important;
  outline:none !important;
  height:100% !important;
  width:100% !important;
  padding-left:10px !important;
  font-size:15px;
}

/* ✅ Outside city typed dropdown */
.city-dd{
  position:absolute;
  left:0;
  right:0;
  top: calc(100% + 4px);
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  z-index:9999;
  max-height: 220px;
  overflow:auto;
}
.city-dd .city-item{
  padding:10px 12px;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
  color:#111;
}
.city-dd .city-item:hover{
  background:#f6f7fb;
}
.city-dd .city-empty{
  padding:10px 12px;
  font-size:13px;
  color:#6b7280;
}

/* ✅ MOBILE compact spacing */
@media (max-width: 767px){
  .main-home-form{ padding: 14px; }

  .quote-form .row.mb-2{ margin-bottom: 6px !important; }

  .quote-form .col-sm-6.mb-2,
  .quote-form .col-md-2.mb-2,
  .quote-form .col-md-3.mb-2,
  .quote-form .col-12.mb-3{ margin-bottom: 8px !important; }

  .quote-form .form-control{
    height: 38px !important;
    font-size: 14px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .phone-wrap{ height: 38px !important; }
  .phone-wrap input{ font-size: 14px !important; }
  .phone-code{ padding: 0 8px !important; font-size: 12px !important; }

  .loc-ico{ left: 10px !important; width: 16px !important; height: 16px !important; }
  .loc-ico svg{ width:16px !important; height:16px !important; }
  .loc-pad{ padding-left: 34px !important; }

  .field-lbl{ margin-bottom: 4px !important; display:block; }

  .quote-form .btn-primary,
  .quote-form .btn-success,
  .quote-form .btn-secondary{
    padding: 9px 18px !important;
    font-size: 14px !important;
  }

  .error-line{ min-height: 12px !important; }
}
@media (max-width: 380px){
  .quote-form .form-control{ height: 36px !important; }
  .phone-wrap{ height: 36px !important; }
  .phone-code .caret{ display:none; }
}
#other_input_container {
  position: relative;
  max-width: 400px;
}
#other_item_input {
  width: 100%;
  font-size: 16px;
}
#suggestion_list {
  border: 1px solid #ccc;
  background: #f8f6f6;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  margin-top: 2px;
  list-style: none;
  padding: 0;
  color: black;
}
#suggestion_list li {
  padding: 10px;
  cursor: pointer;
}
#suggestion_list li:hover {
  background-color: rgb(229, 166, 166);
}
#suggestion_list li.no-result {
  color: #888;
  cursor: default;
}

/*  */

/* ===== OTP POPUP (LIKE SCREENSHOT) ===== */
.otp-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}
.otp-modal{
  background:#fff;
  width:520px;
  max-width:95%;
  border-radius:12px;
  padding:30px 34px;
  text-align:center;
  box-shadow:0 12px 35px rgba(0,0,0,0.22);
}
.otp-title{
  font-size:26px;
  margin:0 0 12px;
  font-weight:600;
  color:#2a2a2a;
}
.otp-sub{
  font-size:14px;
  color:#666;
  margin:0 0 18px;
  line-height:1.45;
}
.otp-label{
  display:block;
  text-align:left;
  font-size:13px;
  margin-bottom:6px;
  font-weight:600;
  color:#3a3a3a;
}
.otp-input{
  width:100%;
  height:44px;
  border:1px solid #ddd;
  border-radius:4px;
  padding:0 12px;
  font-size:16px;
  outline:none;
}
.otp-input:focus{ border-color:#b9b9b9; }
.otp-timer{
  text-align:right;
  font-size:13px;
  color:#4a5cff;
  margin:8px 0 18px;
  user-select:none;
}
.otp-btn{
  width:100%;
  background:#E22B2E;
  border:none;
  height:46px;
  border-radius:4px;
  color:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
}
.otp-btn:disabled{ opacity:.7; cursor:not-allowed; }
.otp-back{
  margin-top:16px;
  font-size:14px;
  color:#444;
  cursor:pointer;
  user-select:none;
}
.otp-back:hover{ text-decoration:underline; }