.elementor-9 .elementor-element.elementor-element-d370aba{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-9 .elementor-element.elementor-element-d370aba:not(.elementor-motion-effects-element-type-background), .elementor-9 .elementor-element.elementor-element-d370aba > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFDF7;}.elementor-9 .elementor-element.elementor-element-a28e9ea{width:100%;max-width:100%;background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 0%, #FFFCDD 100%);}/* Start custom CSS for html, class: .elementor-element-a28e9ea */<!-- Poppins Font (Head me add karein) -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">

<style>
/* Header */
.sdc-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff; /* ✅ Pure White Background */
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

.sdc-container {
  max-width: 1200px;
  margin: auto;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.sdc-logo img {
  height: 50px;
}

/* Menu */
.sdc-main-menu {
  display: flex;
  list-style: none;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.sdc-main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

/* Hover: Light background box + text accent */
.sdc-main-menu a:hover {
  background: rgba(255, 99, 71, 0.12);
  color: #ff6347;
}

/* Dropdown */
.sdc-has-dropdown { position: relative; }

.sdc-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  width: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sdc-has-dropdown:hover .sdc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sdc-dropdown li {
  list-style: none;
}

.sdc-dropdown a {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.sdc-dropdown a:hover {
  background: rgba(255, 99, 71, 0.1);
  color: #ff6347;
}

/* Button */
.sdc-book-btn {
  background: #2c7a7b; /* ✅ Fixed: Complete hex code */
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: background 0.3s ease;
}

.sdc-book-btn:hover {
  background: #236364; /* Slightly darker on hover */
}

/* Mobile Toggle */
.sdc-mobile-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ff6347;
}

/* Hide mobile button by default */
.sdc-mobile-book {
  display: none;
}

/* MOBILE */
@media (max-width: 991px) {

  .sdc-mobile-toggle { display: block; color: #ff6347; }

  .sdc-nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff; /* ✅ Pure White */
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }

  .sdc-nav.active {
    max-height: 700px;
  }

  .sdc-main-menu {
    flex-direction: column;
    padding: 20px;
    gap: 8px;
  }

  /* Mobile hover box full width */
  .sdc-main-menu a {
    padding: 12px 16px;
    display: block;
  }

  /* Dropdown mobile */
  .sdc-dropdown {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2,1fr);
    box-shadow: none;
    padding: 10px 0;
    left: auto;
    transform: none;
  }

  .sdc-has-dropdown.open .sdc-dropdown {
    display: grid;
  }

  /* Hide desktop button */
  .sdc-right .sdc-book-btn {
    display: none;
  }

  /* Show mobile button */
  .sdc-mobile-book {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

}
</style>/* End custom CSS */