/** Shopify CDN: Minification failed

Line 214:8 Expected identifier but found whitespace
Line 214:20 Unexpected ";"

**/
.header__menu-item {
    padding: 1.2rem;
    font-size: 14px !important;
    font-weight: 700;
    text-decoration: none;
    color: #413d3d !important;
    font-family: "Dosis", sans-serif;
    text-transform: uppercase;
}
.header {
    padding: 9px 2rem 10px 2rem !important;
}
.header__menu-item:hover {
    color: #f58f22 !important;
}
/* REMOVE underline from header menu (hover + active) */
.header__inline-menu .header__menu-item,
.header__inline-menu .header__menu-item span {
  text-decoration: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Hover state */
.header__inline-menu .header__menu-item:hover span {
  text-decoration: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Active menu item */
.header__inline-menu .header__active-menu-item {
  text-decoration: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Dawn theme special underline fix */
.header__inline-menu .header__menu-item span::after {
  display: none !important;
  content: none !important;
}
/* ================= HERO ================= */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING BULBS */
.floating-bulb {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,255,255,0.9);
  animation: bulbFloat linear infinite;
  opacity: 0;
}

@keyframes bulbFloat {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-250px); opacity: 0; }
}

.floating-bulb {
  left: calc(100% * var(--x));
  top: calc(100% * var(--y));
  animation-duration: calc(8s + (var(--d) * 6s));
  animation-delay: calc(var(--d) * -5s);
}

.floating-bulb:nth-child(2n) { --x:.2; --y:.9; --d:.2; }
.floating-bulb:nth-child(3n) { --x:.4; --y:.8; --d:.3; }
.floating-bulb:nth-child(4n) { --x:.6; --y:.85; --d:.4; }
.floating-bulb:nth-child(5n) { --x:.8; --y:.75; --d:.5; }

/* ================= CARDS ================= */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: -46px 163px 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
/* Small screens */
@media (max-width: 600px) {
  .hero-cards {
    margin: 0; /* Small screens margin 0 */
    grid-template-columns: 1fr; /* Optional: 1 column for mobile */
    gap: 20px; /* Optional: reduce gap on mobile */
  }
}
.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 268px;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  height: 268px;
}

.card-overlay h3 {
    font-size: 25px;
    margin-bottom: -14px;
    font-weight: 600;
    color: #fff;
    font-family: "Dosis", sans-serif !important;
}

.card-overlay.card-custom-1 p {
    font-size: 15.3px;
    margin-bottom: 4px;
    font-family: "Dosis", sans-serif !important;
}

.card-btn {
  display: inline-block;
  text-transform: uppercase;
  background: #fff;
  color: #333;
  padding: 4px 15px;
  margin-top: 5px;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
}
.card-btn:hover {
  background: #f58f22;
  color: #fff;
}
.card-overlay.card-custom-2 p {
    background: red;
    display: inline;
    padding: 0px 5px;
    margin-bottom: 4px;
    font-size: 14.3px;
}

.card-overlay a.has-link h3 {
  text-decoration: underline;
  margin-bottom: -5px;
}
.card-custom-2 .card-btn{
  text-transform: uppercase;
  background: #fff;
  color: #333;
  padding: 4px 15px;
  border-radius: 4px;
  font-size: 15px;
  width: 250px;
  margin: 10px auto 0px;
}
.card-custom-2 .card-btn:hover {
  background: #f58f22;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .hero-image-wrapper { height: 420px; }

  .hero-cards {
    grid-template-columns: 1fr;
    margin-top: -60px;
  }

  .hero-card img {
    height: 280px;
  }
}
/* ============================================ */
.image-text-slider-section {
    background-color: #f5f5f5;
    padding: 0px 20px !important;
    padding-top: 0px !important;
}
/* .svg-wrapper {
  display: block !important;        /* inline-block → block */
  width: fit-content;    /* button jitna hi wide rahe */
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px; 
  background-color:#4abfa7;     /* upar se gap */
} */
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    display: none;
}


@media screen and (min-width: 990px) {
    .rich-text__blocks {
        max-width: 120rem !important;
    }
}
h2.rich-text__heading.rte.inline-richtext.h1.scroll-trigger.animate--slide-in {
    font-size: 50px;
    font-weight: 600;
    color: #6e6e6e;
    font-family: 'Dosis', sans-serif;
}
.rich-text__text.rte.scroll-trigger.animate--slide-in {
    font-weight: 600;
    font-size: 16px;
    font-family: 'Dosis', sans-serif;
}

h2.image-with-text__heading.inline-richtext.h1 {
    font-size: 30px;
    font-weight: 500;
    color: #6e6e6e;
}
h2.rich-text__heading.rte.inline-richtext.h1.scroll-trigger.animate--slide-in {
    font-size: 30px;
    font-weight: 500;
    color: #6e6e6e;
}
.rich-text__text.rte.scroll-trigger.animate--slide-in {
    font-size: 18px;
    font-weight: 400;
    color: #242424;

}
.rich-text__text.rte.scroll-trigger.animate--slide-in h2 {
    font-size: 22px;
    font-weight: 400;
    color: #242424;
        letter-spacing: 8px !important;
    
}
/* strong {
    font-size: 24px;
    color: #242424;
    font-family: 'Dosis', sans-serif;
} */
h2.rich-text__heading.rte.inline-richtext.h0.scroll-trigger.animate--slide-in {
    font-weight: 600;
    color: #6e6e6e;
    font-family: 'Dosis', sans-serif;
}

h3.inline-richtext {
    color: #F58F22;
    font-size: 25px;
    text-align:justify;
}