 
/* Css For Uphand */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header/style-one/style-two
5. Main Slider/style-one/style-two
6. Intro Section
7. Welcome Section
9. Cta Section
8. Research Fields
10. Testimonial Section
11. Researches Section
12. Team Section
14. Video
15. Fact Counter
16. News Section
19. Clients Section
20. Main Footer
21. Footer Bottom
22. Research Style Two
23. Innovative Solution
24. Discover Section
25. Testimonial Section
26. Chooseus Section
27. News Style Two
28. Page Title
29. Research Page Section
30. Research Details
31. Professor Page Section
32. Professor Details
33. About Section
34. Error Section
35. Blog Page Section
36. Blog Details
37. Blog Sidebar
38. Contact Section
39. Google Map


**********************************************/



/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


:root{
  --theme-color: #F84F23;
  --secondary-color: #111111;
  --text-color: #444444;
  --title-color: #111111;
  --text-font: "DM Sans", sans-serif;
  --title-font: "Quicksand", sans-serif;
  --special-font: "Shadows Into Light Two", cursive;
}



body {
  font-size:16px;
  color: var(--text-color);
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1320px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  margin: 0px;
}


/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: #fff;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s;}
.handle-preloader .loader-section {
  background-color: #000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #000;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #000;
  border-top-color: rgba(0, 0, 0, 0.3); 
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 5px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.row{
  --bs-gutter-x: 30px;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.theme-btn .text{
  position: relative;
  display: inline-block;
  align-items: center;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  padding: 13px 40px;
  text-transform: capitalize;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}

.theme-btn.btn-one:hover{

}

.theme-btn .text:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: left center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn .text:after{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: right center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn:hover .text:before,
.theme-btn:hover .text:after{
  transform: translateX(1);
  width: 51%;
}

.theme-btn i{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.theme-btn:hover i{
  background-color: var(--secondary-color);
}

.theme-btn.btn-two .text,
.theme-btn.btn-two i{
  background-color: var(--secondary-color);
}

.theme-btn.btn-two:hover i{

}




.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** styled-pagination */

.pagination{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-wrapper.centred .pagination{
  justify-content: center;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--title-color);
  font-weight: 600;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ffffff;
  text-align: center;
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
}

.sec-pad{
  padding: 142px 0px 150px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\e92f";
  font-family: 'icomoon';
  text-align: center;
  line-height: 50px;
  font-size: 10px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transform: rotate(180deg);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



.sec-title{
  position: relative;
  display: block;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 56px;
  line-height: 60px;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title p{
  margin-top: 20px;
}

.sub-title{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 35px;
  font-family: var(--special-font);
  text-transform: capitalize;
}





/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.nice-select{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  padding-right: 14px;
}

.nice-select:before{
  position: absolute;
  content: '\e92f';
  font-family: 'icomoon';
  top: 0px;
  right: 20px;
  font-size: 7px;
  color: var(--title-color);
}

.nice-select .list{
  width: 100%;
  left: 0px;
}

.nice-select .list li{
  color: var(--text-color);
}

.nice-select .list{
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
}


.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}


/** rtl-switcher **/

.demo-rtl{
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}

button.rtl{
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.demo-ltr{
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}

button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 1.0);
  transition: all 500ms ease;
}

.boxed_wrapper.ltr .demo-rtl{
  display: block;
}

.boxed_wrapper.ltr .demo-ltr{
  display: none;
}

.boxed_wrapper.rtl .demo-rtl{
  display: none;
}

.boxed_wrapper.rtl .demo-ltr{
  display: block;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  z-index: 1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button span{
  display: none !important;
}

.nav-style-one .owl-nav button::before{
  position: absolute;
  content: '';
  width: 70px;
  height: 70px;
  left: 0px;
  top: 0px;
  z-index: -1;
  filter: grayscale(100%);
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button.owl-prev::before{
  background-image: url(../images/icons/icon-9.png);
}

.nav-style-one .owl-nav button.owl-next::before{
  background-image: url(../images/icons/icon-10.png);
}

.nav-style-one .owl-nav button:hover::before{
  filter: grayscale(0%);
}

.nav-style-one .owl-nav .owl-prev{
  margin-right: 10px;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:5px;
  background: #EBF2E9;
  border-radius: 30px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:5px;
  border-radius: 30px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.rating li.light{
  color: #DADEDE;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current {
  display: block;
}


.wrapper.list .shop-list-content{
  display: block;
}

.wrapper.list .shop-grid-content{
  display: none
}

.wrapper.grid .shop-list-content{
  display: none;
}

.wrapper.grid .shop-grid-content{
  display: block
}

.nice-select .option{
  padding-left: 15px;
  padding-right: 15px;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.50);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}

.border-animation.border-2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.border-animation.border-3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  left: 12px;
}

.item-quantity-selector input.quantity-spinner {
  line-height: 48px;
  height: 38px;
  width: 40px !important;
  padding: 0px !important;
  box-shadow: none !important;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background: transparent;
}

.bootstrap-touchspin .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 40px;
  width: 40px;
  padding: 0px 0px;
  right: -30px;
  top: -1px;
  margin-top: 0px;
  border-radius: 0px 50px 50px 0px;
  border: none !important;
}

.bootstrap-touchspin .btn.bootstrap-touchspin-up:before {
  content: "\f067";
  font-size: 16px;
  font-style: normal;
  color: #111;
  font-family: 'Font Awesome 5 Pro';
  transition: all 500ms ease;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  position: absolute;
  height: 40px;
  width: 40px;
  padding: 0px 0px;
  left: -30px;
  top: -1px;
  border-radius: 50px 0px 0px 50px;
  border: none !important;
  transition: all 500ms ease;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:before {
  content: "\f068";
  font-size: 16px;
  font-style: normal;
  color: #111;
  font-family: 'Font Awesome 5 Pro';
  transition: all 500ms ease;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  display: none;
}

.bootstrap-touchspin .btn:hover,
.bootstrap-touchspin .btn:focus{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.image-hov-one{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-one::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-one:hover::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.image-hov-two{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-two::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1000%;
  height: 0%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-two:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  padding-left: 34px;
  margin-bottom: 17px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li::before{
  position: absolute;
  content: '\e909';
  font-family: 'icomoon';
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  font-size: 10px;
  color: var(--title-color);
  left: 0px;
  top: 3px;
}

/** donate-popup **/

.donate-popup{
  position:fixed;
  left:0px;
  top:-100%;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  z-index:9999;
  visibility:hidden;
  opacity:0;
  overflow:auto;
  transition:all 700ms ease;
  -moz-transition:all 700ms ease;
  -webkit-transition:all 700ms ease;
  -ms-transition:all 700ms ease;
  -o-transition:all 700ms ease;
}

.donate-popup.popup-visible{
  top:0;
  visibility:visible;
  opacity:1;
}

.donate-popup .close-donate{
  position:absolute;
  right:40px;
  top:40px;
  font-size:20px;
  color:#ffffff;
  cursor:pointer;
  z-index:5;
  transition: all 500ms ease;
}

.donate-popup .close-donate:hover{

}

.donate-content{
  position: relative;
  display: block;
  background-color: #ffffff;
  max-width: 1720px;
  padding: 0px 15px;
  margin: 0 auto;
}

.donate-popup .donate-content{
  margin-top: 100px;
  margin-bottom: 100px;
  background: #ffffff;
  padding:60px;
}

.donate-content .donate-option .donate-list li {
  position: relative;
  display: inline-block;
  float: left;
  width: 33.333%;
  cursor: pointer;
  margin-bottom: 20px;
}

.donate-content .donate-option .donate-list input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.donate-content .donate-option .donate-list label {
  position: relative;
  display: block;
  font-size: 18px;
  font-family: 'Kumbh Sans', sans-serif;
  background: #f6f1f0;
  font-weight: 600;
  color: #23272a;
  width: 100px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  cursor: pointer;
  margin: 0px;
  z-index: 1;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.donate-content .donate-option .donate-list :checked+label {
  color: #fff;
  text-shadow: none;
}

.donate-content .item-quantity {
  position: relative;
  display: block;
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 30px;
  z-index: 1;
}

.donate-content input.quantity-spinner {
  position: relative;
  line-height: 46px;
  height: 46px;
  width: 100% !important;
  padding: 0px 55px 0px 80px !important;
  box-shadow: none !important;
  font-family: 'Kumbh Sans', sans-serif;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #23272a;
  background: transparent;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.donate-content .item-quantity:before{
  position: absolute;
  content: '$';
  left: 65px;
  top: 9px;
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  font-family: 'Quicksand', sans-serif;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #f4f1f0;
  padding: 0px 0px;
  left: 5px;
  top: 3px;
  text-align: center;
  border-radius: 50%;
  margin: 0px;
  border: none !important;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #f4f1f0;
  padding: 0px 0px;
  right: 3px;
  top: 3px;
  text-align: center;
  border-radius: 50%;
  margin: 0px;
  border: none !important;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
  content: "+";
  font-size: 28px;
  font-family: 'Kumbh Sans', sans-serif;
  color: #23272a;
  font-weight: 500;
  transition: all 500ms ease;
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
  content: "-";
  font-size: 32px;
  font-family: 'Kumbh Sans', sans-serif;
  color: #23272a;
  font-weight: 500;
  transition: all 500ms ease;
}

.bootstrap-touchspin .glyphicon-chevron-up:hover:before,
.bootstrap-touchspin .glyphicon-chevron-down:hover:before{

}

.bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  height: 40px;
  width: 40px;
  line-height: 36px;
  text-align: center;
  top: 0px;
  left: 0px;
  font-style: normal; 
}

.donate-content h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 23px;
}

.donate-content .donate-box{
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 44px 50px 46px 50px;
  box-shadow: 0 0px 30px rgb(0 0 0 / 10%);
}

.donate-content .donate-option{
  position: relative;
  padding-right: 305px;
}

.donate-content .donate-option .other-amount{
  position: absolute;
  top: 53px;
  right: 0px;
  width: 300px;
  padding: 27px 40px 34px 40px;
  background-color: #f6f1f0;
  text-align: center;
}

.donate-content .donate-option .other-amount h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}

.donate-content .donate-option .other-amount .text{
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.donate-content .donate-option{
  position: relative;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 33px;
  border-bottom: 1px solid #dddad8;
}

.donate-content .payment-option h3{
  margin-bottom: 20px;
}

.donate-content .payment-option .payment-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  margin-bottom: 8px;
}

.donate-content .payment-option .payment-list li:last-child{
  margin: 0px !important;
}

.donate-content .payment-option .payment-list input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.donate-content .payment-option .payment-list label {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #23272a;
  cursor: pointer;
  margin: 0px;
  z-index: 1;
  padding-left: 32px;
  transition: all 500ms ease;
}

.donate-content .payment-option .payment-list label:before{
  position: absolute;
  content: "\e92d";
  font-family: 'icomoon';
  font-size: 20px;
  color: #bfb9b9;
  font-size: 14px;
  left: 0px;
  top: -1px;
  font-weight: 400;
  transition: all 500ms ease;
}

.donate-content .payment-option .payment-list :checked+label {
  text-shadow: none;
}

.donate-content .payment-option .payment-list :checked+label:before{

}

.donate-content .form-inner .form-group .custom-control.material-checkbox {
  position: relative;
  margin: 0px;
  padding-left: 28px;
  margin-bottom: 0px !important;
}

.donate-content .form-inner .form-group .custom-control.material-checkbox .material-control-input {
  display: none;
}

.donate-content .form-inner .form-group .custom-control.material-checkbox .material-control-indicator {
  display: inline-block;
  position: absolute;
  border: 1px solid #ebe5e5;
  background-color: #f6f1f0;
  top: 4px;
  left: 0px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.donate-content .form-inner .form-group .custom-control.material-checkbox .material-control-input:checked ~ .material-control-indicator {
  -webkit-transform: rotateZ(45deg) translate(1px, -5px);
  transform: rotateZ(45deg) translate(1px, -5px);
  border-color: #f04b41;
  width: 8px;
  border-top: 0px;
  border-left: 0px;
  background: transparent;
  border-radius: 0px;
}

.donate-content .form-inner .form-group .description {
  position: relative;
  display: inline-block;
  padding: 0px;
  font-size: 17px;
  color: #7b7676;
  cursor: pointer;
  font-weight: 400;
  margin: 0px;
  text-transform: none;
}

.donate-content .form-inner {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 43px 50px 45px 50px;
  box-shadow: 0 0px 30px rgb(0 0 0 / 10%);
}

.donate-content .form-inner h3{
  margin-bottom: 16px;
}

.donate-content .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.donate-content .form-inner .column:last-child .form-group{
  margin-bottom: 0px;
}

.donate-content .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #7b7676;
  font-weight: 600;
  margin-bottom: 13px;
}

.donate-content .form-inner .form-group label span{

}

.donate-content .form-inner .form-group input[type='text'],
.donate-content .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe5e5;
  padding: 10px 20px;
  font-size: 17px;
  line-height: 24px;
  color: #7b7676;
  font-weight: 400;
  transition: all 500ms ease;
}

.donate-content .form-inner .form-group input:focus{

}

.donate-content .form-inner .form-group .theme-btn{
  margin-top: 13px;
}

.donate-content .form-inner .form-group.message-btn{
  margin-bottom: 15px;
}

.pb_220{
  padding-bottom: 220px;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}

.dots-style-one .owl-dots button span{
  display: none !important;
}

.dots-style-one .owl-dots button{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: #C3C5C6;
  border-radius: 40px;
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.dots-style-one .owl-dots button.active,
.dots-style-one .owl-dots button:hover{
  background-color: #000000;
}

/** language-switcher **/


.language-picker label{
  display: none;
}

.language-picker .nice-select{
  display: none;
}


.language-picker {
  position: relative;
  display: inline-block;
}

.language-picker__button .icon {
  display: none;
}

.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 110px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  text-align: left;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.language-picker__item:hover {

}

.language-picker__button{
  position: relative;
  border: none !important;
  padding: 0px;
  padding-right: 7px;
}

.language-picker__button:before{
  position: absolute;
  content: '\e92f';
  font-family: 'icomoon';
  font-size: 6px;
  top: 7px;
  right: 0px;
  color: #111;
  font-weight: 700;
}

.language-picker__flag {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--text-font);
  font-weight: 600;
  color: #222;
  padding-left: 33px;
  text-transform: uppercase;
}

.language-picker__list .language-picker__flag{
  padding: 4px 0px 4px 33px;
}

.language-picker__list

.language-picker__flag.language-picker__label:after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 10px;
  height: 6px;
  top: 6px;
  right: 0px;
  background-repeat: no-repeat;
}

.language-picker__flag.language-picker__label{
  padding-left: 26px;
  padding-right: 0px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding-right: 16px;
}

.language-picker__flag em{
  font-style: normal;
}

.language-picker__flag::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: 0px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.language-picker__flag.language-picker__label:before{
  top: -2px;
  left: 0px;
}

.language-picker__dropdown .language-picker__flag::before {
  margin-right: .5rem;
  margin-right: var(--space-xs);
  top: 3px;
}

.language-picker__flag--deutsch::before {
  background-image: url(../images/icons/flag-deutsch.png);
}

.language-picker__flag--english::before {
  background-image: url(../images/icons/flag-english.png);
}

.language-picker__flag--francais::before {
  background-image: url(../images/icons/flag-francais.png);
}

.language-picker__flag--italiano::before {
  background-image: url(../images/icons/flag-italiano.png);
}

.language-picker--hide-label .language-picker__button .icon {
  margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
  display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: .25rem;
  margin-right: var(--space-xxxs)
}

.language-picker__flag.language-picker__label{
  padding-right: 7px;
}

.bg-color-1{
  background-color: #F5F2EC !important;
}

.accordion-box .accordion{
  position: relative;
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  margin-bottom: 20px;
}

.accordion-box .accordion:last-child{
  margin-bottom: 0px;
}

.accordion-box .accordion .acc-btn{
  position: relative;
  cursor: pointer;
  padding: 18px 50px 18px 30px;
}

.accordion-box .accordion .acc-btn h4{
  font-size: 20px;
  line-height: 24px;
}

.accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 23px;
  right: 20px;
  font-size: 14px;
  color: var(--title-color);
}

.accordion-box .accordion .acc-content{
  padding: 0px 30px 22px 30px;
}

.border-none{
  border: none !important;
}

.bg-color-2{
  background-color: var(--secondary-color);
}

.white-bg{
  background-color: #fff !important;
}

.slide-text{
  position: relative;
  display: block;
  padding: 37px 0px;
}

.slide-text .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: center;
}

.slide-text .text-inner .text-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 135px;
  -moz-animation: scroll-left 400s linear infinite;
  -webkit-animation: scroll-left 400s linear infinite;
  animation: scroll-left 400s linear infinite;
}

.slide-text .text-inner .text-list li{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}

.slide-text .text-inner .text-list li:before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  top: 10px;
  right: -70px;
  border-radius: 50%;
}

.slide-text .text-inner .text-list li:last-child{
  display: none;
}

.bg-color-3{
  background-color: #FAF7F1 !important;
  background: #FAF7F1 !important;
}

.theme-btn.btn-three .text,
.theme-btn.btn-three i{
  background-color: #fff;
  color: var(--title-color) !important;
}

.theme-btn.btn-three:hover .text{
  color: #fff !important;
}

.theme-btn.btn-three:hover i{
  color: #fff !important;
  background-color: var(--secondary-color);
}

.accordion-box .accordion .acc-btn.active .icon-box i:before{
  position: relative;
  display: inline-block;
  content: '\e91e';
  font-size: 2px;
  top: -5px;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}



.faq-page-section{
  position: relative;
}

/** faq-page-section **/

.faq-form-section{
  position: relative;
}

.faq-form-section .form-inner{
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 8px 90px 0px rgba(0, 0, 0, 0.06);
  padding: 70px;
  max-width: 850px;
  margin: 0 auto;
}

.faq-form-section .form-inner .form-group{
  position: relative;
  margin-bottom: 30px;
}

.faq-form-section .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.faq-form-section .form-inner .form-group input[type='text'],
.faq-form-section .form-inner .form-group input[type='email'],
.faq-form-section .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #E4E4E4;
  border-radius: 50px;
  font-size: 16px;
  color: #6A6A6A;
  padding: 10px 25px;
  transition: all 500ms ease;
}

.faq-form-section .form-inner .form-group textarea{
  height: 170px;
  resize: none;
  padding-top: 15px;
  border-radius: 36px;
}

.faq-form-section .form-inner .form-group .theme-btn .text,
.faq-form-section .form-inner .form-group .theme-btn{
  width: 100%;
}

.check-box-two input {
  display: none;
}

.check-box-two label {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.check-box-two label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: #fff;
}

.check-box-two label:after {
  position: absolute;
  content: '\e92d';
  font-family: 'icomoon';
  font-size: 8px;
  left: 3px;
  top: 0px;
  color: #fff;
  opacity: 0;
}

.check-box-two input:checked + label:after {
  opacity: 1;
}

.check-box-two input:checked + label:before{

}

.default-form .form-group{
  position: relative;
  margin-bottom: 30px;
}

.default-form .form-group:last-child{
  margin-bottom: 0px;
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #E4E4E4;
  border-radius: 50px;
  font-size: 16px;
  color: #777777;
  padding: 10px 24px;
  transition: all 500ms ease;
}

.default-form .form-group textarea{
  height: 170px;
  border-radius: 36px;
  resize: none;
  padding-top: 15px;
}

.default-form .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 5px;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #F84F23;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* timeline item */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* left side */
.timeline-item.left {
  left: 0;
}

/* right side */
.timeline-item.right {
  left: 50%;
}

/* dot */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background: #F84F23;
  border-radius: 50%;
  top: 25px;
  z-index: 1;
}

.timeline-item.right::after {
  left: -8px;
}

/* content box */
.timeline-item .content {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.timeline-item h3 {
  margin-top: 0;
  color: #000;
}
.logo-box img , .logo-box{
    max-width: 200px;
}

.problems-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.problems-container {
  max-width: 1200px;
  margin: 0 auto;
}

.problems-header {
  text-align: center;
  margin-bottom: 40px;
}

.problems-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.problems-header p {
  font-size: 17px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.problems-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.problems-nav a {
  text-decoration: none;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #222;
  font-weight: 600;
  transition: all 0.3s ease;
}

.problems-nav a:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}

.problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.problem-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.problem-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.problem-card p:last-child {
  margin-bottom: 0;
}

.problem-title.red {
  color: #c0392b;
}

.problem-title.orange {
  color: #d68910;
}

.problem-title.blue {
  color: #2874a6;
}

.problem-title.green {
  color: #239b56;
}

.problem-title.dark {
  color: #424949;
}

.problem-title.purple {
  color: #7d3c98;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .problems-section {
    padding: 40px 15px;
  }

  .problems-header h2 {
    font-size: 28px;
  }

  .problems-header p {
    font-size: 15px;
  }

  .problem-card {
    padding: 22px;
  }

  .problem-title {
    font-size: 24px;
  }

  .problems-nav a {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.india-statistics-section {
  padding: 50px 20px;
  background: #f5f5f5;
}

.india-statistics-container {
  max-width: 900px;
  margin: 0 auto;
}

.stats-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2d3d;
  margin: 0 0 25px;
}

.stats-block {
  margin-bottom: 40px;
}

.stats-sub-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2d3d;
  margin: 0 0 20px;
}

.stats-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}

.stats-label,
.stats-value {
  background: #d9d9d9;
  padding: 12px 14px;
  font-size: 18px;
  line-height: 1.3;
  color: #1f2d3d;
  font-weight: 600;
}

.stats-label {
  border-right: 8px solid #f5f5f5;
}

.stats-notes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats-note-box {
  background: #d9d9d9;
  padding: 18px 20px;
}

.stats-note-box ul {
  margin: 0;
  padding-left: 24px;
}

.stats-note-box li {
  color: #1f2d3d;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 767px) {
  .india-statistics-section {
    padding: 40px 15px;
  }

  .stats-main-title {
    font-size: 26px;
  }

  .stats-sub-title {
    font-size: 22px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stats-label {
    border-right: none;
  }

  .stats-label,
  .stats-value,
  .stats-note-box li {
    font-size: 16px;
  }
}

.iindia-section { background: #faf7f4; padding: 40px 0; }
  .iindia-intro { font-size: 1rem; color: #5a4a3a; line-height: 1.7; margin-bottom: 32px; }
  .iindia-item { display: flex; align-items: stretch; background: #fff; border: 1px solid #e8ddd4; border-radius: 12px; overflow: hidden; margin-bottom: 20px; transition: box-shadow 0.2s ease; }
  .iindia-item:hover { box-shadow: 0 6px 24px rgba(80,40,10,0.11); }
  .iindia-item:nth-child(even) { flex-direction: row-reverse; }
  .iindia-thumb { flex-shrink: 0; width: 160px; }
  .iindia-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .iindia-body { padding: 18px 22px; flex: 1; }
  .iindia-name { font-size: 1.05rem; font-weight: 700; color: #1c1410; margin-bottom: 4px; }
  .iindia-age { display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: #b85c2a; background: #fdf0e8; border: 1px solid #f0cdb4; border-radius: 20px; padding: 2px 9px; margin-left: 8px; vertical-align: middle; }
  .iindia-divider { width: 30px; height: 2px; background: #b85c2a; border-radius: 2px; opacity: 0.4; margin: 10px 0; }
  .iindia-text { font-size: 0.88rem; color: #5a4a3a; line-height: 1.75; margin: 0; }
 
  @media (max-width: 576px) {
    .iindia-item,
    .iindia-item:nth-child(even) { flex-direction: column; }
    .iindia-thumb { width: 100%; height: 200px; }
  }
  
   .iindia-donate-wrap { background: #faf7f4; padding: 52px 0; font-family: inherit; }
 
  /* Hero */
  .iindia-donate-hero { text-align: center; margin-bottom: 48px; }
  .iindia-donate-hero h2 { font-size: 2rem; font-weight: 800; color: #1c1410; line-height: 1.2; margin-bottom: 10px; }
  .iindia-donate-hero h2 span { color: #c0603a; }
  .iindia-donate-hero p { font-size: 1rem; color: #5a4a3a; max-width: 520px; margin: 0 auto; line-height: 1.7; }
 
  /* Donation grid */
  .iindia-donate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
  .iindia-donate-tile { background: #fff; border: 1px solid #e8ddd4; border-radius: 12px; padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; cursor: pointer; }
  .iindia-donate-tile:hover { box-shadow: 0 6px 24px rgba(80,40,10,0.11); transform: translateY(-2px); border-color: #c0603a; }
  .iindia-donate-tile.iindia-featured { border-color: #c0603a; background: #fff8f5; box-shadow: 0 4px 18px rgba(192,96,58,0.13); }
  .iindia-donate-tile .iindia-amount { font-size: 1.5rem; font-weight: 800; color: #c0603a; }
  .iindia-donate-tile .iindia-impact { font-size: 0.82rem; color: #5a4a3a; line-height: 1.5; }
  .iindia-donate-tile.iindia-featured .iindia-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: #c0603a; color: #fff; border-radius: 20px; padding: 2px 8px; width: fit-content; margin-bottom: 2px; }
  .iindia-donate-tile .iindia-badge { display: none; }
 
  /* CTA button */
  .iindia-donate-cta { text-align: center; margin: 32px 0 48px; }
  .iindia-donate-btn { display: inline-block; background: #c0603a; color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 14px 40px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .iindia-donate-btn:hover { background: #a34d2c; transform: translateY(-2px); color: #fff; text-decoration: none; }
 
  /* Divider */
  .iindia-donate-sep { border: none; border-top: 2px solid #e8ddd4; margin: 0 0 44px; }
 
  /* Payment section */
  .iindia-donate-pay-title { text-align: center; font-size: 1.35rem; font-weight: 700; color: #1c1410; margin-bottom: 6px; }
  .iindia-donate-pay-sub { text-align: center; font-size: 0.9rem; color: #5a4a3a; margin-bottom: 32px; }
  .iindia-donate-pay-sub a { color: #c0603a; text-decoration: underline; }
 
  .iindia-donate-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
 
  .iindia-pay-method { background: #fff; border: 1px solid #e8ddd4; border-radius: 12px; overflow: hidden; }
  .iindia-pay-method-head { background: #2e2a26; color: #fff; padding: 13px 20px; font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
  .iindia-pay-method-head .iindia-num { background: #c0603a; color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; flex-shrink: 0; }
  .iindia-pay-method-body { padding: 18px 20px; font-size: 0.85rem; color: #3a2e26; line-height: 1.8; }
  .iindia-pay-method-body strong { color: #1c1410; }
  .iindia-pay-method-body a { color: #c0603a; font-weight: 600; text-decoration: none; }
  .iindia-pay-method-body a:hover { text-decoration: underline; }
 
  @media (max-width: 768px) {
    .iindia-donate-grid { grid-template-columns: repeat(2, 1fr); }
    .iindia-donate-methods { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .iindia-donate-grid { grid-template-columns: 1fr 1fr; }
    .iindia-donate-hero h2 { font-size: 1.5rem; }
  }
  
  
  .sponsor-child-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.sponsor-child-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sponsor-hero {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
  text-align: center;
}

.sponsor-top-line {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.sponsor-top-line a {
  color: #d7261e;
  font-weight: 700;
  text-decoration: underline;
}

.sponsor-hero h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1f2d3d;
  margin: 0 0 20px;
}

.sponsor-intro {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: 20px;
  line-height: 1.7;
  color: #444;
}

.sponsor-cta-wrap {
  margin-top: 10px;
}

.sponsor-btn {
  display: inline-block;
  background: #e11d2e;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s ease;
}

.sponsor-btn:hover {
  background: #b91523;
  color: #fff;
}

.sponsor-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.sponsor-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sponsor-info-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #1f2d3d;
}

.sponsor-info-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.sponsor-content-block {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}

.sponsor-content-block h3 {
  font-size: 28px;
  color: #1f2d3d;
  margin: 0 0 15px;
}

.sponsor-content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 14px;
}

.sponsor-content-block p:last-child {
  margin-bottom: 0;
}

.sponsor-content-block a {
  color: #d7261e;
  font-weight: 700;
  text-decoration: underline;
}

.highlight-block {
  border-left: 5px solid #e11d2e;
}

.sponsor-note {
  background: #eef3f8;
  border-radius: 14px;
  padding: 18px 22px;
}

.sponsor-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 991px) {
  .sponsor-info-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-hero h2 {
    font-size: 32px;
  }

  .sponsor-intro {
    font-size: 18px;
  }

  .sponsor-content-block h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .sponsor-child-section {
    padding: 40px 15px;
  }

  .sponsor-hero,
  .sponsor-info-card,
  .sponsor-content-block {
    padding: 22px;
  }

  .sponsor-hero h2 {
    font-size: 26px;
  }

  .sponsor-top-line {
    font-size: 16px;
  }

  .sponsor-intro,
  .sponsor-content-block p {
    font-size: 16px;
  }
}

.lc-mission-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 32px 36px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .lc-mission-hero::before {
    content: '"';
    position: absolute;
    top: -14px; left: 20px;
    font-size: 110px;
    color: #D85A30;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
  }
  .lc-mission-eyebrow {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
    position: relative; z-index: 1;
  }
  .lc-mission-text {
    font-size: 18px; color: #fff;
    line-height: 1.75; margin: 0;
    position: relative; z-index: 1;
    font-weight: 400;
  }
 
  .lc-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .lc-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .lc-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 16px;
  }
 
  /* Philosophy */
  .lc-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .lc-phil-card {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 3px solid #D85A30;
  }
  .lc-phil-num {
    font-size: 28px; font-weight: 700;
    color: #c76e50; line-height: 1;
    font-family: Georgia, serif;
  }
  .lc-phil-text {
    font-size: 13px; color: #1a1a18;
    line-height: 1.6; font-weight: 500;
  }
 
  /* Strategy */
  .lc-strategy-desc {
    background: #FAECE7;
    border-left: 3px solid #D85A30;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: 13px; color: #5a5a56;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .lc-strategy-sub {
    font-size: 13px; color: #888780;
    margin-bottom: 12px;
  }
  .lc-strategy-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lc-strategy-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .lc-strategy-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lc-strategy-icon i { font-size: 15px; color: #D85A30; }
  .lc-strategy-item-text {
    font-size: 13px; font-weight: 500; color: #1a1a18;
  }
 
  @media (max-width: 600px) {
    .lc-philosophy-grid { grid-template-columns: 1fr; }
    .lc-mission-text { font-size: 15px; }
  }


  .lc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }
  .lc-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lc-stat-icon {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lc-stat-icon i { font-size: 20px; color: #D85A30; }
  .lc-stat-num {
    font-size: 22px; font-weight: 600;
    color: #1a1a18; line-height: 1;
  }
  .lc-stat-label {
    font-size: 12px; color: #888780; margin-top: 3px;
  }
 
  /* ── MISSION BLOCK ── */
  .lc-mission {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }
  .lc-mission::before {
    content: '"';
    position: absolute;
    top: -14px; left: 20px;
    font-size: 110px;
    color: #D85A30;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
  }
  .lc-mission-main {
    font-size: 15px; color: #fff;
    line-height: 1.8; margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .lc-mission-sub {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.75; margin: 0;
    position: relative; z-index: 1;
  }
 
  /* ── SECTION LABEL ── */
  .lc-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .lc-heading {
    font-size: 20px; font-weight: 600;
    color: #1a1a18; margin-bottom: 16px; margin-top: 0;
  }
  .lc-divider {
    border: none; border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  /* ── ORG FACTS ── */
  .lc-org-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
  }
  .lc-org-item {
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex; gap: 12px; align-items: flex-start;
  }
  .lc-org-item i { font-size: 17px; color: #D85A30; margin-top: 2px; flex-shrink: 0; }
  .lc-org-item-label {
    font-size: 13px; font-weight: 500; color: #1a1a18;
    display: block; margin-bottom: 2px;
  }
  .lc-org-item-text { font-size: 12px; color: #5a5a56; line-height: 1.65; }
 
  /* ── ACTIVITIES ── */
  .lc-activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }
  .lc-activity-item {
    display: flex; align-items: center; gap: 10px;
    background: #ffff; border-radius: 8px;
    padding: 10px 14px;
  }
  .lc-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #D85A30; flex-shrink: 0;
  }
  .lc-activity-item span { font-size: 14px; color: #1a1a18; background-color: #fff }
 
  /* ── EXPANSION NOTE ── */
  .lc-note {
    background: #FAECE7;
    border-left: 3px solid #D85A30;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-bottom: 0;
  }
  .lc-note p { font-size: 13px; color: #5a5a56; line-height: 1.75; margin: 0 0 6px; }
  .lc-note p:last-child { margin-bottom: 0; }
 
  /* ── PROGRAMS ── */
  .lc-programs { display: flex; flex-direction: column; gap: 8px; }
  .lc-program {
    display: flex; gap: 14px; align-items: flex-start;
    background: #EAF3DE; border-radius: 8px;
    padding: 14px 16px;
  }
  .lc-prog-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: #fff; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
  }
  .lc-prog-icon i { font-size: 17px; color: #3B6D11; }
  .lc-prog-name { font-size: 13px; font-weight: 500; color: #1a1a18; margin-bottom: 2px; }
  .lc-prog-desc { font-size: 12px; color: #5a5a56; line-height: 1.6; }
 
  @media (max-width: 600px) {
    .lc-stats { grid-template-columns: 1fr; }
    .lc-org-grid { grid-template-columns: 1fr; }
    .lc-activity-grid { grid-template-columns: 1fr 1fr; }
  }



  .lc-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .lc-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
 
  .lc-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 6px;
  }
 
  .lc-subtext {
    font-size: 13px; color: #5a5a56;
    line-height: 1.75; margin-bottom: 18px;
  }
 
  /* ── DONOR GRID ── */
  .lc-donor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 8px;
  }
  .lc-donor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 10px 14px;
    transition: background 0.15s;
  }
  .lc-donor-item:hover { background: #FAECE7; }
  .lc-donor-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lc-donor-icon i { font-size: 13px; color: #D85A30; }
  .lc-donor-name { font-size: 13px; color: #1a1a18; line-height: 1.35; }
 
  /* ── GOVERNMENT SUPPORT ── */
  .lc-gov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .lc-gov-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 16px 20px;
  }
  .lc-gov-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lc-gov-icon i { font-size: 16px; color: #185FA5; }
  .lc-gov-name { font-size: 14px; font-weight: 500; color: #0C447C; }
 
  /* ── COMPLIANCE ── */
  .lc-compliance-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lc-compliance-item {
    border-left: 3px solid #D85A30;
    padding: 4px 0 4px 16px;
  }
  .lc-compliance-item p {
    font-size: 13px; color: #5a5a56;
    line-height: 1.75; margin: 0;
  }
 
  /* ── REPORTS ── */
  .lc-report-list { display: flex; flex-direction: column; }
  .lc-report-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
  }
  .lc-report-row:first-child { padding-top: 0; }
  .lc-report-row:last-child { border-bottom: none; padding-bottom: 0; }
  .lc-report-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lc-report-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lc-report-icon i { font-size: 18px; color: #D85A30; }
  .lc-report-name { font-size: 14px; font-weight: 500; color: #1a1a18; }
  .lc-report-year { font-size: 12px; color: #888780; margin-top: 2px; }
  .lc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px; font-weight: 500;
    color: #D85A30;
    border: 1px solid #D85A30;
    border-radius: 50px;
    padding: 7px 18px;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
  }
  .lc-download-btn:hover { background: #D85A30; color: #fff; }
 
  @media (max-width: 600px) {
    .lc-gov-grid { grid-template-columns: 1fr; }
    .lc-donor-grid { grid-template-columns: 1fr 1fr; }
  }




  .cr-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .cr-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
 
  .cr-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
 
  /* Opening callout */
  .cr-alert-block {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .cr-alert-block::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .cr-alert-text {
    font-size: 14px; color: #fff;
    line-height: 1.85; margin: 0 0 14px;
  }
  .cr-alert-text:last-child { margin-bottom: 0; }
  .cr-alert-text strong { color: #F0997B; }
 
  /* Poverty cycle badge */
  .cr-cycle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(216,90,48,0.15);
    border: 1px solid rgba(216,90,48,0.35);
    border-radius: 50px;
    padding: 6px 14px;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  .cr-cycle-item {
    font-size: 12px; font-weight: 500; color: #F0997B;
  }
  .cr-cycle-arrow {
    font-size: 11px; color: rgba(240,153,123,0.5);
  }
 
  /* Image */
  .cr-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 24px 0 8px;
  }
  .cr-img-wrap img {
    width: 100%; height: 240px;
    object-fit: cover; display: block;
  }
  .cr-img-caption {
    font-size: 11px; color: #888780;
    text-align: center; margin-bottom: 0;
    font-style: italic;
  }
 
  /* Body text */
  .cr-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .cr-body-text:last-of-type { margin-bottom: 0; }
 
  /* Issues grid */
  .cr-issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 8px;
    margin: 20px 0;
  }
  .cr-issue-item {
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cr-issue-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
  }
  .cr-issue-icon i { font-size: 14px; color: #D85A30; }
  .cr-issue-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.4; }
 
  /* Jaipur block */
  .cr-jaipur-block {
    background: #FAECE7;
    border-radius: 10px;
    padding: 24px 26px;
    margin-top: 4px;
  }
  .cr-jaipur-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin: 0 0 12px;
  }
  .cr-jaipur-text:last-child { margin-bottom: 0; }
  .cr-jaipur-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Closing quote */
  .cr-closing-quote {
    border-left: 3px solid #D85A30;
    padding: 8px 0 8px 18px;
    margin-top: 16px;
  }
  .cr-closing-quote p {
    font-size: 15px; color: #1a1a18;
    line-height: 1.75; margin: 0;
    font-style: italic;
  }
 
  @media (max-width: 600px) {
    .cr-issue-grid { grid-template-columns: 1fr 1fr; }
    .cr-alert-block { padding: 20px 20px; }
  }


 
  .cl-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .cl-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
 
  .cl-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
 
  .cl-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .cl-body-text:last-of-type { margin-bottom: 0; }
 
  /* Hero callout */
  .cl-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .cl-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .cl-hero-number {
    font-size: 52px; font-weight: 700;
    color: #D85A30; line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
  }
  .cl-hero-tagline {
    font-size: 14px; color: rgba(255,255,255,0.6);
    margin: 0 0 16px;
  }
  .cl-hero-desc {
    font-size: 14px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .cl-hero-desc strong { color: #F0997B; }
 
  /* Who we help tags */
  .cl-who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
  }
  .cl-who-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px; color: rgba(255,255,255,0.75);
  }
  .cl-who-tag i { font-size: 12px; color: #F0997B; }
 
  /* Stat strip */
  .cl-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .cl-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 16px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .cl-stat-num {
    font-size: 24px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .cl-stat-label {
    font-size: 12px; color: #5a5a56; line-height: 1.5;
  }
 
  /* Image */
  .cl-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 4px 0 24px;
  }
  .cl-img-wrap img {
    width: 100%; height: 240px;
    object-fit: cover; display: block;
  }
  .cl-img-caption {
    font-size: 11px; color: #888780;
    text-align: center; margin: -16px 0 24px;
    font-style: italic;
  }
 
  /* How it works steps */
  .cl-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
  .cl-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 16px 18px;
  }
  .cl-step-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .cl-step-icon i { font-size: 16px; color: #D85A30; }
  .cl-step-title {
    font-size: 13px; font-weight: 600;
    color: #1a1a18; margin-bottom: 3px;
  }
  .cl-step-desc {
    font-size: 13px; color: #5a5a56; line-height: 1.65;
  }
 
  /* Background info */
  .cl-info-block {
    background: #FAECE7;
    border-radius: 10px;
    padding: 24px 26px;
    margin-top: 4px;
  }
  .cl-info-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin: 0 0 12px;
  }
  .cl-info-text:last-child { margin-bottom: 0; }
  .cl-info-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Government support badge */
  .cl-gov-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 20px;
  }
  .cl-gov-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cl-gov-icon i { font-size: 17px; color: #185FA5; }
  .cl-gov-text {
    font-size: 13px; color: #0C447C; line-height: 1.7;
  }
  .cl-gov-text strong { font-weight: 600; }
 
  @media (max-width: 600px) {
    .cl-stats { grid-template-columns: 1fr 1fr; }
    .cl-who-grid { gap: 6px; }
  }



  .ci-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .ci-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
 
  .ci-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
 
  .ci-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .ci-body-text:last-of-type { margin-bottom: 0; }
  .ci-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero callout */
  .ci-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .ci-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .ci-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .ci-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .ci-hero-text strong { color: #F0997B; }
 
  /* Stat strip */
  .ci-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .ci-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 16px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .ci-stat-num {
    font-size: 26px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .ci-stat-label {
    font-size: 12px; color: #5a5a56; line-height: 1.5;
  }
 
  /* Image */
  .ci-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 4px 0 8px;
  }
  .ci-img-wrap img {
    width: 100%; height: 240px;
    object-fit: cover; display: block;
  }
  .ci-img-caption {
    font-size: 11px; color: #888780;
    text-align: center; margin-bottom: 0;
    font-style: italic;
  }
 
  /* Who we help */
  .ci-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 0;
  }
  .ci-who-item {
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ci-who-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
  }
  .ci-who-icon i { font-size: 14px; color: #D85A30; }
  .ci-who-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.4; }
 
  /* What we provide */
  .ci-provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
  }
  .ci-provide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .ci-provide-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ci-provide-icon i { font-size: 13px; color: #3B6D11; }
  .ci-provide-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Location & funding block */
  .ci-info-block {
    background: #FAECE7;
    border-radius: 10px;
    padding: 24px 26px;
  }
  .ci-info-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin: 0 0 12px;
  }
  .ci-info-text:last-child { margin-bottom: 0; }
  .ci-info-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Staff list */
  .ci-staff-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }
  .ci-staff-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid rgba(216,90,48,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px; color: #5a5a56;
  }
  .ci-staff-tag i { font-size: 11px; color: #D85A30; }
 
  /* Donors */
  .ci-donor-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
  }
  .ci-donor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .ci-donor-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ci-donor-icon i { font-size: 13px; color: #185FA5; }
  .ci-donor-label { font-size: 12px; font-weight: 500; color: #0C447C; line-height: 1.35; }
 
  @media (max-width: 600px) {
    .ci-stats { grid-template-columns: 1fr 1fr; }
    .ci-donor-row { grid-template-columns: 1fr 1fr; }
  }




  .gg-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
 
  .gg-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
 
  .gg-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
 
  .gg-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .gg-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero callout */
  .gg-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .gg-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .gg-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .gg-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .gg-hero-text strong { color: #F0997B; }
 
  /* Stat strip */
  .gg-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .gg-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 16px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .gg-stat-num {
    font-size: 26px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .gg-stat-label {
    font-size: 12px; color: #5a5a56; line-height: 1.5;
  }
 
  /* Image */
  .gg-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 4px 0 8px;
  }
  .gg-img-wrap img {
    width: 100%; height: 240px;
    object-fit: cover; display: block;
  }
  .gg-img-caption {
    font-size: 11px; color: #888780;
    text-align: center; margin-bottom: 0;
    font-style: italic;
  }
 
  /* Who we help grid */
  .gg-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 0;
  }
  .gg-who-item {
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .gg-who-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
  }
  .gg-who-icon i { font-size: 14px; color: #D85A30; }
  .gg-who-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.4; }
 
  /* Home description block */
  .gg-home-block {
    background: #FAECE7;
    border-radius: 10px;
    padding: 24px 26px;
    margin-bottom: 0;
  }
  .gg-home-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin: 0 0 12px;
  }
  .gg-home-text:last-child { margin-bottom: 0; }
  .gg-home-text strong { color: #1a1a18; font-weight: 500; }
 
  /* What we provide */
  .gg-provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
  }
  .gg-provide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .gg-provide-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .gg-provide-icon i { font-size: 13px; color: #3B6D11; }
  .gg-provide-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Staff tags */
  .gg-staff-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }
  .gg-staff-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid rgba(216,90,48,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px; color: #5a5a56;
  }
  .gg-staff-tag i { font-size: 11px; color: #D85A30; }
 
  /* Donors */
  .gg-donor-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
  }
  .gg-donor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .gg-donor-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .gg-donor-icon i { font-size: 13px; color: #185FA5; }
  .gg-donor-label { font-size: 12px; font-weight: 500; color: #0C447C; line-height: 1.35; }
 
  /* Location info */
  .gg-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
  }
  .gg-location i { font-size: 16px; color: #D85A30; margin-top: 2px; flex-shrink: 0; }
  .gg-location-text { font-size: 13px; color: #5a5a56; line-height: 1.65; }
  .gg-location-text strong { color: #1a1a18; font-weight: 500; }
 
  @media (max-width: 600px) {
    .gg-stats { grid-template-columns: 1fr 1fr; }
    .gg-donor-row { grid-template-columns: 1fr 1fr; }
    .gg-who-grid { grid-template-columns: 1fr 1fr; }
  }
.lv-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .lv-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .lv-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .lv-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .lv-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .lv-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .lv-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .lv-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .lv-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .lv-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .lv-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .lv-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 16px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .lv-stat-num {
    font-size: 22px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .lv-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* Centres timeline */
  .lv-centres {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
  .lv-centre-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 16px 18px;
  }
  .lv-centre-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lv-centre-icon i { font-size: 17px; color: #D85A30; }
  .lv-centre-year {
    font-size: 11px; font-weight: 600;
    color: #D85A30; margin-bottom: 3px;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .lv-centre-name { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .lv-centre-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* Skills grid */
  .lv-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 8px;
    margin-bottom: 0;
  }
  .lv-skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .lv-skill-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .lv-skill-icon i { font-size: 13px; color: #3B6D11; }
  .lv-skill-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Orange info block */
  .lv-info-block {
    background: #FAECE7;
    border-radius: 10px;
    padding: 24px 26px;
  }
  .lv-info-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin: 0 0 12px;
  }
  .lv-info-text:last-child { margin-bottom: 0; }
  .lv-info-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Who attends */
  .lv-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
  }
  .lv-who-item {
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .lv-who-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
  }
  .lv-who-icon i { font-size: 14px; color: #D85A30; }
  .lv-who-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.4; }
 
  /* Quote / closing */
  .lv-closing {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
  }
  .lv-closing::before {
    content: '"';
    position: absolute;
    top: -14px; left: 20px;
    font-size: 110px;
    color: #D85A30;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
  }
  .lv-closing-text {
    font-size: 14px; color: #fff;
    line-height: 1.85; margin: 0 0 12px;
    position: relative; z-index: 1;
  }
  .lv-closing-text:last-child { margin-bottom: 0; }
  .lv-closing-text strong { color: #F0997B; }
 
  /* Future plans */
  .lv-plans {
    display: flex; flex-direction: column; gap: 8px;
  }
  .lv-plan-item {
    display: flex; align-items: center; gap: 14px;
    background: #f5f3ef; border-radius: 8px; padding: 14px 18px;
  }
  .lv-plan-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .lv-plan-icon i { font-size: 16px; color: #D85A30; }
  .lv-plan-text { font-size: 13px; font-weight: 500; color: #1a1a18; }
 
  /* Funding note */
  .lv-funding {
    display: flex; align-items: flex-start; gap: 14px;
    background: #E6F1FB; border-radius: 10px; padding: 18px 20px;
    margin-top: 20px;
  }
  .lv-funding-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .lv-funding-icon i { font-size: 17px; color: #185FA5; }
  .lv-funding-text { font-size: 13px; color: #0C447C; line-height: 1.7; }
  .lv-funding-text strong { font-weight: 600; }
 
  @media (max-width: 600px) {
    .lv-stats { grid-template-columns: 1fr 1fr; }
    .lv-skills-grid { grid-template-columns: 1fr 1fr; }
    .lv-who-grid { grid-template-columns: 1fr 1fr; }
  }

 .th-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .th-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .th-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .th-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .th-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .th-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .th-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .th-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .th-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .th-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .th-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .th-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .th-stat-num {
    font-size: 24px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .th-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* Two homes grid */
  .th-homes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }
  .th-home-card {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 20px 22px;
    border-top: 3px solid #D85A30;
  }
  .th-home-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
  }
  .th-home-icon i { font-size: 18px; color: #D85A30; }
  .th-home-title {
    font-size: 14px; font-weight: 600;
    color: #1a1a18; margin-bottom: 6px;
  }
  .th-home-desc {
    font-size: 13px; color: #5a5a56; line-height: 1.65;
  }
  .th-home-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px; font-weight: 500;
    color: #D85A30; text-decoration: none;
  }
 
  /* How it works flow */
  .th-flow {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .th-flow-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
    position: relative;
  }
  .th-flow-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .th-flow-icon i { font-size: 15px; color: #D85A30; }
  .th-flow-step {
    font-size: 11px; font-weight: 600; color: #D85A30;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px;
  }
  .th-flow-title { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .th-flow-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* Arrow between steps */
  .th-flow-arrow {
    text-align: center;
    color: #D85A30;
    font-size: 14px;
    line-height: 1;
    margin: 0;
  }
 
  /* Benefits */
  .th-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .th-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .th-benefit-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .th-benefit-icon i { font-size: 15px; color: #3B6D11; }
  .th-benefit-text { font-size: 13px; font-weight: 500; color: #1a1a18; line-height: 1.6; }
 
  /* Government block */
  .th-gov-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 10px;
    padding: 20px 22px;
  }
  .th-gov-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .th-gov-icon i { font-size: 18px; color: #185FA5; }
  .th-gov-text { font-size: 13px; color: #0C447C; line-height: 1.75; }
  .th-gov-text strong { font-weight: 600; }
 
  @media (max-width: 600px) {
    .th-stats { grid-template-columns: 1fr 1fr; }
    .th-homes-grid { grid-template-columns: 1fr; }
  }

 .sw-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .sw-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .sw-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .sw-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .sw-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .sw-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .sw-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .sw-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .sw-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .sw-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .sw-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .sw-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .sw-stat-num {
    font-size: 24px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .sw-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* Bus cards */
  .sw-bus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }
  .sw-bus-card {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 20px 22px;
    border-top: 3px solid #D85A30;
  }
  .sw-bus-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
  }
  .sw-bus-icon i { font-size: 18px; color: #D85A30; }
  .sw-bus-title { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 6px; }
  .sw-bus-desc { font-size: 13px; color: #5a5a56; line-height: 1.65; }
 
  /* Daily schedule */
  .sw-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sw-schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .sw-schedule-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sw-schedule-icon i { font-size: 16px; color: #D85A30; }
  .sw-schedule-title { font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .sw-schedule-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* What children learn */
  .sw-learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }
  .sw-learn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .sw-learn-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sw-learn-icon i { font-size: 13px; color: #3B6D11; }
  .sw-learn-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Quote block */
  .sw-quote {
    background: #FAECE7;
    border-left: 3px solid #D85A30;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 0;
  }
  .sw-quote p {
    font-size: 14px; color: #5a5a56;
    line-height: 1.8; margin: 0;
    font-style: italic;
  }
 
  /* Funders */
  .sw-funders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sw-funder-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 16px;
  }
  .sw-funder-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sw-funder-icon i { font-size: 15px; color: #185FA5; }
  .sw-funder-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 2px; }
  .sw-funder-desc { font-size: 12px; color: #3a6a9a; line-height: 1.5; }
 
  @media (max-width: 600px) {
    .sw-stats { grid-template-columns: 1fr 1fr; }
    .sw-bus-grid { grid-template-columns: 1fr; }
    .sw-funders { grid-template-columns: 1fr; }
    .sw-learn-grid { grid-template-columns: 1fr 1fr; }
  }


  /* ── SHWETAARK STREET SCHOOLS — prefix: ss- ── */
 
  .ss-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .ss-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .ss-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .ss-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .ss-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .ss-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .ss-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .ss-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .ss-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .ss-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .ss-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .ss-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .ss-stat-num {
    font-size: 26px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .ss-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* Partner block */
  .ss-partner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 0;
  }
  .ss-partner-icon {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ss-partner-icon i { font-size: 19px; color: #D85A30; }
  .ss-partner-title { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 4px; }
  .ss-partner-desc { font-size: 13px; color: #5a5a56; line-height: 1.65; }
 
  /* Where centres operate */
  .ss-locations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }
  .ss-location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .ss-location-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ss-location-icon i { font-size: 13px; color: #D85A30; }
  .ss-location-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.35; }
 
  /* Quote */
  .ss-quote {
    background: #FAECE7;
    border-left: 3px solid #D85A30;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
  }
  .ss-quote p {
    font-size: 14px; color: #5a5a56;
    line-height: 1.8; margin: 0;
    font-style: italic;
  }
 
  /* What we provide */
  .ss-provide {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ss-provide-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .ss-provide-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ss-provide-icon i { font-size: 16px; color: #3B6D11; }
  .ss-provide-title { font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .ss-provide-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* Goal block */
  .ss-goal {
    background: #1a1a18;
    border-radius: 12px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
  }
  .ss-goal::before {
    content: '"';
    position: absolute;
    top: -14px; left: 20px;
    font-size: 110px;
    color: #D85A30;
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
  }
  .ss-goal-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
    position: relative; z-index: 1;
  }
  .ss-goal-text strong { color: #F0997B; }
 
  @media (max-width: 600px) {
    .ss-stats { grid-template-columns: 1fr 1fr; }
    .ss-locations { grid-template-columns: 1fr 1fr; }
  }

 /* ── SHOWER BUS — prefix: sb- ── */
 
  .sb-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .sb-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .sb-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .sb-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .sb-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .sb-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .sb-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .sb-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .sb-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .sb-hero-text strong { color: #F0997B; }
 
  /* Temp callout */
  .sb-temp {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FAECE7;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 0;
  }
  .sb-temp-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: #D85A30;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sb-temp-icon i { font-size: 20px; color: #fff; }
  .sb-temp-text { font-size: 14px; color: #5a5a56; line-height: 1.75; }
  .sb-temp-text strong { color: #1a1a18; font-weight: 600; }
 
  /* What we provide grid */
  .sb-provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
  }
  .sb-provide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .sb-provide-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sb-provide-icon i { font-size: 13px; color: #3B6D11; }
  .sb-provide-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Closing quote */
  .sb-quote {
    background: #FAECE7;
    border-left: 3px solid #D85A30;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
  }
  .sb-quote p {
    font-size: 14px; color: #5a5a56;
    line-height: 1.8; margin: 0;
    font-style: italic;
  }
 
  /* Funders timeline */
  .sb-funders {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sb-funder-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .sb-funder-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sb-funder-icon i { font-size: 16px; color: #185FA5; }
  .sb-funder-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 2px; }
  .sb-funder-desc { font-size: 12px; color: #3a6a9a; line-height: 1.55; }
 
  @media (max-width: 600px) {
    .sb-provide-grid { grid-template-columns: 1fr 1fr; }
  }

  .am-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .am-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .am-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .am-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .am-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .am-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .am-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .am-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .am-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .am-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .am-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .am-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .am-stat-num {
    font-size: 26px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .am-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* What we do */
  .am-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .am-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .am-service-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .am-service-icon i { font-size: 16px; color: #D85A30; }
  .am-service-title { font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .am-service-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* Conditions treated */
  .am-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
  }
  .am-condition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 11px 14px;
  }
  .am-condition-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #D85A30;
    flex-shrink: 0;
  }
  .am-condition-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.35; }
 
  /* Vaccines */
  .am-vaccines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
  }
  .am-vaccine-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 11px 14px;
  }
  .am-vaccine-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .am-vaccine-icon i { font-size: 11px; color: #3B6D11; }
  .am-vaccine-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Hospital stat callout */
  .am-hospital-callout {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FAECE7;
    border-radius: 10px;
    padding: 18px 22px;
  }
  .am-hospital-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    background: #D85A30;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .am-hospital-icon i { font-size: 22px; color: #fff; }
  .am-hospital-num {
    font-size: 28px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 4px;
  }
  .am-hospital-desc { font-size: 13px; color: #5a5a56; line-height: 1.5; }
 
  /* Awareness */
  .am-awareness {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 8px;
  }
  .am-awareness-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .am-awareness-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .am-awareness-icon i { font-size: 13px; color: #D85A30; }
  .am-awareness-label { font-size: 12px; font-weight: 500; color: #1a1a18; line-height: 1.35; }
 
  /* Funders */
  .am-funders {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .am-funder-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .am-funder-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .am-funder-icon i { font-size: 16px; color: #185FA5; }
  .am-funder-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 2px; }
  .am-funder-desc { font-size: 12px; color: #3a6a9a; line-height: 1.55; }
 
  @media (max-width: 600px) {
    .am-stats { grid-template-columns: 1fr 1fr; }
    .am-conditions-grid { grid-template-columns: 1fr 1fr; }
    .am-vaccines-grid { grid-template-columns: 1fr 1fr; }
    .am-awareness { grid-template-columns: 1fr 1fr; }
  }
 /* ── AIDS AWARENESS — prefix: aa- ── */
 
  .aa-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .aa-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .aa-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .aa-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .aa-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .aa-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .aa-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .aa-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .aa-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .aa-hero-text strong { color: #F0997B; }
 
  /* Two programme cards */
  .aa-prog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }
  .aa-prog-card {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 20px 22px;
    border-top: 3px solid #D85A30;
  }
  .aa-prog-num {
    font-size: 32px; font-weight: 700;
    color: #e8c9be; line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 10px;
  }
  .aa-prog-title {
    font-size: 14px; font-weight: 600;
    color: #1a1a18; margin-bottom: 6px;
  }
  .aa-prog-desc {
    font-size: 13px; color: #5a5a56; line-height: 1.65;
  }
  .aa-prog-desc strong { color: #1a1a18; font-weight: 500; }
  .aa-prog-stat {
    display: inline-block;
    margin-top: 12px;
    background: #FAECE7;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px; font-weight: 600;
    color: #D85A30;
  }
 
  /* Phased out badge */
  .aa-phased {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px; font-weight: 500;
    color: #888780;
    margin-top: 10px;
  }
  .aa-phased i { font-size: 10px; }
 
  /* Methods grid */
  .aa-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 8px;
  }
  .aa-method-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 14px 14px;
  }
  .aa-method-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .aa-method-icon i { font-size: 14px; color: #3B6D11; }
  .aa-method-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.4; }
 
  /* Kavach block */
  .aa-kavach {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 22px 24px;
  }
  .aa-kavach-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .aa-kavach-title {
    font-size: 15px; font-weight: 600; color: #1a1a18;
  }
  .aa-kavach-text {
    font-size: 13px; color: #5a5a56; line-height: 1.75; margin: 0;
  }
  .aa-kavach-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Funder block */
  .aa-funder {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 12px;
  }
  .aa-funder-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .aa-funder-icon i { font-size: 15px; color: #185FA5; }
  .aa-funder-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 2px; }
  .aa-funder-desc { font-size: 12px; color: #3a6a9a; line-height: 1.55; }
 
  @media (max-width: 600px) {
    .aa-prog-grid { grid-template-columns: 1fr; }
    .aa-methods { grid-template-columns: 1fr 1fr; }
  }

  /* ── CHILD RIGHTS — prefix: cr2- ── */
 
  .cr2-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .cr2-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .cr2-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .cr2-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .cr2-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .cr2-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .cr2-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .cr2-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .cr2-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .cr2-hero-text strong { color: #F0997B; }
 
  /* Featured activity — play */
  .cr2-featured {
    background: #FAECE7;
    border-radius: 12px;
    padding: 24px 26px;
    border-left: 4px solid #D85A30;
    margin-bottom: 0;
  }
  .cr2-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D85A30;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px; font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
  }
  .cr2-featured-tag i { font-size: 10px; }
  .cr2-featured-title {
    font-size: 16px; font-weight: 700;
    color: #1a1a18; margin-bottom: 8px;
    font-style: italic;
  }
  .cr2-featured-desc {
    font-size: 13px; color: #5a5a56; line-height: 1.75;
  }
  .cr2-featured-desc strong { color: #1a1a18; font-weight: 500; }
 
  /* Activities list */
  .cr2-activities {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cr2-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
    transition: background 0.15s;
  }
  .cr2-activity-item:hover { background: #FAECE7; }
  .cr2-activity-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cr2-activity-icon i { font-size: 16px; color: #D85A30; }
  .cr2-activity-text {
    font-size: 13px; color: #1a1a18;
    line-height: 1.65; font-weight: 400;
  }
  .cr2-activity-text strong { font-weight: 600; }
 
  @media (max-width: 600px) {
    .cr2-hero { padding: 22px 20px; }
  }


  .ak-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .ak-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .ak-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .ak-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .ak-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .ak-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .ak-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .ak-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .ak-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .ak-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .ak-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .ak-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 18px 14px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .ak-stat-num {
    font-size: 26px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .ak-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* How it works steps */
  .ak-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ak-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .ak-step-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ak-step-icon i { font-size: 16px; color: #D85A30; }
  .ak-step-title { font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .ak-step-desc { font-size: 13px; color: #5a5a56; line-height: 1.6; }
 
  /* Where food is delivered */
  .ak-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }
  .ak-site-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .ak-site-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ak-site-icon i { font-size: 12px; color: #3B6D11; }
  .ak-site-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Location */
  .ak-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 12px;
  }
  .ak-location i { font-size: 16px; color: #D85A30; margin-top: 2px; flex-shrink: 0; }
  .ak-location-text { font-size: 13px; color: #5a5a56; line-height: 1.65; }
  .ak-location-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Staff tags */
  .ak-staff-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
  }
  .ak-staff-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FAECE7;
    border: 1px solid rgba(216,90,48,0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px; color: #5a5a56;
  }
  .ak-staff-tag i { font-size: 11px; color: #D85A30; }
 
  /* Funders */
  .ak-funders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ak-funder-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 16px;
  }
  .ak-funder-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ak-funder-icon i { font-size: 15px; color: #185FA5; }
  .ak-funder-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 2px; }
  .ak-funder-desc { font-size: 12px; color: #3a6a9a; line-height: 1.5; }
 
  /* 4% impact callout */
  .ak-impact {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .ak-impact-num {
    font-size: 64px; font-weight: 700;
    color: #D85A30; line-height: 1;
    flex-shrink: 0;
  }
  .ak-impact-text {
    font-size: 15px; color: #fff;
    line-height: 1.75;
  }
  .ak-impact-text strong { color: #F0997B; }
 
  @media (max-width: 600px) {
    .ak-stats { grid-template-columns: 1fr 1fr; }
    .ak-funders { grid-template-columns: 1fr; }
    .ak-sites-grid { grid-template-columns: 1fr 1fr; }
    .ak-impact { flex-direction: column; gap: 12px; }
    .ak-impact-num { font-size: 48px; }
  }

  /* ── JHAG CHILDREN'S VILLAGE — prefix: jv- ── */
 
  .jv-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.09);
    margin: 28px 0;
  }
  .jv-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 6px; display: block;
  }
  .jv-heading {
    font-size: 19px; font-weight: 600;
    color: #1a1a18; margin: 0 0 14px;
  }
  .jv-body-text {
    font-size: 14px; color: #5a5a56;
    line-height: 1.85; margin-bottom: 14px;
  }
  .jv-body-text strong { color: #1a1a18; font-weight: 500; }
 
  /* Hero */
  .jv-hero {
    background: #1a1a18;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .jv-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #D85A30;
    border-radius: 12px 0 0 12px;
  }
  .jv-hero-title {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #D85A30; margin-bottom: 10px; display: block;
  }
  .jv-hero-text {
    font-size: 15px; color: #fff;
    line-height: 1.85; margin: 0;
  }
  .jv-hero-text strong { color: #F0997B; }
 
  /* Stats */
  .jv-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .jv-stat {
    background: #f5f3ef;
    border-radius: 10px;
    padding: 16px 12px;
    border-top: 3px solid #D85A30;
    text-align: center;
  }
  .jv-stat-num {
    font-size: 22px; font-weight: 700;
    color: #D85A30; line-height: 1; margin-bottom: 6px;
  }
  .jv-stat-label { font-size: 11px; color: #5a5a56; line-height: 1.5; }
 
  /* Location block */
  .jv-location {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FAECE7;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 0;
  }
  .jv-location-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #D85A30;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .jv-location-icon i { font-size: 18px; color: #fff; }
  .jv-location-title { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 4px; }
  .jv-location-desc { font-size: 13px; color: #5a5a56; line-height: 1.65; }
  .jv-location-desc strong { color: #1a1a18; font-weight: 500; }
 
  /* Facilities */
  .jv-facilities {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .jv-facility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
    transition: background 0.15s;
  }
  .jv-facility-item:hover { background: #FAECE7; }
  .jv-facility-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #FAECE7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .jv-facility-icon i { font-size: 17px; color: #D85A30; }
  .jv-facility-name { font-size: 14px; font-weight: 600; color: #1a1a18; margin-bottom: 3px; }
  .jv-facility-desc { font-size: 12px; color: #5a5a56; line-height: 1.55; }
 
  /* Needs addressed */
  .jv-needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 8px;
  }
  .jv-need-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAF3DE;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .jv-need-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .jv-need-icon i { font-size: 12px; color: #3B6D11; }
  .jv-need-label { font-size: 12px; font-weight: 500; color: #2a4a0e; line-height: 1.35; }
 
  /* Partners */
  .jv-partners {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .jv-partner-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #E6F1FB;
    border-radius: 8px;
    padding: 14px 18px;
  }
  .jv-partner-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .jv-partner-icon i { font-size: 16px; color: #185FA5; }
  .jv-partner-title { font-size: 13px; font-weight: 600; color: #0C447C; margin-bottom: 3px; }
  .jv-partner-desc { font-size: 12px; color: #3a6a9a; line-height: 1.6; }
 
  /* Govt land badge */
  .jv-govt {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f5f3ef;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 10px;
  }
  .jv-govt i { font-size: 17px; color: #D85A30; margin-top: 2px; flex-shrink: 0; }
  .jv-govt-text { font-size: 13px; color: #5a5a56; line-height: 1.65; }
  .jv-govt-text strong { color: #1a1a18; font-weight: 500; }
 
  @media (max-width: 600px) {
    .jv-stats { grid-template-columns: 1fr 1fr; }
    .jv-needs-grid { grid-template-columns: 1fr 1fr; }
  }

.cause-block h3 a {
   display:block
}


.cause-block h3 a i {
    margin-right: 10px;
    color: #d85a30;
}


.hw-wrap .service-block .service-block-one .inner-box {
  padding: 28px 24px !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  text-align: left !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  position: relative !important;
  overflow: hidden !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
  transform: translateY(-3px) !important;
}
 
/* Orange top border on hover */
.hw-wrap .service-block .service-block-one .inner-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 3px !important;
  background: #D85A30 !important;
  border-radius: 14px 14px 0 0 !important;
  opacity: 0 !important;
  transition: opacity 0.2s !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box:hover::before {
  opacity: 1 !important;
}
 
/* Icon box */
.hw-wrap .service-block .service-block-one .inner-box .icon-box {
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
	height:auto;
}
 
.hw-wrap .service-block .service-block-one .inner-box .icon-box .icon-shape {
  display: none !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box .icon-box .icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  background: #FAECE7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box:hover .icon-box .icon {
  background: #D85A30 !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box .icon-box .icon i {
  font-size: 22px !important;
  color: #D85A30 !important;
  transition: color 0.2s !important;
  margin: 0 !important;
  line-height: 1 !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box:hover .icon-box .icon i {
  color: #fff !important;
}
 
/* Title */
.hw-wrap .service-block .service-block-one .inner-box h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1a1a18 !important;
  margin-bottom: 10px !important;
  text-align: left !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box h3 a {
  color: #1a1a18 !important;
  text-decoration: none !important;
}
 
.hw-wrap .service-block .service-block-one .inner-box h3 a:hover {
  color: #D85A30 !important;
}
 
/* Description text */
.hw-wrap .service-block .service-block-one .inner-box p {
  font-size: 13px !important;
  color: #5a5a56 !important;
  line-height: 1.75 !important;
  text-align: left !important;
  margin-bottom: 0 !important;
}
 

 /* ── VOLUNTEER PAGE — prefix: vl- ── */
  .vl-divider { border: none; border-top: 1px solid rgba(0,0,0,0.09); margin: 28px 0; }
  .vl-label { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #D85A30; margin-bottom: 6px; display: block; }
  .vl-heading { font-size: 20px; font-weight: 600; color: #1a1a18; margin: 0 0 20px; }
 
  /* Hero */
  .vl-hero { background: #1a1a18; border-radius: 12px; padding: 28px 32px; margin-bottom: 28px; position: relative; overflow: hidden; }
  .vl-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #D85A30; border-radius: 12px 0 0 12px; }
  .vl-hero-title { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #D85A30; margin-bottom: 10px; display: block; }
  .vl-hero-text { font-size: 16px; color: #fff; line-height: 1.85; margin: 0; }
  .vl-hero-text strong { color: #F0997B; }
 
  /* Ways cards */
  .vl-card { background: #f5f3ef; border-radius: 10px; padding: 24px 20px; height: 100%; transition: background 0.15s, transform 0.15s; }
  .vl-card:hover { background: #FAECE7; transform: translateY(-2px); }
  .vl-card-icon { width: 48px; height: 48px; border-radius: 10px; background: #FAECE7; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background 0.15s; }
  .vl-card:hover .vl-card-icon { background: #D85A30; }
  .vl-card-icon i { font-size: 20px; color: #D85A30; transition: color 0.15s; }
  .vl-card:hover .vl-card-icon i { color: #fff; }
  .vl-card-title { font-size: 16px; font-weight: 600; color: #1a1a18; margin-bottom: 8px; }
  .vl-card p { font-size: 14px; color: #5a5a56; line-height: 1.7; margin: 0; }
 
  /* CTA */
  .vl-cta { background: #FAECE7; border-radius: 12px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .vl-cta-text { font-size: 15px; color: #5a5a56; line-height: 1.75; flex: 1; }
  .vl-cta-text strong { color: #1a1a18; font-weight: 600; }
  .vl-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: #D85A30; color: #fff; border-radius: 50px; padding: 12px 24px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: opacity 0.15s; }
  .vl-cta-btn:hover { opacity: 0.88; color: #fff; text-decoration: none; }
 
  /* Testimonial */
  .vl-testimonial-wrap { background: #f5f3ef; border-radius: 12px; padding: 28px 32px; }
  .vl-testimonial-author { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
  .vl-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: #D85A30; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .vl-author-avatar i { font-size: 24px; color: #fff; }
  .vl-author-name { font-size: 17px; font-weight: 600; color: #1a1a18; }
  .vl-author-from { font-size: 14px; color: #888780; margin-top: 2px; }
  .vl-quotes { display: flex; flex-direction: column; gap: 12px; }
  .vl-quote-item { border-left: 3px solid #D85A30; padding: 6px 0 6px 16px; font-size: 15px; color: #5a5a56; line-height: 1.75; font-style: italic; }
  .vl-photo-note { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 8px; padding: 14px 16px; font-size: 14px; color: #888780; border: 1px dashed rgba(0,0,0,0.12); }
  .vl-photo-note i { font-size: 18px; color: #D85A30; flex-shrink: 0; }