*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #F9F5EE;
  --warm-white:   #FDFAF5;
  --saffron:      #D4700A;
  --saffron-lt:   #F0A84A;
  --saffron-pale: #FDF0DC;
  --earth:        #3D2B1F;
  --earth-mid:    #6B4C38;
  --earth-lt:     #A07858;
  --sage:         #5C7A5A;
  --sage-pale:    #EBF2EA;
  --border:       rgba(61,43,31,0.12);
  --shadow:       0 4px 24px rgba(61,43,31,0.1);
  --nav-h:        80px;
  --ease:         0.3s ease;
  --radius:       4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--earth-mid);
  overflow-x: hidden;
}
html,body{overflow-x: hidden !important}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad { padding: 88px 0; }
.bg-warm     { background: var(--warm-white); }
.tc          { text-align: center; }
.eyebrow:not(.tc)::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--saffron);
  flex-shrink: 0;
}

.serif-h {
 font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #2c2734;
    line-height: 1.2;
    margin-bottom: 10px;
}
.serif-h em { font-style: italic; color: var(--saffron); }

.body-p {
    color: #88858e;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.h-rule {
  width: 56px;
  height: 3px;
  background: #FF6D12;
  border-radius: 2px;
  margin: 0 auto 3.5rem;
}
.btn-primary {
  display: inline-block;
  background: #FF6D12;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); }

.btn-nav-donate {
  display: inline-block;
  background: #FF6D12;
  color: #fff;
  padding: 0.55rem 1.45rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  white-space: nowrap;
  transition: background var(--ease);
  flex-shrink: 0;
}
.btn-nav-donate:hover { background: var(--earth); }
.navbar {
	position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(61,43,31,0.08); }

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { max-height: 18px;}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;margin-bottom: 0px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.02em;
  transition: color var(--ease);
  border-radius: 2px;
}
.nav-links > li.active > a{background: #ff6d12;color: #fff;}
.nav-links > li a:hover{background: #ff6d12;color: #fff;}

.caret { font-style: normal; font-size: 12px; transition: transform var(--ease); }
.has-drop:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 188px;
  background: var(--warm-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(61,43,31,0.1);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}
.has-drop:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.84rem;
  color: #2c2734;
  transition: color var(--ease), background var(--ease);
}
.dropdown li a:not(:last-child){border-bottom: 1px solid #D8D8D8;}
.dropdown li a:hover{color: #ff6d12;background: #fff}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--earth);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* slides */
.hslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.hslide.active {
  opacity: 1;
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* content ALWAYS on top */
#heroContent{display: none}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
      width: 100%;
  z-index: 3;
  color: #fff;
  text-align: center;
}
 
 
 
   
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.hero-rule {
  width: 200px;
  height: 1px;
  background: rgb(255 255 255);
  margin: 0 auto 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
    font-size: 109px;
    font-weight: 600;
    line-height: 1.02;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-title em { font-style: italic; color: var(--saffron-lt); }

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    background: #ff6d12;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background var(--ease), color var(--ease), transform var(--ease);
}
.btn-hero:hover {background: #fff; color: var(--saffron); transform: scale(1.04); }

/* Slider controls */
.harrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--ease);
  opacity: 0.5;
}
.harrow:hover { background: rgba(255,255,255,0.25); opacity: 1; }
.harrow-prev { left: 28px; }
.harrow-next { right: 28px; }

.hdots {
  display: none !important;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hdot.on { background: #fff; transform: scale(1.35); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;padding-left: 0px;
}
.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
      color: #88858e;
    font-weight: 400;
    font-size: 15px;
  line-height: 1.7;
}
.chk {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

.col-img img {
  width: 100%;
  border-radius: var(--radius);
  border-style: solid;
    border-width: 0px 0px 15px 15px;
    border-color: #FF6D12;
    border-radius: 30px 30px 30px 30px;
}
.circ-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.circ-icon { font-size: 42px; flex-shrink: 0; line-height: 1; }
.circ-icon i{color: #494949;}
.circ-body h3 {
  font-size: 20px;
    font-weight: 500;
    color: #2c2734;
    margin-bottom: 15px;
}
.circ-body p {
  font-size: 0.9rem;
  color: #88858e;
    font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.car-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.car-viewport { overflow: hidden; flex: 1; border-radius: var(--radius); }
.car-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.car-track figure {
  flex-shrink: 0;
  width: 272px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.car-track img {
  width: 272px;
  height: 204px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.car-track figure:hover img { transform: scale(1.05); }

.car-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 0.5px solid var(--border);
  color: var(--earth);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--ease), color var(--ease);
}
.car-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.sc {
      background: #fff;
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: flex;
    flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.sc-img { display: block; aspect-ratio: 1; overflow: hidden; }
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sc-body {text-align: center;
  padding: 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sc-body h3 {
   font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    line-height: 1.35;
    letter-spacing: 0px;
}
.sc-body h3 a:hover { color: #FF6D12; }
.sc-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: #88858e;margin-top: auto;
}
.sc-body .btn-primary {
      margin: 0 auto;
  align-self: flex-start;
  font-size: 15px;
  padding: 0.55rem 1.25rem;
}
#footer {background-image: url(../images/base-footer.jpg);}
.footer-top{padding: 90px 0px 62px 0px}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 3fr 1fr;
  gap: 1rem;
}

.footer-brand {
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.footer-socials {display: flex;gap: 0.75rem;padding-top: 15px;}
.footer-socials a{
	width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--ease), color var(--ease);
}
.footer-socials a.fb{background: #465FDD}
.footer-socials a.yt{background: #D8423F}
.footer-socials a.fb:hover{background:#5a72ef;color: #fff;}
.footer-socials a.yt:hover{background: #ed5855;color: #fff;}

.fc-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}

.flinks {display: flex;flex-direction: column;gap: 0.6rem;padding-left: 0px;}
.flinks li a {font-size: 15px;
  color: #fff;
  font-weight: 400;
  transition: color var(--ease);
}
.flinks li a:hover{color: #FF6D12}

.contact-info li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.contact-info li span { flex-shrink: 0; font-size: 13px; margin-top: 2px;color: #FF9D00}
.contact-info a { color: rgba(249,245,238,0.55); transition: color var(--ease); }
.contact-info a:hover { color: var(--cream); }

.btn-fdonate {
  display: inline-block;
  outline: none;
    padding: 10px 30px 10px 30px;
    background-color: #ff6d12;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
  text-transform: capitalize;
  border-radius: 20px;
  transition: background var(--ease);
}
.btn-fdonate:hover { background: var(--saffron-lt); }

.footer-bottom {
  background: #231F29;
  padding: 32px 0;
  font-size: 0.78rem;
  color: rgba(249,245,238,0.3);
  text-align: center;
}
.footer-bottom a {color: #ff6d12}
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom p{font-size: 16px;color: #fff;margin-bottom: 0px}
.footer-bottom p a:hover{color: #0056b3;text-decoration: none}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

.in-view {
  opacity: 1 !important;
  transform: none !important;
}

/* Breadcrumb Section Start here */
.about_us{background: url("../images/about_us.jpg") center/cover no-repeat;}
.about-banner{position:relative;height:220px;display:flex;align-items:center;justify-content:center;text-align:center;margin-top:80px}
.about-banner::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.67}
.about-banner .container{position:relative;z-index:2}.about-banner-content h1{color:#fff;font-size:48px;font-weight:700;margin-bottom:10px}
.breadcrumb{font-size:18px;text-align:center;display:block}.breadcrumb a{color:#ff6a00;text-decoration:none;font-weight:600}
.breadcrumb span{color:#ddd;margin:0 5px}.breadcrumb .current{color:#cfcfcf}
/* Breadcrumb Section End here */

/* About Us Section Start */
.panjarpole-section{padding:60px 0;background-color: #fff;}
.panjarpole-row{display:flex;align-items:center;gap:40px}
.panjarpole-text{flex:1}
.panjarpole-text h2{font-size:30px;font-weight:600;margin-bottom:15px;color:#1f2937}
.panjarpole-text p{font-size:16px;line-height:1.8;color:#6b7280;margin-bottom:15px}
.panjarpole-image{flex:1;text-align:right}
.panjarpole-image img{max-width:100%;border-radius:25px;border:8px solid #ff6a00}
.trust-card.center-card{max-width:700px;margin:0 auto 40px;}
.trustees-section{background:#f4f4f4;padding:70px 0}
.section-title{text-align:center;margin-bottom:30px}
.section-title h2{font-size:28px;font-weight:600;color: #1f2937;position:relative;display:inline-block}
.section-title h2::after{content:"";display:block;width:60px;height:3px;background:#ff6a00;margin:10px auto 0}
.mt{margin-top:50px}.trust-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.trust-card{background:#f9f9f9;padding:30px;border-radius:6px;box-shadow:0 2px 10px rgba(0,0,0,.05)}
.trust-card.full{grid-column:span 2}
.trust-card h4{font-size:18px;font-weight:600;margin-bottom:10px;color:#222}
.city{color:#ff6a00;font-size:15px;margin-bottom:10px}
.divider{width:40px;height:2px;background:#ddd;margin:10px 0}
.phone{color:#5b6b8c;font-size:14px}
/* About Us Section End */

/* Gallery Section Start */
.gall_section{margin:30px 0px;}
.premium-gallery{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:190px;gap:15px}
.gallery-item{position:relative;overflow:hidden;border-radius: 20px;box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;border:2px solid #ccc;}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:.5s;    border-radius: 20px;}
.gallery-item:hover img{transform:scale(1.1);border-radius: 20px;}
.overlay{position:absolute;bottom:0;width:100%;padding:15px;background:linear-gradient(transparent,rgba(0,0,0,.7));color:#fff;opacity:0;transition:.4s}
.gallery-item:hover .overlay{opacity:1}
/* Gallery Section End */


/* Video Gallery Section Start */
.video_gall .premium-gallery{grid-template-columns: repeat(3, 1fr);grid-auto-rows: 250px;}
.video_gall .premium-gallery .gallery-item video {border-radius: 10px;height: 250px;object-fit: cover;width:100%;}
.video_gall .gallery-item::after {content: "\f04b"; font-family: "Font Awesome 6 Free";
font-weight: 900;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-size:20px;color: #fff;background: rgba(0,0,0,0.5);
width:50px;height:50px;line-height:50px;text-align: center;border-radius: 50%;transition: 0.3s;}
.gallery-item:hover::after {background: rgba(0,0,0,0.8);transform: translate(-50%, -50%) scale(1.1);}
/* Video Gallery Section End */

/* Our Donar Page Start */
.our_donar .premium-gallery{grid-template-columns: repeat(3, 1fr);grid-auto-rows:500px;}
/* Our Donar Page End */

/* Scheme Section Start */
.schemes-section{padding: 60px 0}
.bank-details{padding: 40px 0px 60px}
.bank_details_block{border: 2px solid #EFEFEF;padding: 36px 32px 25px;box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.18);border-radius: 12px;transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s}
.bank_details_block p{font-size: 18px;color: #88858e;font-weight: 500;}
.bank_details_block p:not(:last-child){margin-bottom: 27px}
.vs_grid{grid-template-columns: repeat(4, 1fr);}
.vs_grid .sc-body{padding: 20px 0px}
.vs_grid .sc-body h3{line-height: 28px;}
/* Scheme Section End */

/* Terms & Privacy Policy */
.terms-section{padding: 60px 0px 20px}
.terms_block p{font-size: 15px;color: #88858e;line-height: 33px;}
.terms_block p b{font-weight: 600;}
.terms_section_block{padding: 20px 0px 10px;}
.terms_section_block h2{position: relative;font-family: "Roboto", Sans-serif;color: #54595f;font-size: 24px;font-weight: 600;margin-bottom: 25px;}
.terms_section_block h2:before{content: '';position: absolute;left: 0px;bottom: -4px;background: #ff6d12;width: 58px;height: 2px;}
.terms_section_block ul{padding-left: 0px}
.terms_section_block ul li{position: relative;font-size: 15px;color: #88858e;line-height: 28px;padding-left: 32px;}
.terms_section_block ul li:not(:last-child){margin-bottom: 12px}
.terms_section_block ul li:before{content: "\f058";font-family: "Font Awesome 6 Free";font-size: 22px;font-weight: 900;color: #FF6D12;position: absolute;left: 0px;top: 0px;}
.terms_section_block p{font-size: 15px;color: #88858e;line-height: 30px;}
.terms_section_block p b{font-weight: 600;}
.terms_section_block .contact_details{margin: 25px 0px 20px}
.terms_section_block .contact_details .list{display: flex;column-gap: 7px;font-size: 15px;color: #88858e;line-height: 35px;margin-bottom: 5px;}
.terms_section_block .contact_details .list a:hover{color: #FF6D12}
.terms_section_block .contact_details .list span{width: 25px;color: #FF6D12;font-size: 25px;}
.terms_section_block p a{color: #505050}
.terms_section_block p a:hover{color: #FF6D12}
.privacy-section{padding: 40px 0px 45px}
/* Terms & Privacy Policy */

/* Contact Us */
.contact-section{padding: 60px 0px 40px}
.contact_card{border: 1px solid #E6E6E6;border-radius: 10px;box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding: 20px 10px 10px 20px;margin-bottom: 25px;}
.contact_card h2{text-align: center;padding-bottom: 18px;border-bottom: 1px dashed #FF6D12;color: #070707;font-size: 22px;font-weight: 600;text-transform: uppercase;margin-bottom: 25px}
.contact_card ul{padding-left: 0px;}
.contact_card ul li{display: flex;column-gap: 10px;color: #54595F;line-height: 26px;}
.contact_card ul li:not(:last-child){padding-bottom: 12px;}
.contact_card ul li i{width: 25px;color: #FF6D12;font-size: 20px;font-weight: 600;}
.hr_style{padding: 0px 0px 20px}
.hr_style hr{border-top: 2px solid #FF6D12;opacity: 1;}
.map_card{border: 1px solid #E5E5E5;padding: 10px;border-radius: 10px;margin-top: 40px;}
.map_card iframe{width: 100%;height: 345px;}
/* Contact Us */

/* Donate */
.bk_title{margin-bottom: 40px}
.bk_title h2{position: relative;text-align: left;}
.bk_title h2:before{content: '';position: absolute;left: 0px;bottom: -7px;background: #FF6D12;width: 100px;height: 3px}
.bk_block{border-bottom: 2px solid #FF6D12;padding: 36px 17px;box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.18);border-radius: 12px;}
.bk_block h3{font-size: 17px;font-weight: 700;color: #69310d;text-transform: uppercase;}
.bk_block h5{color: #111111;font-size: 18px;font-weight: 500;padding-top: 8px;}
.bk_block ul{padding-top: 10px;padding-left: 0px;margin-bottom: 0px}
.bk_block ul li{color: #111111;font-weight: 500;padding-left: 7px;line-height: 22px;border-left: 3px solid #bf990a;}
.bk_block ul li:not(:last-child){margin-bottom: 20px;}
.bk_block ul li span{font-weight: 400}
.qr_code h6{font-size: 18px;font-weight: 600;color: #69310d;text-align: center;padding-bottom: 8px}
.qr_code img{border: 3px solid #fff;box-shadow: 0px 7px 20px rgb(0 0 0 / 17%);}
.whatsapp_msg{padding-top: 25px}
.whatsapp_msg h3{color: #111111;font-size: 18px;font-weight: 500;}
.mobile_btn{display: none}
/* Donate */
@media (max-width: 1199px){
	.nav-inner{padding: 0px 12px}
	.nav-links > li > a{font-size: 15px;padding: 8px 12px;}
	.nav-links{padding-left: 0px}
}
@media (max-width: 1100px) {
	.hero-title{font-size: 80px}
	.hero{height: 90vh;min-height: 500px;}
	.footer-grid{grid-template-columns: 1.5fr .8fr 1fr 1fr}
	
}
@media (max-width: 991px) {
	.nav-toggle{display:flex;cursor:pointer}
	.nav-links{display:flex;position:fixed;top:64px;left:0;right:0;background:var(--warm-white);flex-direction:column;align-items:flex-start;padding:16px 24px 28px;gap:12px;box-shadow:0 8px 32px rgba(61,43,31,.12);transform:translateY(-120%);opacity:0;pointer-events:none;transition:.35s;z-index:999}
	.nav-links.open{transform:translateY(0);opacity:1;pointer-events:auto}body
	.menu-open{overflow:hidden}
	.nav-links .has-drop{width:100%}
	.nav-links .has-drop .dropdown{display:none;position:static;width:100%;background:0 0;box-shadow:none;padding-left:15px;margin-top:5px}
	.nav-links .has-drop.dopen .dropdown{display:block}.nav-links .has-drop .dropdown a{display:block;padding:8px 0;font-size:14px;color:#555}
	.nav-links .has-drop>a{display:flex;justify-content:space-between;align-items:center}
	.nav-links .has-drop:hover .caret{transform:none}
	.nav-links a{width:100%;padding:10px 0}
	.nav-links > li.active > a, .nav-links > li a:hover{background: #fff;color: #000000}
	.nav-links > li{width: 100%}
	.nav-links > li > a{justify-content: space-between;}
	.nav-links > li:last-child{width: auto}
	.nav-links > li:last-child a{display: inline-block;background: #FF6D12;color: #fff;padding: 0.55rem 1.45rem;border-radius: 20px;font-size: 0.85rem;font-weight: 500;letter-spacing: 0.04em;text-transform: capitalize;white-space: nowrap;transition: background var(--ease);}
	.nav-inner{padding: 0px 5px;gap: 5px;}
	.desk_btn{display: none}
	.mobile_btn{display: block;}
	.about-banner{margin-top: 65px;}
	.hero{height: 40vh;min-height: 450px;}
	.hero-title{font-size: 60px}
	.btn-hero{padding: 10px 30px}
	.two-col{grid-template-columns: 1fr}
	.col-img{width: 60%;justify-self: center;}
	.sc-body h3{font-size: 16px}
	.schemes-grid{gap: 18px}
	.sc-body{padding: 1.25rem 0.05rem;}
	.footer-top{padding: 40px 0px 22px 0px;}
	.footer-bottom{padding: 20px 0 15px;}
	.footer-bottom p{font-size: 14px}
	.footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem;padding: 0px 14px;}
	.panjarpole-text h2, .section-title h2{font-size: 25px;line-height: 32px;}
	.trustees-section{padding: 50px 0;}
	.panjarpole-section{padding: 35px 0;}
	.about-banner-content h1{font-size: 35px}
	.vs_grid{grid-template-columns: repeat(3, 1fr);}
	.contact_card{padding: 20px 10px 10px 12px;}
	.contact_card h2{font-size: 19px}
	.contact_card ul li{font-size: 15px;line-height: 24px;}
	.contact_card ul li i{font-size: 18px}
	.premium-gallery{grid-template-columns: repeat(3,1fr);}
  .col-img { order: -1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .section-pad{padding: 45px 0 40px}
  .hero-stats { bottom: 1.5rem; left: 1.5rem; gap: 0.75rem; }
  .car-track figure { width: 220px; }
  .car-track img { width: 220px; height: 165px; }
  .circ-card { flex-direction: column; text-align: center; padding: 2rem 1rem; }
  .donate-cta { padding: 5rem 0; }
  .harrow-prev { left: 12px; }
  .harrow-next { right: 12px; }
  .about-banner-content h1{font-size: 35px}
  .about-banner{height: 175px;}
	.hero{height: 60vh;min-height: 350px;}
	.hero-title{font-size: 45px}
}
@media (max-width: 767px) {
	.col-img{width: 80%;justify-self: center;}
	.sc-body h3{font-size: 16px;}
	.footer-grid{grid-template-columns: 1fr}
	.vs_grid{grid-template-columns: repeat(2, 1fr);}
	.our_donar .premium-gallery{grid-template-columns: repeat(2, 1fr);row-gap: 30px;}
	.video_gall .premium-gallery{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 575px){
	.hero{height: 40vh;min-height: 300px;}
	.hero-title{line-height: 44px;margin-bottom: 20px}
	.btn-hero{padding: 10px 30px}
	.hero-title{font-size: 40px}
	.car-btn{width: 35px;height: 35px;}
	.col-img{width: 100%;}
	.serif-h{font-size :20px;line-height: 1.5;}
	.schemes-grid {grid-template-columns: repeat(2, 1fr)}
	.contact-info li{word-break: break-all}
	.flinks{margin-bottom: 0px}
	.panjarpole-text h2, .section-title h2{font-size: 24px;}
	.panjarpole-row{flex-direction: column}
	.trust-grid{gap: 12px}
	.trust-card{padding: 30px 15px}
	.trust-card .phone{margin-bottom: 5px}
	.our_donar .premium-gallery{grid-template-columns: 1fr}
	.premium-gallery{grid-template-columns: repeat(2,1fr);}
}
@media (max-width: 480px) {
	.hero-stats { display: none; }
	.harrow { width: 40px; height: 40px; font-size: 20px; }
	.nav-logo img{max-height: 17px;}
	.premium-gallery{grid-template-columns: 1fr;}
	.video_gall .premium-gallery{grid-template-columns: 1fr;}
	.schemes-grid { grid-template-columns: 1fr; }
}