body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.topbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-soft {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  font-size: 13px;
}

.types-box {
  background: transparent -webkit-gradient(
      linear,
      left top,
      right top,
      from(#f7f1f5),
      color-stop(52%, #f4f6fa),
      to(#f4f1f2)
    )
    0 0 no-repeat padding-box;
  padding: 30px;
  border-radius: 12px;
}
.type-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
}

.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
}

.feature {
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.topbar-center {
  height: 126px;
  color: #fff;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  clip-path: polygon(0% 0%, 101% 0%, 85% 107%, 16% 100%);
}

.pincode-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 3px;
}

.topbar-right {
  position: absolute;
  right: 40px;
  font-size: 14px;
  color: #333;
}

.topbar-right span {
  margin-left: 20px;
  cursor: pointer;
}

/* HEADER */

.header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.logo img {
  height: 72px;
}

.flag {
  width: 28px;
  margin-left: 10px;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-box input {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0 45px 0 20px;
  font-size: 14px;
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  cursor: pointer;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  height: 100%;
}

.header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
}

.header-item i {
  font-size: 20px;
  margin-bottom: 4px;
  color: #333;
}

.header-item:hover i,
.header-item:hover span {
  color: red;
}

@media (max-width: 768px) {
  .header-icons {
    justify-content: center;
    gap: 18px;
    margin-top: 8px;
  }
  .header-item span {
    font-size: 11px;
  }
}
.logo {
  height: 126px;
  font-size: 30px;
  font-weight: 700;
  color: #2b6f6b;
  letter-spacing: 2px;
}

.tagline {
  font-size: 11px;
  color: #666;
  margin-top: -5px;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 42px;
  border-radius: 25px;
  border: 1px solid #ddd;
  padding-left: 20px;
  padding-right: 40px;
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
}

.header-icons div {
  text-align: center;
  font-size: 12px;
}

.header-icons i {
  font-size: 20px;
  display: block;
}

/* NAV */
/* ===== NAVBAR ===== */
.navbar-custom {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1050; /* Keep navbar above other sticky/positioned elements */
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  padding: 0 15px;
  position: static;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px 8px;
}

.hamburger-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.navbar-custom a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding: 14px 2px;
  display: inline-block;
  transition: color 0.3s ease;
}

.navbar-custom a::after {
  content: "";
  height: 2px;
  width: 0;
  background: red;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.navbar-custom a:hover { color: red; }
.navbar-custom a:hover::after,
.navbar-custom a.active::after { width: 100%; }
.navbar-custom a.active { color: red; }

/* ===== DROPDOWN (desktop base styles — MUST come before media queries) ===== */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 2px;
  transition: color 0.3s;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  color: red;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  padding: 10px 0;
  z-index: 9999;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f5f1ed;
  color: red;
  padding-left: 26px;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .nav-links { gap: 18px; }
  .navbar-custom a { font-size: 13px; }
}

/* ===== MOBILE DRAWER ===== */
@media (max-width: 768px) {
  .navbar-custom .container {
    padding: 0 12px;
    position: relative;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, box-shadow 0.3s ease;
    z-index: 9999;
    border-top: 2px solid red;
    box-shadow: none;
  }

  .nav-links.active {
    max-height: 800px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }

  .navbar-custom a {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid #f2f2f2;
    white-space: normal;
    color: #333;
  }

  .navbar-custom a:last-child { border-bottom: none; }

  .navbar-custom a:hover,
  .navbar-custom a.active {
    background: #fff5f5;
    color: red;
    padding-left: 26px;
  }

  .navbar-custom a::after { display: none; }

  /* Mobile: inline dropdown (no absolute clipping inside overflow:hidden) */
  .dropdown-container {
    display: block;
    width: 100%;
  }

  .dropdown-toggle {
    padding: 14px 20px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #f2f2f2;
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: #f9f9f9;
    z-index: auto;
  }

  .dropdown-menu a {
    padding: 12px 30px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 13px;
  }

  .dropdown-menu a:hover {
    padding-left: 36px;
  }
}

/* HERO */
.hero {
  margin: 15px 0;
  height: 460px;
  background: url("./WhatsApp Image 2026-05-26 at 12.12.09 AM.jpeg")
    center/cover no-repeat;
}

/* FLOAT */
.float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ABOUT */
.about-section {
  padding: 60px 0;
  text-align: center;
}

.about-title {
  font-size: 42px;
  font-weight: 600;
  color: black;
  margin-bottom: 20px;
}

.about-text {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.adv-title {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 600;
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #e8dfd6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: red;
}

.adv-text {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}
.adv-section {
  padding: 40px 0;
  max-width: 768px;
  margin: auto;
}

.adv-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #e8dfd6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: 22px;
}

.adv-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}
/* SECTION BG */
.faq-section {
  background: #f3f1ef;
  padding: 60px 0;
}

/* TITLE */
.faq-title {
  font-size: 40px;
  font-weight: 600;
  color: black;
  margin-bottom: 30px;
}

/* BOX */
.faq-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 0 0 1px #eee;
}

/* FAQ ITEM */
.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 17px;
  color: #333;
}

.faq-icon {
  color: #333;
  font-size: 14px;
}

/* CITIES */
.city-section {
  padding: 60px 0;
  text-align: center;
  background: #f7f7f7;
}

.city-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

.city-list {
  max-width: 1000px;
  margin: 0 auto;
  color: #444;
  font-size: 15px;
  line-height: 2;
}

.city-list span {
  margin: 0 10px;
  position: relative;
}

.city-list span::after {
  content: "|";
  margin-left: 10px;
  color: #999;
}

.city-list span:last-child::after {
  display: none;
}

.see-more {
  margin-top: 20px;
  font-size: 14px;
  color: #8b6f58;
  font-weight: 600;
  cursor: pointer;
}
.footer {
  padding: 50px 0 20px;
  font-size: 14px;
  color: #333;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer a:hover {
  text-decoration: underline;
}

/* subscribe */
.subscribe-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.subscribe-box input {
  flex: 1;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 15px;
}

.subscribe-box button {
  background: #3a3f3f;
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 6px;
}

/* payment icons */
.payment-icons img {
  height: 28px;
  margin-right: 10px;
}

/* divider */
.footer-divider {
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

.footer {
  padding-top: 50px;
  color: #333;
  font-size: 14px;
}

.footer h6 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer a:hover {
  color: #000;
}

.subscribe-box input {
  border-radius: 4px 0 0 4px;
  border: 1px solid #ccc;
}

.subscribe-box button {
  border-radius: 0 4px 4px 0;
  background: #3b3f42;
  color: #fff;
  border: none;
  padding: 0 20px;
}

.payment-icons img {
  height: 28px;
  margin-right: 8px;
}

.footer-divider {
  border-top: 1px solid #ddd;
  margin: 40px 0;
}

.logo-box {
  background: #2f9e9a;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
}

.contact-info i {
  margin-right: 8px;
}

.social-icons i {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
}

.copyright {
  text-align: center;
  font-size: 13px;
  padding: 15px 0;
  color: #555;
}
.faq-title {
  font-weight: 700;
  letter-spacing: 1px;
  color: black;
  margin-bottom: 30px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #eee;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
}

.accordion-body {
  color: #555;
  font-size: 14px;
}

.cities-section {
  background-image: url("https://www.damroindia.com/_next/static/media/delivery_bg.de7ce0fddce41ce2eefe2b662f0e126d.svg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.cities-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.city-list {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.city-list li {
  display: inline-block;
  font-size: 16px;
  color: #333;
  margin: 6px 8px;
}

/* Add separator */
.city-list li::after {
  content: "|";
  margin-left: 10px;
  color: #999;
}

.city-list li:last-child::after {
  content: "";
}

.see-more {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}

.see-more:hover {
  color: #000;
}
/* Main Box */
.layout-box {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  max-width: 900px;
  margin: 40px auto;
}

/* Grid */
.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Item */
.layout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* Active */
.layout-item.active {
  background: #b99772;
  color: #fff;
}

/* Icon Box */
.icon-box {
  width: 45px;
  height: 45px;
  background: #f1ebe5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon lines */
.icon {
  width: 22px;
  height: 22px;
  border: 2px solid #9c836b;
  position: relative;
}

/* Shapes */
.l-shape::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #9c836b;
  bottom: -2px;
  left: 0;
}

.u-shape {
  border-bottom: none;
}

.island {
  border: 2px solid #9c836b;
  width: 18px;
  height: 18px;
}

.line {
  height: 2px;
  width: 18px;
  background: #9c836b;
}

.parallel::before,
.parallel::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #9c836b;
  left: 0;
}

.parallel::before {
  top: 5px;
}
.parallel::after {
  bottom: 5px;
}

.peninsula::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #9c836b;
  bottom: -2px;
  right: 0;
}

/* Text */
.layout-item span {
  font-size: 15px;
  font-weight: 500;
}

/* Hover */
.layout-item:hover {
  background: #eee;
}

/* Active icon color */
.layout-item.active .icon,
.layout-item.active .icon::before,
.layout-item.active .icon::after {
  border-color: #fff;
  background: #fff;
}
