   .logo img {
    width: 180px;      
    height: auto;
    position: relative;
    top: 15px;         
    z-index: 10;        
}

/* ---------- HEADER FIX ---------- */
.header-area {
    background: #0b1416;
    height: 70px;
    padding: 0 80px;
    display: flex;
    align-items: center;
}

.header-area .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}



/* ---------- MENU ---------- */
.header-area .header-wrapper .main-menu ul li a {
    font-size: 15px;
    color: #c6a16e;
    font-weight: 400;
    padding: 10px 19px;
    display: block;
    position: relative;
    transition: all 0.3s ease-out 0s;
    font-family: "Roboto", sans-serif;
}

.header-area .header-wrapper .main-menu ul li a:hover {
    color: #fff;
}

/* ---------- GET QUOTE BUTTON FIX ---------- */
.btn2 {
    background: #c6a16e;
    color: #fff;
    padding: 26px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    top: 0;
    cursor: pointer;
}

.btn2:hover {
    background: #a8834f;
    color: #fff;
}

/* ---------- RESPONSIVE FIX ---------- */
@media (max-width: 991px) {
    .header-area {
        padding: 0px 0px;
        flex-wrap: wrap;
        height: auto;
    }

    .header-area .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn2 {
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .logo img {
        top: 0;
        width: 150px;
    }
}


@media (max-width: 767px) {
    .clients-area .single-offers {
        padding-left: 0px;
    }
}






/* --- New Contact Slider --- */
.contact-slider {
  position: relative;
  width: 100%;
  height: 450px; /* fixed height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1416;
}

.contact-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 20, 22, 0.6);
  z-index: 2;
}

.contact-slider-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  color: #fff;
  gap: 40px;
}

.contact-left {
  flex: 1;
}

.contact-left h1 {
    font-size: 43px;
    margin-bottom: 10px;
    color: #f8f9fa;
    font-weight: 700;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

/* --- Contact Form --- */
.contact-form {
    flex: 1;
    background: rgb(255 255 255 / 13%);
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.contact-form h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #c6a16e;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #a8834f;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-slider-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-left h1 {
    font-size: 28px;
  }

  .contact-form {
    width: 90%;
    margin-top: 20px;
  }
}



/* ✅ Mobile View (up to 768px width) */
@media (max-width: 768px) {
  .contact-slider {
    height: auto; /* allows flexible height */
    padding: 80px 20px 60px; /* top & bottom space */
    flex-direction: column;
    text-align: center;
  }

  .contact-slider-content {
    flex-direction: column;
  }

  .contact-left h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .contact-left p {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-form {
    width: 100%;
    max-width: 360px;
    margin-top: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px 14px;
  }

  .contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
}

/* ✅ For Very Small Screens (below 480px) */
@media (max-width: 480px) {
  .contact-left h1 {
    font-size: 20px;
  }

  .contact-left p {
    font-size: 13px;
  }
}


/* Mobile Call Button */
.mobile-call-btn {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.mobile-call-btn:hover {
  background-color: #ff9900;
  color: #fff;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }
}


/* Floating Download Button (Left Side in Mobile) */
.floating-download-btn {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 20px;
  left: 20px; /* 👈 shifted to left */
  background-color: #ffb703;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-download-btn:hover {
  background-color: #e09d00;
  transform: scale(1.1);
  color: #fff;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .floating-download-btn {
    display: block;
  }
}


/* Scrolling Text (Visible only on mobile) */
.mobile-scroll-text {
  display: none;
  background-color: #ffb703;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-scroll-text {
    display: block;
  }
}

.mobile-scroll-text marquee {
  width: 100%;
  white-space: nowrap;
}


/* Fix the list layout inside tailor section */
.feature-list {
  list-style: none; /* Remove default browser bullets */
  padding-left: 0;
  margin-top: 20px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Custom bullet */
.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b894; /* green tick */
  font-weight: bold;
  font-size: 16px;
}

/* Optional: make text-left inside text-center parent look proper */
.tailor-details {
  text-align: left !important;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .feature-list li {
    font-size: 14px;
    padding-left: 25px;
  }
}
