a{
	text-decoration:none !important;
}
.custom-path-icon{
	width:40px;
}
.hero{
	margin:0px;
}
.cta-actions .btn-primary{
	color:#fff
}
*{
	box-sizing:border-box !important;
}

/*-----Page Css----*/
.page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 0px;
            margin-bottom: -70px;
}

/*----Hero Section animation imags--*/
.hero-animate-img{
	width:150px;
	height:60px;
}
.hero-animate-img>img{
	width:100%;
	height:100%;
	object-fit:cover;
}
/*------Hero section----*/
.hero{
min-height:90vh !important;
}
.hero-inner{
	gap:30px
}
.hero h1{
	font-size:75px;
	margin-top:-20px
}
@media(max-width:780px){
    .page-container {
        margin-bottom: -30px;
    }
	.hero{
min-height:85vh !important;
}
	.hero h1{
		font-size:35px !important;
	}
	.hero-badges{
		margin-top:25px !important;
	}
	.hero-actions{
		gap:20px !important;
	}
}
/*-----Error---*/
.pay-icon img,.social-link img,.values-icon-img,.vision-icon-img,img.btn-icon,img.badge-icon,img.author-icon,.icon img,.emergency-icon-wrapper img,img.form-icon,img.button-icon{
	width:25px;
	height:25px;
	object-fit:contain;
}


/*================================================================
Hedare CSS
====================================================================*/

:root {
  --primary: #7b2f18;
  --accent: #fce6c8;
  --white: #ffffff;
  --text: #333333;
  --header-h: 80px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Open Sans", sans-serif; color: var(--text); }

a { text-decoration: none; color: var(--primary); }
button { border: none; cursor: pointer; font-family: "Poppins", sans-serif; background: none; }

/* HEADER BASE */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 3000;
}
.header-content {
  display: flex; justify-content: space-between; align-items: center;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo img {
  height: 45px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
    .site-logo{
        font-size: 1.2em;
    }
  .site-logo img {
    height: 40px;
  }
    li.nav-dropdown>a>i{
    display: inline-block;
    width: 30%;
    height: 100%;
    text-align: end;
  }
  li.nav-dropdown>a>span{
      flex: 1;
  }
}

/* DESKTOP NAV */
.nav-primary { display: flex; align-items: center; gap: 20px; }
.nav-list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }

.nav-item { position: relative; }
.nav-item-link {
  color: var(--text);
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item-link:hover { color: var(--primary); }

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  min-width: 210px;
  z-index: 2000;
}
.nav-dropdown .nav-dropdown>a{
     display: flex !important;
  }

@media (min-width: 767px) {
.nav-dropdown .nav-dropdown ul.dropdown-menu{
transform: translateX(100%) !important;
top:0px;
right: 100%;
} 
	.nav-dropdown .nav-dropdown>a>i{
		transform:rotate(270deg);
	}
}
.nav-item.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu .nav-item {
  padding: 0;
}
.dropdown-menu .nav-item-link {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.dropdown-menu .nav-item-link:hover {
  color: var(--primary);
  background: rgba(123,47,24,0.05);
}

/* CTA BUTTON */
.cta-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}
.cta-primary:hover { background: #5d2514; }

/* HAMBURGER BUTTON */
.mobile-menu-toggle {
  font-size: 1.8rem;
  color: var(--primary);
  display: none;
  transition: transform .2s;
}
.mobile-menu-toggle:hover { transform: scale(1.05); }

/* MOBILE MENU + OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 1500;
}
.mobile-overlay.is-open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--header-h));
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0 20px 30px;
  transform: translateX(100vw);
  transition: transform .35s ease;
  overflow-y: auto;
}
.mobile-nav-panel.is-open { transform: translateX(0); }

.mobile-nav-list {
  list-style: none;
  padding: 6px 0;
  margin: 0;
  flex: 1;
}
.mobile-nav-list .nav-item {
  border-bottom: 1px solid rgba(123,47,24,0.15);
  padding: 14px 0;
}
.mobile-nav-list .nav-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.mobile-nav-list .dropdown-menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 6px;
  display: none;
  border-left: 2px solid rgba(123,47,24,0.2);
  box-shadow: none;
  position: relative;
  top: auto; left: auto;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list .nav-dropdown.open > .dropdown-menu {
  display: block;
  animation: slideDown .28s ease;
}
.mobile-nav-list .dropdown-menu .nav-item {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(123,47,24,0.08);
}
.mobile-nav-list .dropdown-menu .nav-item-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE FOOTER CTA */
.mobile-nav-footer {
  position: sticky;
  bottom: 40px;
  margin-top: 20px;
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
  z-index: 3001;
}
.mobile-nav-footer .cta-primary {
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .nav-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-nav-panel, .mobile-overlay { display: none !important; }
}

/* Prevent header overlap with page content */
body { padding-top: var(--header-h); }

/* Adjust spacing for smaller screens */
@media (max-width: 767px) {
  body { padding-top: 50px; }
}

/* Logo & link hover cleanup */
.site-header a:hover,
.site-logo:hover { text-decoration: none !important; }

/* Mobile small screen footer adjustment */
@media (max-height: 700px) {
  .mobile-nav-footer { bottom: 20px; }
}



/*================================================================
Footer CSS
====================================================================*/

/* ===== Payment Options ===== */
:root{
  --pay-accent: var(--accent, #FCE6C8);
  --pay-primary: var(--primary, #7B2F18);
}

.payments-section{
  background:#fff;
  padding: clamp(48px, 7vw, 96px) 0;
}
.payments-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.payments-title{
  text-align:center;
  font-family:Poppins, system-ui, sans-serif;
  font-weight:700;
  color:#1f1f1f;
  line-height:1.2;
  font-size: clamp(26px, 3.6vw, 44px);
  margin:0 0 8px;
}
.payments-lede{
  text-align:center;
  color:#5b5b5b;
  margin:0 auto clamp(22px, 3vw, 34px);
  max-width: 70ch;
}

.payments-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
  margin-bottom: clamp(18px, 3vw, 26px);
}
@media (max-width: 960px){
  .payments-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .payments-grid{ grid-template-columns: 1fr; }
}

.pay-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding: clamp(16px, 2.6vw, 22px);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pay-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

.pay-icon{
  width: 56px; height: 56px;
  display:grid; place-items:center;
  color: var(--pay-primary);
  border-radius: 14px;
  background: var(--pay-accent);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 18px rgba(123,47,24,.08);
  margin-bottom: 10px;
}

.pay-title{
  font-family:Poppins, system-ui, sans-serif;
  font-weight:700;
  color:#1f1f1f;
  margin:0 0 6px;
  font-size: 1.05rem;
}
.pay-text{
  color:#444; margin:0;
}

.payments-note{
  background: #fbfbfb;
  border:1px dashed rgba(0,0,0,.12);
  padding: 12px 14px;
  border-radius: 12px;
  color:#3a3a3a;
  margin: 8px 0 18px;
}

.payments-cta{ text-align:center; margin-top:35px; }
.pay-btn{
  display:inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight:700;
  background: var(--pay-primary);
  color:#fff;
  border:1px solid var(--pay-primary);
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(123,47,24,.22);
  transition: background .25s ease, transform .15s ease, box-shadow .2s ease;
}
.pay-btn:hover{ background:#5c220f; transform: translateY(-2px); }

/* ===== CTA band (Full Pink) ===== */
.cta-band {
  background: var(--accent); /* full pink */
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 2px solid rgba(0,0,0,0.05);
  border-bottom: 2px solid rgba(0,0,0,0.05);
}
.cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(30px, 6vw, 60px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cta-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(26px, 3.8vw, 44px);
  color: var(--primary);
  margin-bottom: 24px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.cta-actions .btn-primary {
  background: var(--primary);
  color: #fff;
}
.cta-actions .btn-primary:hover {
  background: #5c220f;
}
.cta-actions .btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.cta-actions .btn-ghost:hover {
  background: rgba(123, 47, 24, 0.08);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: #f5efe9;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) 20px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr 1.2fr;
}
@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}
.footer-brand {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
}
.footer-head {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 6px;
}
.footer-list a {
  color: #fff;
  text-decoration: none;
}
.footer-list a:hover {
  text-decoration: underline;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #fff;
}
.footer-contact-item>i{
    font-size: 18px;
    margin-right: 5px;
}
.inline-icon {
  margin-right: 8px;
  color: var(--accent);
}
.contact-icon{
    width: 20px;
    margin-right: 5px;
}
.contact-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-link {
  background: #fce6c8;
  color: #2b140b;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.social-link:hover {
  filter: brightness(0.95);
}
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  text-align: center;
  color: #f2e8df;
  font-size: 0.9rem;
}

/* Preloader Styles */
#site-preloader {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: #fff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#site-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}