
    .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: 10px;
    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: 20px;
        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: 18px;
        margin-left: 0;
        margin-top: 5px;
    }
    .highlight-text {
        font-size: 14px;
        margin-top: 5px;
        white-space: normal;
    }

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

    .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;
}

  .city-service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eee;
  }
  .city-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  .city-service-header {
    font-weight: 700;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px 12px 0 0;
  }
  .city-packers-header {
    background: linear-gradient(45deg, #007bff, #00c6ff);
  }
  .city-car-header {
    background: linear-gradient(45deg, #28a745, #71dd8a);
  }
  .city-bike-header {
    background: linear-gradient(45deg, #ffc107, #ff9800);
  }
  .city-service-card ul {
    padding: 20px;
    margin: 0;
  }
  .city-service-card ul li {
    list-style: none;
  }
  .city-service-card ul li a {
    display: block;
    color: #333;
    font-size: 15px;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .city-service-card ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
  }
  .city-service-icon {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 8px;
  }

