:root{
	--primary-color			: #020D19;
	--secondary-color		: #F8F8F8;
	--text-color			: #828282;
	--accent-color			: #d93e7e;
	--white-color			: #FFFFFF;
	--divider-color			: #020D1914;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Inter", serif;
	--accent-font			: "Onest", serif;
}



body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	background-color: var(--white-color);
	color: #000;
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.3em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.5em;
	font-family: var(--accent-font);
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}
.image-anime img {
   pointer-events: auto !important;
 
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
	  pointer-events: none;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
	font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 20px 54px 20px 24px;
	border-radius: 100px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: var(--white-color);
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-24px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-21px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    left: 0;
	right: auto;
}

.readmore-btn{
	position: relative;
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;	
	line-height: 1.8em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 40px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before{
	content: '\f061';
    position: absolute;
	right: 0;
    top: 50%;
	font-family: 'Font Awesome 6 Free';
	font-size: 14px;
	line-height: normal;
	color: var(--white-color);
	width: 30px;
	height: 30px;
	background-color: var(--accent-color);
	background-position: center center;
	border-radius: 50%;
	display: flex;
	align-items: center;
    justify-content: center;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn:hover::before{
	background-color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 20px;
}

.section-row .section-title{
	width: 100%;
	max-width: 765px;
	margin-bottom: 0;
	margin: 0 auto;
	text-align: center;
}

.section-title{
	margin-bottom: 20px;
}

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 15px;
    font-weight: 500;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 34px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/home_icon.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.section-title h1{
	font-size: 40px;
	margin-bottom: 0;

}

.section-title h2{
	font-size: 24px;
	margin-bottom: 0;
	
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-top: 5px;
    margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
	top: 0;
	width: 100%;
	/*border-bottom: 1px solid var(--dark-divider-color);*/
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar-brand {
  background-color: #ffffff;         
   /*border: 4px solid #c30000;  */       
  padding: 10px;                     
  border-radius: 50%;               
  display: inline-block;            
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  overflow: hidden;                 
}


.navbar-brand img {
  width: 100px;       
  height: 100px;
  object-fit: contain; 
}


@media (max-width: 767px) {
  .navbar-brand {
    padding: 6px;
    border-width: 3px;
  }

  .navbar-brand img {
    width: 60px;
    height: 60px;
  }
}

.navbar{
	padding: 10px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 14px 16px !important;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.contact-now-box{
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box{
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding-bottom: 5px;
}

.contact-now-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 17px;
	height: 17px;
	z-index: 0;
}

.contact-now-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 18px;
	z-index: 1;
}

.contact-now-box-content{
	width: calc(100% - 43px);
}

.contact-now-box-content p{
	color: var(--white-color);
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	color: var(--accent-color);
	font-size: 16px;
}

.contact-now-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover{
	color: var(--white-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	margin: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 10px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}


/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: none;
  padding: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(270deg, rgba(2,13,25,0) 16.33%, rgba(2,13,25,0.8) 100%),
              linear-gradient(360deg, rgba(2,13,25,0) 87.52%, #020D19 101.14%);
  z-index: 1;
  pointer-events: none;
}

/* For Hero with Video Background (if used) */
.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Slider Layout */
.hero.hero-slider-layout {
  padding: 0;
  background: none;
}

/* Each Slide */
.hero.hero-slider-layout .hero-slide {
  position: relative;
  width: 100%;
  height: auto; /* Image controls height */
  overflow: hidden;
}

/* Gradient Overlay for Each Slide */
.hero.hero-slider-layout .hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
 /*  background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%),
              linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);*/
  z-index: 1;
  pointer-events: none;
}

/* Image container should not be absolute */
.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: relative;
  width: 100%;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Swiper Pagination */
.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 80px;
  left: 20px;
  z-index: 3;
  text-align: left;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Overlay Content */
.hero-content {
	display: flex;
        flex-direction: column;
        align-items: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center; 
  padding: 20px;
  width: 90%;
  color: var(--white-color);
}

.hero-content .section-title {
  margin-bottom: 40px;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p {
  color: var(--white-color);
}

/* Hero Body Layout */
.hero-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 0;
}

.btn-default.btn-no-right-arrow::before {
  display: none !important;
}

.btn-default.btn-no-right-arrow {
 padding: 10px 20px 12px 15px !important;
}

/* Video Play Button */
.video-play-button {
  display: flex;
  align-items: center;
}

.video-play-button p {
  color: var(--white-color);
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 10px 0 0;
}

.video-play-button a {
  height: 50px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.video-play-button a:hover {
  background-color: var(--primary-color);
}

.video-play-button a i {
  font-size: 22px;
  color: var(--white-color);
}

/* Optional Hero Footer Section */
.hero-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 40px;
}

/* List style inside hero */
.hero-list {
  position: relative;
}

.hero-list:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  height: 100%;
  width: 1px;
  background: var(--dark-divider-color);
}

.hero-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list ul li {
  background: url('../images/icon-check.svg') no-repeat left center;
  background-size: 26px auto;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 35px;
  margin-bottom: 20px;
}

.hero-list ul li:last-child {
  margin-bottom: 0;
}

/* Small content block */
.hero-help-families {
  max-width: 260px;
}

.hero-help-families h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.hero-help-families p {
  color: var(--white-color);
  line-height: 1.4em;
  margin: 0;
}

@media (max-width: 768px) {
	
	.section-title.section-title-large h2 {
    font-size: 17px!important;
    margin-bottom: 0;
}

    .fact-row {
        margin-bottom: 20px !important;
    }

    .page-header-box h1 {
        font-size: 32px;
    }
    .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .page-header-box h1 {
        font-size: 32px;
    }
    .header-overlay {
        align-items: flex-end;
        padding-bottom: 60px;
    }
}

@media (max-width: 375px) {
    .page-header-box h1 {
        font-size: 28px;
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-content {
	  top: 84%!important; 
    display: block !important;
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 20px 10px;
    text-align: center;
    box-sizing: border-box;
  }
  
 
  
  .hero-content .section-title,
	.hero-body{
		
		margin-bottom: 0px!important;
	}

  /* HIDE TEXT ONLY */
  .hero-content .section-title h1 {
    display: none;
  }
  .hero-content .section-title h3 {
	 
	  margin-bottom:0px!important;
    display: block;
  }
  
  .hero-btn {
    display: none;
  }
  .hero.hero-slider-layout .hero-pagination{
		display:none!important;
	}
  
  .hero-content .section-title {
  margin-bottom: 0px!important;
}

  /* SHOW BUTTONS ONLY */
  .hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }

  .btn-default,
  .readmore-btn {
        display: inline-block;
        width: 100%;
        max-width: 162px;
        padding: 6px 9px;
        font-size: 14px;
        box-sizing: border-box;
        margin: 6px auto;
  }

  .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}



/************************************/
/***      	05. About Us css      ***/
/************************************/

.about-us{
	padding: 50px 0;
}

.about-us-images{
	position: relative;
	padding: 0 0 190px 110px;
	margin-right: 30px;
}

.about-img-1,
.about-img-2{
	border-radius: 30px;
	overflow: hidden;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	object-fit: cover;
}

.about-img-1 img{
	aspect-ratio: 1 / 0.95;
}

.about-img-2{
	position: absolute;
	max-width: 412px;
	bottom: 0;
	left: 0;
	border: 15px solid var(--white-color);
	z-index: 1;
	overflow: hidden;
}

.about-img-2 img{
	aspect-ratio: 1 / 0.86;
}

.need-fund-box{
	position: absolute;
	right: 0;
	bottom: 15px;
	max-width: 165px;
	background-color: var(--accent-color);
	border-radius: 13px;
	padding: 16px;
    text-align: center;
	overflow: hidden;
}

.need-fund-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.need-fund-box:hover:before{
	top: auto;
    height: 100%;
}

.need-fund-box img{
	position: relative;
	width: 100%;
	max-width: 60px;
	margin-bottom: 10px;
	z-index: 1;
}

.need-fund-box p {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  color: var(--white-color);
  font-weight: 500;
  margin: 0;
  z-index: 1;
  text-transform: none; /* Prevent capitalization of Hindi/quotes */
  padding: 0 5px;
}

.need-fund-box p::before {
    content: "\201C";   /* Left double quotation mark “ */
    font-size: 28px;
    color: rgb(237, 217, 19);
    position: absolute;
    top: -10px;
    left: -4px;
    z-index: 0;
    font-family: Georgia, serif;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.about-us-body-content{
	width: calc(55% - 30px);
}

.about-support-box{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.about-support-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.about-support-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.about-support-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.about-support-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-support-content p{
	margin: 0;
}

.helped-fund-item{
	position: relative;
	width: calc(45% - 30px);
	padding: 0 30px 30px;
	text-align: center;
}

.helped-fund-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
	display: inline-block;
    mask-image: url('../images/helped-fund-box-mask.svg');
    mask-size: contain;
    mask-position: bottom center;
    mask-repeat: no-repeat;
	z-index: 0;
}

.helped-fund-img{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.helped-fund-img figure{
	box-shadow: #c13d0c -2px -5px 0px 0px;
	max-width: 120px;
	display: inline-block;
	border-radius: 100px;
}

.helped-fund-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}

.helped-fund-content{
	position: relative;
	z-index: 1;
}

.helped-fund-content h2{
	color: var(--accent-color);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.helped-fund-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.helped-fund-content p{
	font-size: 14px;
	 font-style: italic;
	margin: 0;
}

/************************************/
/***      06. Our Service css     ***/
/************************************/

.our-services{	
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding-top: 50px;
}

.service-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 20px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-content{
	margin-bottom: 30px;
}

.service-content h3{
	font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;

    /* Gradient text styles */
    background: linear-gradient(90deg, #ff6a00, #2a8015); /* You can change the colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	margin: 0;
}

.service-image{
	margin-bottom: 30px;
}

.service-image figure{
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

.service-image img{
	width: 100%;
	aspect-ratio: 1 / 1;   
	transition: all 0.4s ease-in-out;
}

.service-item:hover img{
	transform: scale(1.1);
}

.section-footer-text{
	margin-top: 30px;
}

.section-footer-text p{
	font-family: var(--accent-font);
	text-align: center;
	margin-bottom: 0;
}

.section-footer-text p span{
	font-weight: 600;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 5px 10px;
	margin-right: 5px;
}

.section-footer-text p a{
	font-weight: 700;
	text-decoration: underline;
	text-transform: capitalize;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.section-title.text-center .separator {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    text-align: center;
}



/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do{
	padding: 50px 0;
}

.what-we-item{
	display: flex;
	align-items: start;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 35px;
	padding-bottom: 35px;
}

.what-we-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.what-we-item .icon-box{
	position: relative;
	padding-bottom: 8px;
	margin-right: 25px;
}

.what-we-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	z-index: 0;
}

.what-we-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 72px;
	z-index: 1;
}

.what-we-item-content{
	width: calc(100% - 97px);
}

.what-we-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.what-we-item-content p{
	margin: 0;
}

.what-we-do-images{
	position: relative;
	padding-left: 165px;
}

.what-we-do-img-1 figure{
	display: block;
	border-radius: 30px;
}

.what-we-do-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 1.5;
	object-fit: cover;
	border-radius: 30px;
}

.what-we-do-img-2{
	position: absolute;
	bottom: 70px;
	left: 0;
	width: 100%;
	max-width: 272px;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	z-index: 1;
}

.what-we-do-img-2 figure{
	display: block;
	border-radius: 50%;
}

.what-we-do-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.donate-now-box{
	position: absolute;
	top: 60px;
	left: 80px;	
    writing-mode: vertical-rl;	
	transform: rotate(-180deg);
}

.donate-now-box a{
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: var(--accent-color);
	border-radius: 10px;
	color: var(--white-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 40px 15px;
	transition: all 0.4s ease-in-out;
}

.donate-now-box a:hover{
	background: var(--primary-color);
}

.donate-now-box a img{
	width: 100%;
	max-width: 25px;	
	transform: rotate(90deg);
	transition: all 0.3s ease-in-out;
}

.donate-now-box a:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***      08. Our Causes css      ***/
/************************************/

.our-causes{
	background: url(../images/our-service-bg.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
	padding: 50px 0 50px;
}

.causes-item{
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	margin-bottom: 30px;
}

.causes-image{
	margin-bottom: 30px;
}

.causes-image figure{
	display: block;
	border-radius: 30px;
}

.causes-image img{
	width: 100%;
	aspect-ratio: 1 / 0.822;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.causes-item:hover .causes-image img{
	transform: scale(1.1);
}

.causes-content{
	text-align: center;
	margin-bottom: 30px;
}

.causes-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.causes-content p{
	margin-bottom: 0;
}

.causes-button .btn-default{
	display: block;
	text-align: center;
	padding: 20px;
}

.causes-button .btn-default::before{
	display: none;
}

/************************************/
/***     09. Why Choose Us css     ***/
/************************************/

.why-choose-us{
	padding: 50px 0;
}

.why-choose-images{
	position: relative;
	padding: 0 65px 45px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure{
	display: block;
	overflow: hidden;
	border-radius: 50%;
}

.why-choose-image-1 img,
.why-choose-image-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-image-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 265px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
}

.why-choose-content{
	margin-left: 15px;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.why-choose-list ul li{
	width: calc(50% - 10px);
	background: url('../images/icon-check-dark.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 35px;
}

.why-choose-counters{
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(3n + 3):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item h2{
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.why-choose-counter-item p{
	margin-bottom: 0;
}

/************************************/
/***      10. Our Program css     ***/
/************************************/

.our-program{
	position: relative;
	background-image: linear-gradient(180deg, #8d000075 80%, var(--white-color) 20%), url(../images/our_work/our_prgm_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 50px 0;
}

.our-program::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(2, 13, 25, 0.5) 17.67%, #FFFFFF 70%);
	height: 100%;
	width: 100%;
	z-index: 0;
}

.our-program .section-row{
	position: relative;
	z-index: 1;
}

.our-program .section-title h3,
.our-program .section-title h2,
.our-program .section-title p{
	color: var(--white-color);
}

.program-item{
	position: relative;
	height: calc(100% - 30px);
	background: #f1ecc4;
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 0px;
	z-index: 1;
}

.program-image{
	margin-bottom: 15px;
}

.program-image a{
	display: block;
	cursor: pointer;
}

.program-image figure{
	display: block;
	border-radius: 20px;
}

.program-image img{
	width: 100%;
	aspect-ratio: 1 / 0.701;
	object-fit: fill;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img{
	transform: scale(1.1);
}

.program-body{
	text-align: center;
}

.program-content{
	margin-bottom: 10px;
}

.program-content h3{
	font-size: 18px;
	margin-bottom: 10px;
}

.program-content h5{
	font-size: 17px;
	margin-bottom: 10px;
}

.program-content h3 a{
	color: inherit;
}

.program-content h5 a{
	color: inherit;
}

.program-content p{
	margin-bottom: 0;
}

.our-program .section-footer-text{
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 30px auto 0;
	z-index: 1;
}

/************************************/
/***   11. Scrolling Ticker css   ***/
/************************************/

.main-donate-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.main-donate-tabs .nav-item {
    flex: 1;
}

.main-donate-tabs .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 12px 0;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s;
}

.main-donate-tabs .nav-link.active {
    background: linear-gradient(135deg, #29a6cd, #4361ee);
}

.main-donate-tabs .nav-link:not(.active) {
    background: linear-gradient(135deg, #f72585, #7209b7);
}

/* ================= NESTED TABS ================= */
.nested-donate-tabs .nav-link {
    color: #444;
    background: #f0f0f0;
    border: 1px solid #ddd;
    margin-right: 5px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nested-donate-tabs .nav-link.active {
    background: #7209b7;
    color: #fff;
    border-color: #7209b7;
}

.nested-donate-tabs .nav-link:hover {
    background: #560bad;
    color: #fff;
}

/* ================= TABLE ================= */
.bank-details-table th {
    width: 40%;
    background: #f8f9fa;
    font-weight: 600;
}

.bank-details-table td {
    background: #ffffff;
}

/* ================= SCROLLING TICKER ================= */

.scrolling-ticker {
    width: 100%;
    overflow: hidden;
}

/* ================= FULL BACKGROUND STRIP ================= */

.scrolling-ticker-box {
    --gap: 40px;

    display: flex;
    align-items: center;
    gap: var(--gap);

    padding: 10px 14px;
    overflow: hidden;
    user-select: none;

    background: linear-gradient(90deg, #7209b7, #f72585);
    border-top: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* ================= SCROLLING CONTENT ================= */

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
    min-width: 100%;

    /* SPEED UNCHANGED */
    animation: scroll 35s linear infinite;
}

/* pause on hover (UX only) */
.scrolling-ticker-box:hover .scrolling-content {
    animation-play-state: paused;
}

/* ================= NOTICE ITEM ================= */

.scrolling-content span {
    display: flex;
    align-items: center;
    gap: 10px;

    /* IMPORTANT: prevent wrapping */
    white-space: nowrap;
}

/* bullet icon */
.scrolling-content span img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* notice text */
.scrolling-content span a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;

    color: #ffffff !important;
    text-decoration: none;

    /* 🔒 HARD LOCK — SINGLE LINE ALWAYS */
    white-space: nowrap !important;
}

/* hover */
.scrolling-content span a:hover {
    text-decoration: underline;
}

/* ================= MOBILE (425 INCLUDED) ================= */

@media (max-width: 767px) {

    .scrolling-ticker-box {
        padding: 8px 12px;
    }

    .scrolling-content span a {
        font-size: 14px;
    }
}

/* ================= ANIMATION ================= */

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}



/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
	padding: 50px 0;
}

.our-features-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-features-item{
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-features-item:nth-child(even){
	flex-direction: column-reverse;
}

.our-features-image figure{
	display: block;
	border-radius: 30px;
}

.our-features-image img{
	width: 100%;
    aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 30px;
}

.our-features-content{
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 15px;
}

.our-features-body{
	width: calc(100% - 87px);
}

.our-features-body h2{
	color: var(--accent-color);
	font-size: 50px;
	margin-bottom: 25px;
}

.our-features-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-features-body p{
	margin: 0;
}

.our-features-content .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 7px;
}

.our-features-content .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 43px;
	height: 43px;
	z-index: 0;
}

.our-features-content .icon-box img{
	position: relative;
	width: 100%;
	max-width: 72px;
	z-index: 1;
}

/************************************/
/***      13. Donate Now css      ***/
/************************************/

.donate-now{
	position: relative;
	background: url('../images/about/donate_bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;	
	padding: 50px 0;
}

.donate-now::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 30%;
	height: 100%;
	width: 100%;
}

.intro-video-box{
	text-align: center;
	margin-right: 30px;
}

.intro-video-box .video-play-button{
	position: relative;
	display: inline-block;
	z-index: 1;
}

.intro-video-box .video-play-button a{
	width: 74px;
	height: 74px;
	margin: 0;
}

.intro-video-box .video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.intro-video-box .video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.intro-video-box .video-play-button a i{
	font-size: 30px;
}

.donar-company-slider{
	margin-top: 30px;
}

.donar-company-slider .swiper-wrapper{
	cursor: pointer;
	align-items: center;
}

.donar-company-logo img{
	width: 100%;
	max-width: 200px;
	max-height: 40px;
}

.donate-box{
	position: relative;
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 20px;
	z-index: 1;
}

.donate-value-box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.donate-form .donate-value{
	width: calc(33.33% - 6.66px);
}

.donate-form .form-control{
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	box-shadow: none;
	outline: none;
	padding: 17px 30px;
}

.donate-form .form-control::placeholder{
	color: var(--primary-color);
	font-weight: 700;
}

.donate-value-box .donate-value input{
	position: absolute;
	left: -9999px;
}

.donate-value-box .donate-value label{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 400;
	line-height: 1.2em;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box .donate-value input[type="radio"]:hover+label,
.donate-value-box .donate-value input[type="radio"]:focus+label,
.donate-value-box .donate-value input[type="radio"]:checked+label{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donate-box .donate-form .form-group-btn .btn-default{
	width: 100%;
	display: block;
	text-align: center;
	padding: 20px;
}

.donate-box .donate-form .form-group-btn .btn-default::before{
	display: none;
}

/************************************/
/***      14. How It Work css     ***/
/************************************/

.how-it-work{
	padding: 50px 0;
}

.how-it-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item{
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item:nth-child(even){
	flex-direction: column-reverse;
}

.how-it-work-image,
.how-it-work-content{
	width: 100%;
}

.how-it-work-image figure{
	display: block;
	border-radius: 30px;
}

.how-it-work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.866;
	object-fit: cover;
	border-radius: 30px;
}

.how-it-work-content{
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.how-it-work-content .icon-box{
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 30px;
	z-index: 1;
}

.how-it-work-content .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	z-index: 0;
}

.how-it-work-content .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-it-work-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-it-work-body p{
	margin: 0;
}

.section-footer-text.how-work-footer-text{
	margin-top: 60px;
}

.footer-about-flex {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap; /* allow wrapping on very small screens */
}

/* Left: Contact + Social */
.footer-contact-social {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Right: Map */
.footer-map {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-map img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 5px;
}

.footer-map .map-caption a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 5px;
  display: inline-block;
}

/* Footer Links Box */
.footer-links-box {
  width: calc(55% - 50px);
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* =============================
   Responsive Styles
============================= */

/* Large Tablets (992px–1199px) */
@media (max-width: 1199px) {
  .footer-about-flex {
    gap: 15px;
  }
  .footer-map img {
    max-width: 400px;
  }
}

/* Tablets (768px–991px) — keep side by side */
@media (max-width: 991px) and (min-width: 768px) {
  .footer-about-flex {
    flex-direction: row; /* side by side */
    gap: 15px;
  }
  .footer-map img {
    max-width: 300px;
  }
}

/* Mobile (<768px) — stack vertically */
@media (max-width: 767px) {
  .footer-about-flex {
    flex-direction: column;
    gap: 20px;
  }
  .footer-map img {
    max-width: 100%;
  }
  .footer-contact-social,
  .footer-map {
    width: 100%;
  }
  .footer-links-box {
    width: 100%;
    gap: 25px;
  }
  .footer-map .map-caption a {
    font-size: 14px;
  }
}

/************************************/
/***   15. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: url('../images/testimonial-bg-image.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	padding: 50px 0;
}

.testimonials-image{
	position: relative;
	padding-right: 0px;
}

.testimonials-img figure{
	display: block;
	border-radius: 30px;
}

.testimonials-img img{
	width: 100%;   
	object-fit: cover;
	border-radius: 30px;
}

.helthcare-support-circle{
	position: absolute;
	top: 60px;
	right: 0;
	z-index: 1;
}

.helthcare-support-circle a{
	display: inline-block;
}

.helthcare-support-circle img{
	width: 100%;
	max-width: 180px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.drmlrf-slide-box{
	position: absolute;
	right: 0;
	bottom: 40px;
	background: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 20px 0px #0000000D;
	overflow: hidden;
	animation: clientreviewobject 3s infinite linear alternate;
	z-index: 1;
}

@keyframes clientreviewobject{
	50%{
		right: 45px;
	}
}

.drmlrf-slide-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.drmlrf-slide-box:hover:before{
	top: auto;
    height: 100%;
}

.drmlrf-slide-box h2{
	position: relative;
	color: var(--accent-color);
	font-size: 50px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.drmlrf-slide-box p{
	position: relative;
	text-transform: uppercase;
	margin: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.drmlrf-slide-box:hover h2,
.drmlrf-slide-box:hover p{
	color: var(--white-color);
}

.testimonials-content{
	margin-left: 20px;
}

.testimonial-slider .swiper-wrapper{
	cursor: pointer;
}

.testimonial-item{
	background-color: var(--white-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.author-info{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 20px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
}

.author-image img{
	max-width: 60px;
	border-radius: 50%;
}

.author-content{
	width: calc(100% - 80px);
}

.author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating{
	text-align: right;
}

.testimonial-rating i{
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-content p{
	margin: 0;
}

.testimonial-slider .testimonial-pagination{
    text-align: center;
	margin-top: 40px;
	padding-bottom: 4px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 8px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border-color: var(--accent-color);
	height: 24px;
	width: 24px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/************************************/
/***      16. Our Gallery css     ***/
/************************************/

.gallery-style a {
    color: #000 !important;   /* black */
    text-decoration: none;    /* remove underline */
}

.gallery-style a:hover,
.gallery-style a:focus {
    color: #000;              /* keep black on hover */
    text-decoration: none;
}

.our-gallery{
	padding: 30px 0 0px;
}

.our-gallery .container-fluid{
	padding: 0;
}

.our-gallery-nav{
	text-align: center;
	margin-bottom: 40px;
}

.our-gallery-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;margin: 0;
}

.our-gallery-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--text-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-gallery-nav ul li a:before{
    content: '';
    position: absolute;
    top: 5px;
    right: -34px;
	background-color: var(--divider-color);
	border-radius: 50%;
	height: 8px;
	width: 8px;
}

.our-gallery-nav ul li:last-child a:before{
	display: none;
}

.our-gallery-nav ul li a.active-btn,
.our-gallery-nav ul li a:hover{
	color: var(--accent-color);
}

.gallery-item-boxes{
	display: flex;
	flex-wrap: wrap;
	left: 1px;
}



.gallery-item-box figure{
	display: block;
	width: 100%;
}

.gallery-item-box img{
	width: 100%;
	aspect-ratio: 1 / 0.921;
	object-fit: fill;
}

/************************************/
/***       17. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 20px 0 20px;
}

.post-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 0px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-item-header{
	    height: 80px;
	margin-bottom: 30px;
}

.post-item-meta{
	margin-bottom: 15px;
}

.post-item-meta ul{
	list-style: none;
	margin: 0;
	padding: 0;
} 

.post-item-meta ul li{
	color: var(--accent-color);
	text-transform: capitalize;
}

.post-item-content h2{
	font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
}

.post-item-content h2 a{
	color: inherit;
}

.post-featured-image{
	margin-bottom: 30px;
}

.post-featured-image a{
    display: block;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

/************************************/
/***        18. Footer css        ***/
/************************************/

.main-footer{
    background: url(../images/footer-bg.png), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 50px 0 0;
}

.main-footer-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 100px;
}

.footer-about{
	position: relative;
	width: calc(45% - 50px);
}

.footer-about::before{
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 161px;
}

.footer-contact-detail{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.footer-contact-item {
    width: calc(100% - 15px);
}

.footer-contact-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 15px;
}

.footer-contact-item h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-contact-item h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item h3 a:hover{
	color: var(--accent-color);
}

.footer-contact-item h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item h5 a:hover{
	color: var(--accent-color);
}

.footer-social-links{
	margin-top: 30px;
}

.footer-social-links h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover{
	color: var(--primary-color);
	background: var(--white-color);
}

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links-box{
	width: calc(55% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.newsletter-form{
	width: 100%;
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: calc(100% - 56px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i{
	font-size: 24px;
	padding: 0 2px 2px 0;
	transition: all 0.4s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover i{
	transform: rotate(25deg);
}

.footer-links{
	width: calc(35% - 33.33px);
}


.footer-links.footer-service-links{
	width: calc(30% - 33.33px);
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
}

.footer-copyright{
	    background-color: var(--dark-divider-color);
    padding: 10px 0;
    margin-top: 10px;
}

.copyright-text{
	text-align: center;
}

.copyright-text p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 0;
}
..footer-contact-item h5 a:hover {
    color: #FF6D00;
    transition: all 0.4s ease-in-out;
}
/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header {
    position: relative;
    width: 100%;
    display: inline-block;
    line-height: 0;
    overflow: hidden;
}

/* Header Image */
.header-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay Container */
.header-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;       /* bottom */
    justify-content: flex-start; /* left */
    padding: 45px 60px;
}

/* Dark overlay for image readability */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

/* Header Content Box */
.page-header-box {
    max-width: 680px;
    padding: 10px 25px;
    color: #fff;
    z-index: 3;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0) 100%
    );
    border-left: 5px solid var(--accent-color);
}

/* Page Title */
.page-header-box h1 {
    font-size: 24px;     /* reduced from 48px */
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.25;
    color: #fff;
}

.page-header-box h1 span {
    font-weight: 700;
    color: var(--accent-color);
}

/* Breadcrumb */
.page-header-box .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Breadcrumb Items */
.page-header-box ol li.breadcrumb-item {
    font-size: 14px;     /* reduced from 16px */
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
}

/* Breadcrumb Separator */
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 5px;
    color: var(--white-color);
    margin: 0 8px;
}

@media (max-width: 991px) {
    .header-overlay {
        padding: 20px;
        align-items: flex-end;     /* bottom */
        justify-content: center;   /* center horizontally */
        text-align: center;
    }

    .page-header-box {
        max-width: 100%;
        padding: 10px 16px;
        background: rgba(0, 0, 0, 0.7);
        border-left: none;         /* remove left accent bar */
    }

    .page-header-box h1 {
        font-size: 16px;
        line-height: 1.3;
    }

    .page-header-box ol {
        justify-content: center;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 13px;
    }
}

.page-header-box .breadcrumb-item + .breadcrumb-item::before {
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 5px;
    color: var(--white-color);
    margin: 0 10px;          /* spacing fix */
    position: relative;
    top: -1px;              /* vertical alignment fix */
}

/* Ensure breadcrumb items don’t collapse */
.page-header-box .breadcrumb {
    gap: 0;
}

.page-header-box .breadcrumb-item {
    display: flex;
    align-items: center;
}

.our-approach{
	padding: 0px 0;
	background: url('../images/our-service-bg.svg'), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.our-approach-box-content{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 50px;
}

.our-approach-content{
	width: 100%;
	padding-bottom: 0px;
}

.our-approach-image{
	width: 100%;
}

.our-approach-image figure{
	display: block;
	border-radius: 30px;
}

.our-approach-image img{
	width: 100%;
    aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.mission-vision-box{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 970px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px -10px 40px 5px #00000005;
	padding: 50px;
	overflow: hidden;
	z-index: 2;
}

.mission-vision-item{
	position: relative;
    width: calc(33.33% - 53.33px);
}

.mission-vision-item:before{
	content: '';
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    bottom: 0;
    right: -40px;
    height: calc(100% - 30px);
    width: 1px;
    background: var(--divider-color);
}

.mission-vision-item:nth-child(3n + 3):before{
	display: none;
}

.mission-vision-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.mission-vision-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.mission-vision-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.mission-vision-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p{
	margin: 0;
}

.how-we-help{
	position: relative;
	padding: 30px 0;
}

.how-we-help:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 0 30px 30px 0;
    height: 100%;
    width: 55%;
    z-index: -1;
}

.how-we-help-content .section-title h3,
.how-we-help-content .section-title h2,
.how-we-help-content .section-title p{
	color: var(--white-color);
}

.how-we-help-body{
	margin-bottom: 40px;
}

.how-we-help-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.how-we-help-body ul li{
	background: url('../images/icon-check.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.how-we-help-body ul li:last-child{
	margin-bottom: 0;
}

.how-we-help-btn .btn-default:after{
	background: var(--white-color);
}

.how-we-help-btn .btn-default:hover:before{
	filter: brightness(0) invert(0);
}

.how-we-help-btn .btn-default:hover{
	color: var(--primary-color);
}

.how-help-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-help-item{
	width: calc(50% - 15px);
	background-color: #dadada;
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	text-align: center;
}

.how-help-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.how-help-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.how-help-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-help-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-help-item-content p{
	margin: 0;
}

.our-fact {
    background-color: var(--secondary-color);
    padding-top: 50px;
	   padding-bottom: 0px;
    position: relative;
	
	    background: linear-gradient(
        120deg,
        #f2f6fb,
        #e6eef8,
        #f2f6fb
    );
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
  
	
}

.fact-row {
   margin-bottom: 50px;
}



.our-fact-image figure{
	display: block;
	border-radius: 30px;
}

.our-fact-image img{
	width: 100%;
    aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.our-fact-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fact-counter-list,
.fact-body-image{
	width: calc(50% - 15px);
}

.fact-counter-item{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 35px 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.fact-counter-item:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.fact-counter-item:hover:before{
	top: auto;
    height: 100%;
}

.fact-counter-item:last-child{
	margin-bottom: 0;
}

.fact-counter-item h2{
	position: relative;
	width: calc(58% - 5px);
	font-size: 60px;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.fact-counter-item:hover h2{
	color: var(--white-color);
}

.fact-counter-item p{
	position: relative;
	width: calc(42% - 5px);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	margin: 0;
	z-index: 1;
}

.fact-counter-item:hover p{
	color: var(--white-color);
}

.fact-body-image figure{
	display: block;
	height: 100%;
	border-radius: 30px;
}

.fact-body-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 30px;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.team-image {
  margin-bottom: 20px;
  max-width: 180px;  /* limit the container width */
  margin-left: auto;
  margin-right: auto;
}

.team-image a,
.team-image a figure {
  display: block;
  border-radius: 20px;
  cursor: pointer;
}

/* Target the actual image inside .team-image */
.team-image img {
  width: 100%;      /* make image fill container width */
  height: auto;     /* maintain aspect ratio */
  border-radius: 20px; /* same rounded corners as figure */
  object-fit: cover;  /* cover nicely if aspect ratio differs */
  display: block;
}

/* Responsive smaller sizes */
@media (max-width: 768px) {
	 .our-fact {
        padding-top: 50px!important;
    }
  .team-image {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .team-image {
    max-width: 180px;
  }
}

.team-image a,
.team-image a figure{
	display: block;
	border-radius: 20px;
	cursor: pointer;
}

.team-image a img{
		width: 100%;
	height: auto;
	object-fit: contain; /* or remove this */
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image a img{
	transform: scale(1.1);
}

.team-content{
	text-align: center;
	margin-bottom: 15px;
}

.team-content h3{
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-faqs{
	padding: 100px 0;
}

.faq-accordion .accordion-item{
	background: var(--white-color);
    border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 40px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f107';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 900;
    line-height: normal;
    color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(-90deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	padding: 18px 40px 18px 20px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
	margin: 0;
}

.faqs-image{
	position: relative;
	padding-right: 145px;
	margin-left: 30px;
}

.faqs-image:before{
	content: '';
	position: absolute;
	right: 80px;
	bottom: 40px;
	width: 30px;
	height: 185px;
	background-color: #9c3d16;
	border-radius: 100px;
}

.faqs-img-1,
.faqs-img-2{
	border-radius: 30px;
	overflow: hidden;
} 

.faqs-img-1 figure,
.faqs-img-2 figure{
	display: block;
}

.faqs-img-1 img,
.faqs-img-2 img{
	width: 100%;
	object-fit: cover;
}

.faqs-img-2{
	max-width: 302px;
	position: absolute;
	top: 140px;
	right: 0;
	border: 8px solid var(--white-color);
	border-radius: 30px;
	z-index: 1;
}

.faqs-img-1 img{
	aspect-ratio: 1 / 1.614;
}

.faqs-img-2 img{
	aspect-ratio: 1 / 1.1;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.why-choose-us.service-why-choose-us{
	background-color: var(--secondary-color);
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-sidebar-catagery-list{
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-bottom: 60px;
	box-shadow: 0px -10px 40px 5px #00000005;
	overflow: hidden;
}

.page-sidebar-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 15px 20px;
}

.page-sidebar-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-sidebar-catagery-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.page-sidebar-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-sidebar-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.page-sidebar-catagery-list ul li a:hover{
    color: var(--primary-color);
}

.page-sidebar-catagery-list ul li a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url(../images/arrow-text.svg) no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
    transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.page-sidebar-catagery-list ul li a:hover:before{
	filter: brightness(0) invert(0);
}

.sidebar-cta-box{
	position: relative;
	background-image: url(../images/sidebar-cta-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 30px;
	text-align: center;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.sidebar-cta-box .icon-box,
.sidebar-cta-content{
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.sidebar-cta-box .icon-box img{
	width: 100%;
	max-width: 92px;
}

.sidebar-cta-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.sidebar-cta-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.service-feature-image{
	margin-bottom: 40px;
}

.service-feature-image figure{
	display: block;
	border-radius: 30px;
}

.service-feature-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.598;
	border-radius: 30px;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 50px;
	margin-bottom: 20px;
}

.service-entry ul{
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 30px;
    list-style: none;
	padding: 40px;
    margin: 40px 0;
}

.service-entry ul li{
	background: url(../images/icon-check-dark.svg) no-repeat center left;
    background-size: 26px auto;
	width: calc(33.33% - 20px);
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
	padding-left: 30px;
}

.bringing-quality-box,
.service-entry-content-list,
.service-entry-steps{
	margin-top: 60px;
}

.service-entry-content-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-entry-content-item{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-content-item:nth-child(even){
	flex-direction: row-reverse;
}

.service-entry-image,
.service-entry-content-box{
	width: calc(50% - 15px);
}

.service-entry-image figure{
	display: block;
	border-radius: 30px;
}

.service-entry-image img{
	width: 100%;
	border-radius: 30px;
	aspect-ratio: 1 / 0.66;
	border-radius: 30px;
}

.service-entry-content-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.service-entry-content-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.service-entry-content-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.service-entry-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-entry-step-list{
	margin-top: 10px;
}

.service-entry-step-item{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 8px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.service-entry-step-item::before{
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5b0b6b;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-entry-step-item.active::before,
.service-entry-step-item:hover::before{
    height: 100%;
    top: 0;
    bottom: auto;
}

.service-entry-step-item:last-child{
	margin-bottom: 0;
}

.service-entry-step-box{
	position: relative;
	width: 100%
	display: flex;
	z-index: 1;
}

.service-entry-step-no{
	margin-right: 30px;
}

.service-entry-step-no h2{
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content h3{
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-entry-step-item.active .service-entry-step-content p,
.service-entry-step-item:hover .service-entry-step-content p,
.service-entry-step-item.active .service-entry-step-no h2,
.service-entry-step-item:hover .service-entry-step-no h2,
.service-entry-step-item.active .service-entry-step-content h3,
.service-entry-step-item:hover .service-entry-step-content h3{
	color: var(--white-color);
}

.service-entry-step-item .icon-box{
	position: relative;
	display: inline-block;
	margin-left: 15px;
	padding-bottom: 5px;
}

.service-entry-step-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-item.active .icon-box:before,
.service-entry-step-item:hover .icon-box:before{
	background: var(--white-color);
	opacity: 50%;
}

.service-entry-step-item .icon-box img{
	    border-radius: 8%;
    background-color: #794a22;
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
    box-shadow: white 5px 5px;
}

/************************************/
/***     22. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 10px 50px 50px;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: #c49f30;
    color: var(--white-color);
}

/************************************/
/***      23. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 0px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 40px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	padding-bottom: 0px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.455em;
}

.post-entry h1{
	font-size: 63px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 24px;
}

.post-entry h5{
	font-size: 22px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600; 
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
    position: relative;

    font-weight: 500;
  
 
   margin-top: 5px;
    margin-bottom: 0;
	
	font-size: 15px;
    line-height: 1.65;
    color: #444;
   
	
	
	
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 25px;
    background-size: 55px;
	border-radius: 30px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-family: var(--accent-font);
    font-size: 22px;
	font-weight: 700;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;    
    color: #000000;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}
.our-fact-content p {
    color: #222;  
    font-size: 16px;
    line-height: 1.8;
}

/************************************/
/***     24. Projects Page css    ***/
/************************************/

.page-programs{
	padding: 100px 0 70px;
}

/************************************/
/***    25. Project Single css    ***/
/************************************/

.page-program-single{
	padding: 30px 0;
}

.program-feature-image{
	margin-bottom: 40px;
}

.program-feature-image figure{
	display: block;
	border-radius: 30px;
}

.program-feature-image img{
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry{
	margin-bottom: 60px;
}

.program-entry h2{
	font-size: 50px;
	margin-bottom: 20px;
}

.program-entry p{
	margin-bottom: 20px;
}

.program-entry p:last-child{
	margin-bottom: 0;
}

.program-entry ul{
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
    list-style: none;
	padding: 0;
    margin: 40px 0 0 0;
}

.program-entry ul li{
	width: calc(50% - 15px);
	background: url(../images/icon-check-dark.svg) no-repeat;
	background-position: center left;
    background-size: 26px auto;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
	padding-left: 30px;
}

.building-stability-box,
.program-why-choose{
	margin-top: 60px;
}

.program-entry-video{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	text-align: left;
	margin: 40px 0;
}

.program-entry-video-item{
	position: relative;
	width: calc(50% - 15px);
}

.program-entry-video-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.program-entry-video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 30%;
	z-index: 1;
}

.program-entry-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry-video-item .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.program-entry-video.intro-video-box .video-play-button a:before,
.program-entry-video.intro-video-box .video-play-button a:after{
    top: -35%;
    left: -35%;
}

.program-entry-video-item .video-play-button a{
	height: 60px;
	width: 60px;
}

.program-entry-video-item .video-play-button a i{
    font-size: 26px;
}

.program-why-choose-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.program-why-choose-item{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.program-why-choose-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.program-why-choose-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.program-why-choose-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.program-why-choose-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.program-why-choose-content p{
	margin: 0;
}

.section-footer-text.program-why-choose-footer{
	margin-top: 40px;
}

/************************************/
/***      26. Team Page css       ***/
/************************************/

.page-team{
	padding: 50px 0 0px;
}

/************************************/
/***      27. Team Single css     ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.page-team-single-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 100px 60px;
}

.team-member-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-member-image,
.team-member-content{
	width: calc(50% - 30px);
}

.team-member-image figure{
	display: block;
	border-radius: 20px;
}

.team-member-image img{
	width: 100%;
    aspect-ratio: 1 / 1.06;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-info{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.team-member-info .section-title{
	margin-bottom: 0;
}

.team-member-info .section-title p{
	text-transform: capitalize;
	margin-top: 10px;
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.member-social-list ul li{
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child{
	margin-right: 0;
}

.member-social-list ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover{
	background: var(--primary-color);
}

.member-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.member-content-body{
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 30px;
}

.member-content-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-content-body ul li{
	font-family: var(--accent-font);
	font-size: 20px;
    font-weight: 600;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
	justify-content: space-between;
    margin-bottom: 15px;
}

.member-content-body ul li:last-child{
    margin-bottom: 0;
}

.member-content-body ul li span{
	font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
	display: inline-block;
    width: 80%;
}

.member-about-nav{
	margin-bottom: 30px;
}

.member-about-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 10px 0;
    padding: 0;
    margin: 0;
	border-bottom: 2px solid var(--divider-color);
}

.member-about-nav ul li{
    display: inline-block;
	width: 33.33%;
}

.member-about-nav ul li .nav-link{
	position: relative;
	width: 100%;
    background: transparent;
	border: none;
    color: var(--text-color);
	font-family: var(--accent-font);
	font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
	padding: 0 5px 20px 5px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.member-about-nav ul li .nav-link.active,
.member-about-nav ul li .nav-link:hover{
    background: transparent;
    color: var(--accent-color);
}

.member-about-nav ul li .nav-link::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    background: var(--accent-color);
    width: 0;
    height: 3px;
    transition: all 0.4s ease-in-out;
}

.member-about-nav ul li .nav-link.active:before,
.member-about-nav ul li .nav-link:hover:before{
	width: 100%;
    left: 0;
    right: auto;
}

.member-about-content .section-title{
	margin-bottom: 0;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
}

.skill-data .skill-no{
	color: var(--primary-color);
	font-size: 16px;
	margin-left: 25px;
}

.skill-progress{
	position: relative;
	background: var(--secondary-color);
	border-radius: 99px;
	width: 100%;
	height: 16px;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.team-member-experience{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.team-experience-box,
.team-contact-form{
	width: calc(50% - 15px);
}

.team-experience-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-experience-body ul li{
	background: url('../images/icon-check-dark.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	width: calc(50% - 15px);
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
}

.team-contact-form{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 40px;
}

/************************************/
/***   28. Testimonial Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

/************************************/
/***    29. Image Gallery css     ***/
/************************************/

.page-gallery{
	padding: 10px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: pointer;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
    width: 100%;
    aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 10px 0 70px;
}

.video-gallery-image{
	overflow: hidden;
	height: auto;	
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: pointer;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
    aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}

.page-video-gallery .program-item {
    padding: 0;
    border: none; /* optional if you don't want border in gallery */
    box-shadow: none; /* optional if you want a clean gallery look */
	    margin-bottom: 30px;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs-accordion{
	margin-bottom: 60px;
}

.page-faqs-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 0px 0;
}

.contact-info-box{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px 80px;
	box-shadow: 0px -10px 40px 5px #00000005;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
}

.contact-info-item{	
	position: relative;
	display: flex;
	align-items: start;
}

.contact-info-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -50px;
	height: 100%;
	width: 1px;
	background-color: var(--divider-color);
}

.contact-info-item:last-child:before{
	display: none;
}

.contact-info-item .icon-box{
	position: relative;
	margin-right: 20px;
	padding-bottom: 5px;
}

.contact-info-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.contact-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.contact-info-content{
	width: calc(100% - 70px);
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p{
	margin: 0;
}

.contact-info-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover{
	color: var(--primary-color);
}

.contact-form-section .container-fluid{
	padding: 0;
}

.contact-info-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  align-items: flex-start;
}

.contact-info-content a {
  word-break: break-word;
  display: inline-block;
}

.contact-info-content {
  flex: 1;
  min-width: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height: 100%;
}

.contact-form-box{
	background: var(--secondary-color);
	padding: 6.25vw;
}

.contact-form .form-control{
	font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background: var(--white-color);
    border: 1px solid #020d1929;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}


.page-contact-us {
  padding: 60px 0;
}

.contact-info-box {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 10px 40px #00000008;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
   border-bottom: grey dashed 1px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 12px;
  align-items: flex-start;
}

.contact-info-item .icon-box img {
  max-width: 45px;
}

.contact-info-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-form-box {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}

.google-map-iframe iframe {
  border-radius: 0;
  height: 350px;
}

@media (max-width: 991px) {
  .contact-form-box {
    padding: 30px;
  }
}
.media .position-relative {
    padding-bottom: 12px;
}

.event-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6em;
  max-height: 3.2em;          /* 1.6em × 2 lines */
}




/************************************/
/***     33. Donation Page css    ***/
/************************************/

.page-donation{
	padding: 50px 0;
}

.donation-box{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
   padding: 50px 120px;
}

.campaign-donate-form .form-control{
	color:  var(--text-color);
	font-weight: 400;
}

.campaign-donate-form .form-control::placeholder{
	color: var(--text-color);
	font-weight: 400;
}

.campaign-donate-value .donate-value-box{
	gap: 15px;
}

.campaign-donate-form .donate-value{
	width: calc(16.66% - 12.5px);
}

.donate-payment-method{
	margin-bottom: 40px;
}

.donate-payment-method .section-title,
.donar-personal-info .section-title{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.donate-payment-type{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.donate-payment-type .payment-method{
	display: flex;
	align-items: center;
}

.donate-payment-type .payment-method input{
	height: 24px;
	width: 24px;
}

.payment-method label{
	text-transform: capitalize;
	padding-left: 10px;
}

/************************************/
/***    34. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      35. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 16px 50px 16px 20px;
	}
	
	.btn-default::before{
		transform: translate(-20px, -50%);
	}
	
	.btn-default:hover::before{
		transform: translate(-17px, -50%);
	}

	.readmore-btn{
		padding-right: 35px;
	}
	
	.readmore-btn::before{
		width: 26px;
		height: 26px;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.contact-now-box{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 26px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 10px;
		margin-left: 0;
	}

	.hero-content{
		margin-right: 0px;
	}
	
	
	.hero-content {
	
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 20px;
  width: 90%;
  color: var(--white-color);
}

.hero-body {
  display: flex;
  flex-direction: column;     /* stack buttons vertically if needed */
  align-items: center;        /* center horizontally */
  gap: 15px;                  /* optional spacing between buttons */
  justify-content: center;    /* vertical centering if height is constrained */
}

.hero-content .section-title {
  margin-bottom: 40px;
}
	
	

	.hero {
  padding: 0;
}
	.hero.hero-slider-layout .hero-slide{
		padding: 0px 0 0px;
	}
	
	.hero.hero-slider-layout .hero-pagination {
        display: none;
        bottom: 30px;
        padding-left: 15px;
    }

	.hero-content .section-title,
	.hero-body{
		
		margin-bottom: 40px;
	}

	.hero-list ul li{
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 30px;
	}

	.hero-help-families{
		max-width: 100%;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 76%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-img-2{
		border-width: 10px;
	}

	.need-fund-box{
		max-width: 135px;
		padding: 15px;
		bottom: 10px;
	}

	.need-fund-box img{
		max-width: 50px;
	}

	.need-fund-box p{
		font-size: 13px;
	}

	.about-support-box .icon-box img{
		max-width: 45px;
	}

	.helped-fund-img{
		margin-bottom: 15px;
	}

	.helped-fund-img figure{
		max-width: 100px;
	}

	.helped-fund-content h2{
		font-size: 24px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		border-radius: 20px;
		padding: 30px;
	}

	.service-content,
	.service-image{
		margin-bottom: 0px;
	}
	
	.service-content h3{
		margin-bottom: 10px;
	}

	.service-image figure{
		max-width: 160px;
	}

	.section-footer-text{
		margin-top: 20px;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do-content{
		margin-bottom: 30px;
	}

	.what-we-item{
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.what-we-item .icon-box{
		margin-right: 20px;
	}

	.what-we-item .icon-box:before{
		width: 32px;
		height: 32px;
	}

	.what-we-item .icon-box img{
		max-width: 60px;
	}

	.what-we-item-content{
		width: calc(100% - 80px);
	}

	.what-we-do-images{
		padding-left: 110px;
	}

	.what-we-do-img-1 img{
        aspect-ratio: 1 / 1.05;
    }

	.what-we-do-img-2{
		max-width: 220px;
	}
	
	.donate-now-box{
		left: 30px;
	}
	
	.our-causes{
		padding: 50px 0 20px;
	}

	.causes-item{
		border-radius: 20px;
	}

	.causes-image,
	.causes-content{
		margin-bottom: 20px;
	}

	.causes-image figure{
		border-radius: 20px;
	}

	.causes-image img{
		aspect-ratio: 1 / 0.75;
		border-radius: 20px;
	}

	.causes-button .btn-default{
		padding: 16px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-images{
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}

	.why-choose-image-2{
		max-width: 220px;
	}

	.why-choose-content{
		margin-left: 0px;
	}

	.why-choose-list ul{
		gap: 20px;
	}

	.why-choose-list ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
		padding-left: 30px;
	}

	.why-choose-counters{
		gap: 30px 40px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.why-choose-counter-item{
		width: calc(33.33% - 26.67px);
	}

	.why-choose-counter-item::before{
		right: -20px;
	}

	.why-choose-counter-item h2{
		font-size: 38px;
	}

	.our-program{
		padding: 50px 0;
	}

	.program-item{
		border-radius: 20px;
		padding: 30px;
	}

	.program-image,
	.program-content{
		margin-bottom: 20px;
	}

	.our-program .section-footer-text{
		margin-top: 20px;
	}

	.scrolling-ticker-box{
		--gap: 30px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		margin-right: 30px;
	}
	
	.scrolling-ticker-box .scrolling-content span{
		font-size: 70px;
	}

	.our-features{
		padding: 50px 0;
	}

	.our-features-item{
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-features-item:nth-child(even){
		flex-direction: row-reverse;
	}

	.our-features-image,
	.our-features-content{
		width: calc(50% - 15px);
	}

	.our-features-image figure{
		border-radius: 20px;
	}

	.our-features-image img{
		aspect-ratio: 1 / 0.72;
		border-radius: 20px;
	}

	.our-features-body{
		width: calc(100% - 75px);
	}

	.our-features-body h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.our-features-content .icon-box:before{
		width: 33px;
		height: 33px;
	}

	.our-features-content .icon-box img{
		max-width: 60px;
	}

	.donate-now{
		padding: 80px 0;
	}

	.intro-video-box{
		margin: 0 0 50px 0;
	}

	.donar-company-slider{
		margin-top: 80px;
	}

	.donar-company-logo img{
		max-width: 180px;
	}

	.donate-box{
		border-radius: 20px;
		padding: 30px;
	}

	.donate-value-box .form-control{
		padding: 14px 25px;
	}

	.donate-value-box .donate-value label{
		padding: 16px;
	}

	.donate-box .donate-form .form-group-btn .btn-default{
		padding: 16px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-it-work-item{
		width: 100%;
	}

	.how-it-work-image,
	.how-it-work-content{
		width: calc(50% - 15px);
	}

	.how-it-work-item:nth-child(even){
		flex-direction: row-reverse;
	}

	.how-it-work-image figure{
		border-radius: 20px;
	}

	.how-it-work-image img{
		aspect-ratio: 1 / 0.625;
		border-radius: 20px;
	}

	.how-it-work-content{
		border-radius: 20px;
	}

	.how-it-work-content .icon-box{
		margin-bottom: 20px;
	}

	.how-it-work-content .icon-box img{
		max-width: 50px;
	}

	.how-it-work-content .icon-box:before{
        width: 30px;
        height: 30px;
    }

	.section-footer-text.how-work-footer-text{
		margin-top: 40px;
	}

	.our-testimonials{
		background-position: bottom center;
		padding: 50px 0;
	}

	.testimonials-image{
		max-width: 80%;
		margin: 0 auto;
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.testimonials-img figure,
	.testimonials-img img{
		border-radius: 20px;
	}

	.testimonials-img img{
		aspect-ratio: 1 / 1.1;
	}

	.helthcare-support-circle img{
		max-width: 140px;
	}

	.drmlrf-slide-box{
		padding: 15px;
	}

	.drmlrf-slide-box h2{
		font-size: 38px;
	}

	.drmlrf-slide-box p{
		font-size: 14px;
	}

	.testimonials-content{
		margin-left: 0px;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.author-image{
		margin-right: 10px;
	}

	.author-content{
		width: calc(100% - 70px);
	}

	.testimonial-slider .testimonial-pagination{
		margin-top: 30px;
	}

	.our-gallery{
		padding: 50px 0 25px;
	}

	.our-gallery-nav{
		margin-bottom: 40px;
	}

	.our-gallery-nav ul{
		gap: 10px 50px;
	}

	.our-gallery-nav ul li a:before{
		right: -29px;
	}

	.gallery-item-box img{
		width: 100%;
		aspect-ratio: 1 / 0.88;
		object-fit: cover;
	}

	.our-blog{
		padding: 25px 0 20px;
	}

	.post-item{
		padding: 30px;
		border-radius: 20px;
	}

	.post-item-header,
	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-item-meta{
		margin-bottom: 10px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-about,
	.footer-links-box{
		width: 100%;
	}

	.footer-about::before{
		display: none;
	}

	.footer-logo{
		margin-bottom: 30px;
	}

	.footer-contact-item p,
	.footer-social-links h3{
		margin-bottom: 10px;
	}

	.footer-social-links{
		margin-top: 30px;
	}

	.footer-links-box{
		gap: 30px;
	}

	.newsletter-form .form-group .form-control{
		width: calc(100% - 46px);
		padding: 10px 20px;
	}

	.newsletter-form .form-group .newsletter-btn{
		width: 46px;
		height: 46px;
	}

	.newsletter-form .form-group .newsletter-btn i{
		font-size: 20px;
	}

	.footer-links{
		width: calc(30% - 20px);
	}

	.footer-links.footer-service-links{
		width: calc(40% - 20px);
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 40px;
	}

	.page-header{
		padding: 0 0 0px;
	}

	.page-header-box h1{
		font-size: 24px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.our-approach-box-content{
		padding-bottom: 0;
	}

	.our-approach-content{
		padding-bottom: 0;
	}

	.our-approach-content,
	.our-approach-image{
		width: 100%;
	}

	.mission-vision-box{
		position: initial;
		gap: 30px;
		border-radius: 20px;
		padding: 30px;
		margin-top: 30px;
	}

	.mission-vision-item{
		width: calc(33.33% - 20px);
	}

	.mission-vision-item:before{
		right: -15px;
	}

	.mission-vision-item .icon-box img{
		max-width: 45px;
	}

	.our-approach-image figure{
		border-radius: 20px;
	}

	.our-approach-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.how-we-help{
		padding: 50px 0;
	}

	.how-we-help:before{
		border-radius: 0 0px 20px 20px;
		height: 60%;
		width: 100%;
	}

	.how-help-item{
		border-radius: 20px;
	}

	.how-we-help-content{
		margin-bottom: 30px;
	}

	.how-we-help-body{
		margin-bottom: 30px;
	}

	.how-we-help-body ul li{
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.how-help-item .icon-box{
		margin-bottom: 20px;
	}

	.how-help-item .icon-box:before{
		width: 30px;
		height: 30px;
	}

	.how-help-item .icon-box img{
		max-width: 50px;
	}

	.our-fact{
		padding-top: 50px;
		padding-bottom: 0px;
	}

	.our-fact-image{
		margin-bottom: 30px;
	}

	.our-fact-image figure{
		border-radius: 20px;
	}

	.our-fact-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.fact-counter-item{
		padding: 25px 20px;
	}

	.fact-counter-item h2{
		font-size: 46px;
		width: calc(40% - 5px);
	}

	.fact-counter-item p{
		width: calc(60% - 5px);
	}

	.fact-body-image figure{
		border-radius: 20px;
	}

	.fact-body-image img{
		aspect-ratio: 1 / 0.6;
		border-radius: 20px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-item{
		border-radius: 20px;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-content{
		margin-bottom: 10px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 35px 14px 14px;
	}
	
	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 16px;
		right: 14px;
	}
	
	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 35px 14px 14px;
	}

	.faqs-image{
		max-width: 75%;
		margin: 0 auto;
		padding-right: 100px;
	}

	.faqs-image:before{
		right: 40px;
	}

	.faqs-img-1,
	.faqs-img-2{
		border-radius: 20px;
	}

	.faqs-img-2{
		max-width: 252px;
		top: 100px;
	}

	.faqs-img-1 img{
		aspect-ratio: 1 / 1.414;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.our-features.services-our-features{
		padding: 50px 0;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-sidebar-catagery-list{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-sidebar-catagery-list h3{
		padding: 15px 20px;
	}

	.page-sidebar-catagery-list ul{
		padding: 20px;
	}

	.sidebar-cta-box{
		border-radius: 20px;
		padding: 30px;
	}

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content{
		margin-bottom: 30px;
	}

	.sidebar-cta-box .icon-box img{
		max-width: 70px;
	}

	.service-feature-image,
	.service-entry{
		margin-bottom: 30px;
	}

	.service-feature-image figure{
		border-radius: 20px;
	}

	.service-feature-image img{
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.bringing-quality-box,
	.service-entry-content-list,
	.service-entry-steps{
		margin-top: 30px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}
	
	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul{
		gap: 20px;
		border-radius: 20px;
		padding: 30px;
		margin: 30px 0;
	}

	.service-entry ul li{
		width: calc(33.33% - 13.33px);
		background-size: 22px auto;
	}

	.service-entry-image figure,
	.service-entry-image img{
		border-radius: 20px;
	}

	.service-entry-content-box .icon-box img{
		max-width: 40px;
	}

	.service-entry-content-box .icon-box:before{
		width: 24px;
		height: 24px;
	}

	.service-entry-step-list{
		margin-top: 30px;
	}

	.service-entry-step-item{
		border-radius: 20px;
		padding: 20px;
	}

	.service-entry-step-box{
		width: calc(100% - 60px);
	}

	.service-entry-step-no{
		margin-right: 20px;
	}

	.service-entry-step-no h2{
		margin-bottom: 0;
	}

	.service-entry-step-item .icon-box img{
		max-width: 45px;
	}

	.service-entry-step-item .icon-box:before{
		width: 24px;
		height: 24px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.417em;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }

	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}
    
    .post-entry blockquote{
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 85px;
		border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

    .tag-links{
        font-size: 20px;
    }

    .post-tags .tag-links a{
		padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-programs{
		padding: 50px 0 20px;
	}

	.page-program-single{
		padding: 50px 0;
	}

	.program-feature-image,
	.program-entry{
		margin-bottom: 30px;
	}

	.program-feature-image figure{
		border-radius: 20px;
	}

	.program-feature-image img{
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.building-stability-box,
	.program-why-choose{
		margin-top: 30px;
	}

	.program-entry p{
		margin-bottom: 15px;
	}
	
	.program-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.program-entry ul{
		gap: 15px 20px;
		border-radius: 20px;
		margin-top: 30px;
	}

	.program-entry ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.program-entry-video{
		margin: 30px 0;
	}

	.program-entry-video-image figure,
	.program-entry-video-image img{
		border-radius: 20px;
	}

	.program-entry-video-image img{
		aspect-ratio: 1 / 0.74;
	}

	.program-why-choose-item .icon-box{
		margin-bottom: 20px;
	}

	.program-why-choose-item .icon-box:before{
		width: 28px;
		height: 28px;
	}

	.program-why-choose-item .icon-box img{
		max-width: 45px;
	}

	.section-footer-text.program-why-choose-footer{
		margin-top: 30px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.page-team-single-box{
		gap: 50px 30px;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.8;
	}

	.member-content-body{
		padding: 20px;
		margin-bottom: 30px;
	}

	.member-content-body ul li{
		margin-bottom: 10px;
	}

	.member-about-nav ul li .nav-link{
		padding: 0 5px 15px 5px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skillbar .skill-data{
		margin-bottom: 10px;
	}

	.team-experience-box,
	.team-contact-form{
		width: 100%;
	}

	.team-experience-body ul{
		gap: 15px 20px;
	}

	.team-experience-body ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.team-contact-form{
		padding: 30px;
		border-radius: 20px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-info-box{
		padding: 40px;
	}

	

	.contact-info-item:nth-child(2n + 2)::before{
		display: none;
	}

	.contact-info-item .icon-box{
		margin-right: 15px;
	}

	.contact-info-item .icon-box img{
		max-width: 45px;
	}

	.contact-info-content{
		width: calc(100% - 60px);
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.contact-form-box{
		padding: 50px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.page-donation{
		padding: 50px 0;
	}

	.donation-box{
		padding: 60px 30px;
		border-radius: 20px;
	}

	.campaign-donate-form .form-control{
		padding: 12px 20px;
	}

	.campaign-donate-form .donate-value label{
		padding: 12px;
	}

	.donate-payment-method{
		margin-bottom: 30px;
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.donate-payment-type .payment-method input{
		height: 20px;
		width: 20px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 1199px){
.responsive-menu,
    .navbar-toggle{
        display: block;
    }
}


@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}
	.hero-content .section-title h3.wow {
	text-align:center!important;	
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 90% !important; 
  display: block !important;
  line-height: 1.3 !important;
  
}

.hero-content {
margin-bottom:20px!important;	
position: absolute;	
top: 70%!important;	
left: 50%;	
transform: translate(-50%, -50%);	
z-index: 100000;
text-align: center;	
padding: 20px;	
width: 90%;	
color: var(--white-color);
}


	.section-title h3 {
	
  font-size: 12px; 
  margin-bottom: 10px!important;  
  display: block;
  width: 100%; /* or a smaller fixed width to force wrapping */
}

	.section-title h3::before{
		display:block;
	}

	.section-title h1{
		font-size: 28px;
	}
	

	.section-title h2{
		font-size: 26px;
	}	

	.video-play-button a{
		height: 25px;
		width: 25px;
	}
	
	 .hero-content .section-title h3 {
	 
margin-bottom:30px!important;
	 

	 }

	.video-play-button a i{
		font-size: 15px;
	}

	.hero::before{
		background: linear-gradient(270deg, rgba(2, 13, 25, 0.3) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
	}

	.hero-body{
		gap: 20px;
		justify-content: space-between;
	}

	.hero-list,
	.hero-help-families{
		width: 100%;
	}

	.hero-list:before{
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.hero-help-families h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.about-us-images{
		max-width: 100%;
		padding: 0 0 125px 70px;
	}

	.about-img-2{
		border-width: 5px;
		max-width: 210px;
	}

	.need-fund-box{
        max-width: 125px;
        padding: 6px;
        bottom: 5px;
    }

	.need-fund-box img{
        max-width: 35px;
		margin-bottom: 0;
    }

	.about-us-body-content,
	.helped-fund-item{
		width: 100%;
	}

	.about-support-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.helped-fund-item{
		padding: 0 20px 20px;
		max-width: 68%;
	}

	.helped-fund-img figure{
        max-width: 80px;
    }

	.helped-fund-content h2{
        font-size: 22px;
    }

	.helped-fund-content h3{
		font-size: 18px;
	}

	.service-item{
        padding: 25px 20px;
    }

	.service-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-image figure{
		max-width: 120px;
	}

	.section-footer-text{
        margin-top: 10px;
    }

	.section-footer-text p span{
		padding: 3px 8px;
	}

	.what-we-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.what-we-item .icon-box{
        margin-right: 10px;
    }

	.what-we-item .icon-box img{
        max-width: 50px;
    }

	.what-we-item-content{
        width: calc(100% - 60px);
    }

	.what-we-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.what-we-do-images{
        padding-left: 70px;
    }

    .what-we-do-img-1 figure{
		border-radius: 20px;
	}

    .what-we-do-img-1 img{
        aspect-ratio: 1 / 1.5;
		border-radius: 20px;
    }
	
	.what-we-do-img-2{
		max-width: 140px;
		bottom: 30px;
    }

	.donate-now-box{
		left: 15px;
        top: 15px;
    }
	
	.donate-now-box a{
		font-size: 16px;
		gap: 10px;
		padding: 20px 10px;
	}

	.donate-now-box a img{
		max-width: 20px;
	}

	.causes-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}	

	.why-choose-images{
		max-width: 100%;
		padding: 0 40px 30px 0;
	}

	.why-choose-image-2{
        max-width: 160px;
    }

	.why-choose-list ul{
        gap: 15px;
    }

	.why-choose-list ul li{
		width: 100%;
	}

	.why-choose-counters{
        gap: 20px;
        margin-top: 20px;
        padding-top: 20px;
    }

	.why-choose-counter-item{
        width: calc(33.33% - 13.33px);
    }

	.why-choose-counter-item::before{
        right: -10px;
    }

	.why-choose-counter-item h2{
        font-size: 26px;
    }

	.why-choose-counter-item p{
		font-size: 14px;
	}

	.program-item{
        padding: 20px;
    }

	.program-content h3{
		font-size: 16px;
	}
	
	

	.scrolling-ticker-box{
		--gap: 20px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		width: 35px;
		margin-right: 20px;
	}
	
	.scrolling-ticker-box .scrolling-content span{
		font-size: 40px;
	}

	.our-features-item:nth-child(even){
		flex-direction: column;
	}

	.our-features-image,
	.our-features-content{
        width: 100%;
    }

	.our-features-image img{
        aspect-ratio: 1 / 0.67;
    }

	.our-features-body{
		width: calc(100% - 60px);
	}

	.our-features-body h2{
		font-size: 26px;
		margin-bottom: 10px;
	}

	.our-features-body h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-features-content .icon-box img{
		max-width: 45px;
	}

	.our-features-content .icon-box:before{
		width: 25px;
		height: 25px;
	}

	.donate-now{
        padding: 50px 0;
    }

	.intro-video-box{
        margin: 0 0 40px 0;
    }

	.intro-video-box .video-play-button a{
		width: 60px;
		height: 60px;
	}

	.intro-video-box .video-play-button a:before,
	.intro-video-box .video-play-button a::after{
		top: -33%;
		left: -33%;
	}

	.intro-video-box .video-play-button a i{
		font-size: 25px;
	}

	.donar-company-slider{
        margin-top: 40px;
    }

	.donar-company-logo img{
        max-width: 140px;
    }

	.donate-box{
        padding: 20px;
    }

	.donate-form .form-control{
        padding: 10px 25px;
    }

	.donate-form .donate-value label{
		font-size: 14px;
        padding: 10px;
    }
	
	.how-it-work-item{
		gap: 20px;
	}

	.how-it-work-image,
	.how-it-work-content{
        width: 100%;
    }

	.how-it-work-content .icon-box img{
        max-width: 45px;
    }

	.how-it-work-body h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.testimonials-image{
		max-width: 100%;
		padding-right: 0px;
	}

	.helthcare-support-circle{
		top: 30px;
	}

	.helthcare-support-circle img{
        max-width: 100px;
    }

	.drmlrf-slide-box{
        padding: 12px;
		bottom: 20px;
    }

	.drmlrf-slide-box h2{
        font-size: 26px;
    }

	.testimonial-item{
		padding: 20px;
	}

	.author-info,
	.testimonial-rating{
		width: 100%;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-rating{
		text-align: left;
	}

	.testimonial-content p{
		font-size: 14px;
	}

	.our-gallery-nav{
        margin-bottom: 30px;
    }

	.our-gallery-nav ul{
        gap: 10px 40px;
    }

	.our-gallery-nav ul li a:before{
        right: -24px;
    }

	.gallery-item-boxes{
		left: 0;
	}

	.gallery-item-box{
		width: calc(50% - 0.2px);
	}

	.post-item{
		padding: 20px;
	}

	.post-item-header,
	.post-featured-image{
        margin-bottom: 15px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-logo{
        margin-bottom: 20px;
    }

	.footer-contact-item{
		width: 100%;
	}
	
	.footer-social-links h3,
	.footer-contact-item h3{
		font-size: 18px;
	}

	.footer-links,
	.footer-links.footer-service-links{
        width: 100%;
    }

	.footer-links h3{
        font-size: 18px;
		margin-bottom: 15px;
    }

	.footer-copyright{
        padding: 10px 0;
        margin-top: 30px;
    }

	.page-header-box h1{
		font-size: 16px;
	}

	.mission-vision-box{
		padding: 20px;
	}

	.mission-vision-item{
		width: 100%;
	}

	.mission-vision-item:before{
		width: 100%;
		height: 1px;
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
	}

	.mission-vision-item:nth-child(3n + 3):before{
		display: block;
	}

	.mission-vision-item:last-child:before{
		display: none;
	}

	.mission-vision-item .icon-box{
		margin-bottom: 10px;
	}

	.mission-vision-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.how-we-help:before{
        height: 44%;
    }

	.how-help-item{
		width: 100%;
	}

	.how-help-item .icon-box{
        margin-bottom: 15px;
    }

	.how-help-item .icon-box img{
        max-width: 45px;
    }

	.how-help-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}
	
	.our-fact-image img{
		aspect-ratio: 1 / 0.947;
	}

	.fact-counter-list,
	.fact-body-image{
		width: 100%;
	}

	.fact-counter-item h2{
        font-size: 30px;
        width: calc(30% - 5px);
    }

	.fact-counter-item p{
        width: calc(70% - 5px);
    }

	.fact-body-image figure,
	.fact-body-image img{
		height: auto;
	}

	.fact-body-image img{
        aspect-ratio: 1 / 0.98;
    }

	.team-content h3{
		font-size: 18px;
	}

	.team-content p{
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 12px 30px 12px 12px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 12px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px;
	}
	
	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faqs-image{
        max-width: 100%;
		padding-right: 75px;
    }

	.faqs-image:before{
		right: 30px;
		bottom: 15px;
		width: 20px;
		height: 100px;
	}

	.faqs-img-2{
		max-width: 170px;
		top: 60px;
		border-width: 4px;
	}

	.page-sidebar-catagery-list h3{
		font-size: 18px;
	}

	.page-sidebar-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-sidebar-catagery-list ul li a{
		padding-right: 25px;
	}

	.page-sidebar-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-box{
        padding: 20px;
    }

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content{
        margin-bottom: 20px;
    }

	.sidebar-cta-box .icon-box img{
        max-width: 60px;
    }

	.sidebar-cta-content p{
		margin-bottom: 10px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.65;
    }

	.service-entry h2{
        font-size: 26px;
    }

	.service-entry ul{
        gap: 15px;
        padding: 20px;
        margin: 20px 0;
    }

	.service-entry ul li{
        width: 100%;
    }

	.service-entry-content-item{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-content-box{
		width: 100%;
	}

	.service-entry-content h3{
		font-size: 18px;
	}

	.service-entry-step-list{
        margin-top: 20px;
    }

	.service-entry-step-item{
		border-radius: 12px;
		padding: 15px;
	}

	.service-entry-step-no{
        margin-right: 10px;
    }

	.service-entry-step-box{
        width: calc(100% - 48px);
    }

	.service-entry-step-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry-step-content p{
		font-size: 14px;
	}

	.service-entry-step-item .icon-box{
		margin-left: 10px;
	}

	.service-entry-step-item .icon-box img{
        max-width: 38px;
    }

	.service-entry-step-item .icon-box:before{
        width: 20px;
        height: 20px;
    }

	.post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 12px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.program-feature-image{
        margin-bottom: 20px;
    }

	.program-feature-image img{
        aspect-ratio: 1 / 0.65;
    }

	.program-entry h2{
        font-size: 26px;
    }

	.program-entry ul{
		margin-top: 20px;
    }

	.program-entry ul li{
        width: 100%;
    }

	.program-entry-video{
        margin: 20px 0;
    }

	.program-entry-video-item{
		width: 100%;
	}

	.program-entry-video-image img{
        aspect-ratio: 1 / 0.67;
    }

	.program-why-choose-list{
		gap: 20px;
	}

	.program-why-choose-item{
		width: 100%;
	}

	.program-why-choose-item .icon-box{
        margin-bottom: 15px;
    }	
	

	.program-why-choose-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 1.06;
	}

	.team-member-title,
	.member-social-list{
		width: 100%;
	}

	.member-social-list ul{
		text-align: left;
	}

	.member-content-body ul li{
		font-size: 18px;
	}

	.member-content-body ul li span{
		width: 65%;
	}

	.member-about-nav ul li .nav-link{
        padding: 0 16px 16px 16px;
    }

	.team-experience-body ul li{
		width: 100%;
	}

	.contact-info-box{
        padding: 20px;
    }

	.contact-info-item{
		width: 100%;
	}

	.contact-info-item::before{
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.contact-info-item:nth-child(2n + 2)::before{
		display: block;
	}

	.contact-info-item .icon-box:before{
		width: 25px;
		height: 25px;
	}

	.contact-info-item .icon-box img{
        max-width: 40px;
    }

	.contact-info-content{
        width: calc(100% - 55px);
    }

	.contact-info-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}

	.contact-form-box{
        padding: 30px 20px;
    }

	.donation-box{
		padding: 30px 20px;
	}

	.campaign-donate-form .form-control{
		padding: 12px 15px;
	}
	
	.campaign-donate-form .donate-value{
		width: calc(33.33% - 10px);
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.donate-payment-type .payment-method input{
		height: 16px;
		width: 16px;
	}
}

.gallery-img img {
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}

.gallery-img img:hover {
  transform: scale(1.03);
}

.gallery-caption h5 {
	 margin-top: 16px!important;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.our-gallery .gallery-item-boxes {
  visibility: visible;
}

.gallery-item-box {
  padding-bottom: 20px;
}

.gallery-item-box.pub img {
  object-fit: fill !important;        /* Show full image content */

}



.helped-fund-content p::before {
     content: "“";
    font-size: 28px;
    color: rgb(237 217 19);
    position: absolute;
    top: -10px;
    left: -4px;
    z-index: 0;
    font-family: Georgia, serif;
}

.helped-fund-content .quote-author {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
  color: #b30000;
  font-style: normal;
}

.bank-details-table {

  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  color: #fff;
}

.bank-details-table th,
.bank-details-table td {
      background-color: #494c342e;
    color: #292727;
    padding: 12px 15px;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bank-details-table th {
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  width: 35%;
}



.donar-company-slider h3.section-title {
	 text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
      color: #11007b !important;
}

.epicSwiper .swiper-slide {
  text-align: center;
}

.event-thumb-box {
  text-align: center;
}

.event-thumb-box img {
position: relative;
  filter: brightness(0.85);
  width: 224px; 
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 10px;
  border: 1px solid rgb(152 25 25 / 30%); /* light border for contrast */
}

.event-thumb-box p {
  font-size: 16px;
  color: #000; 
  margin: 0;
  line-height: 1.2;
}

.intro-video-box {
  margin-bottom: 30px;
}

.video-play-button {
  margin-bottom: 20px;
}

.vertical-divider {
    width: 2px;  
    
   height: 90%;
    margin: auto;
    background: linear-gradient(to bottom, #ffffff, #ff5722); /* white to deep orange */
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5); /* soft glow */
    border-radius: 2px;
}

.flip-card {
  perspective: 1000px;
  height: 220px;
  width: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease-in-out;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 215px;
  backface-visibility: hidden;
  border-radius: 12px;
  background: white;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flip-card-back {
  background: #f9f9f9;
  transform: rotateY(180deg);
 padding: 15px; /* This creates inner space */
  box-sizing: border-box;
  overflow: hidden; /* Prevent overflow */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

/* Critical fix for icon colors */
.flip-card-front .icon-box img {
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
  /* if needed, reset any inherited color */
  color: initial !important;
  fill: initial !important;
}

.flip-card-front .icon-box {
  color: #f7971e; /* Use the orange color your icons need */
}

.flip-card-front .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  z-index: 1; /* ensure container is above the circle */
}

.flip-card-front .icon-box:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 0; /* lower than icon-box itself */
  pointer-events: none; /* avoid blocking clicks */
}

.flip-card-front .icon-box img {
  position: relative;
  z-index: 2; /* above circle */
  max-width: 50px;
  height: auto;
  filter: none !important;
  backface-visibility: visible !important;
}

.flip-card {
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 8px rgba(247, 151, 30, 0.15);
}

/* Intensify border and shadow on hover */
.flip-card:hover {
  border-color: darken(var(--accent-color), 15%);
  box-shadow: 0 8px 20px rgba(247, 151, 30, 0.4);
}

/* Hover hint text always visible */
.hover-hint {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  user-select: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Arrow styling */
.hover-hint span {
  margin-left: 4px;
  font-weight: 700;
  font-size: 1.2rem;
}


.flip-card-back .mission-vision-content {
  width: 100%;
}

.section-title.section-title-large h2 {
  font-size: 22px;
  margin-bottom: 0;
  
}

.btn-outline {
    display: inline-block;
    font-size: 14px;
    padding: 6px 14px;
    text-decoration: none;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

.whatsapp-float {
        position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    background-color: #25D366;
    padding: 4px;
    border-radius: 50%;
   box-shadow: 0px 0px 0px 3px rgb(255 255 255 / 79%);
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
     width: 45px;
    height: 45px;
}
#btn-back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 9999;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #d93e7e;
  color: #fff;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
}
#btn-back-to-top:hover {
  background-color: #555;
}

.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Remove individual fixed positioning */
.whatsapp-float {
    position: static;
}

#btn-back-to-top {
    position: static;
}

.floating-actions {
    align-items: center; /* prevents width stretching */
}
html {
  scroll-behavior: smooth; /* enables smooth scrolling */
}

.page-photo-gallery {
    padding: 10px 0 70px;
}

.page-photo-gallery .program-item {
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
}

.flip-card.pub-card {
  perspective: 1000px;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card-front img.flip-img {
  width: 100%;
  height: 100%;
  object-fit: fill !important;
  display: block;
}

.flip-card-back {
  background-color: #e3f5f5;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flip-card-content {
  text-align: center;
}

.flip-card-content h5.pub-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #000;
}

.flip-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

/* Below the card title */
.program-body {
  margin-top: 10px;
}

.program-body h5 {
  font-size: 16px;
  margin: 0;
}

.program-body a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.program-body a:hover {
  color: #0056b3;
}

.mb-30
Specificity: (0,1,0)
 {
    margin-bottom: 30px;
}

.media {
    margin-top: 0;
}
.media {

	border-bottom: dashed 1px grey;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.width-40 {
    width: 40%;
}
.position-relative {
    position: relative;
}

.img-overlay-70

 {
    position: relative;
}

.img-opacity-hover {    
    display: block;
}

.img-overlay-70:before {
    opacity: 0.7; 
    content: "";
    height: 70%;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.img-opacity-hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(225, 225, 225, 0.2);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  
    transition: all 0.3s ease-out;
}

.topic-box-top-xs {
    position: absolute;
    top: 10px;
    left: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}
.topic-box-sm {
    display: inline-block;
    position: relative;
    color: #fff;
    height: 26px;
    padding: 0 15px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    z-index: 2;
}

.color-cod-gray:before {
    border-top: 8px solid #111;
    border-right: 8px solid transparent;
}
.topic-box-sm:before {
    z-index: 1;
    content: "";
    top: 0;
    right: -8px;
    position: absolute;
    width: 0;
    height: 0;
}
.media-body  {
    -ms-flex: 1;
    flex: 1;
}

.post-date-dark ul {
    line-height: 1;
	padding-left:0;
}

.post-date-dark ul li {
    display: inline-block;
    line-height: 1;
    margin-bottom: 12px;
    font-size: 14px;
    color: #111;
    margin-right: 15px;
}

.post-date-dark ul li span {
    float: left;
    font-weight: 700;
    margin-right: 8px;
    display: inline-block;
}

h3.title-semibold-dark
Specificity: (0,1,1)
 {
    font-weight: 600;
}

h3.size-lg {
    font-size: 18px;
}
.mb-15 {
    margin-bottom: 15px;
}

h3.title-semibold-dark a {
    color: #111;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.h3-mb-none-child h3, .p-mb-none-child p
Specificity: (0,1,1)
 {
    margin-bottom: 0;
}

.media .media-body.media-margin30 {
    margin-left: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
    .media-none--lg {
        display: block;
    }
	 .media-none--lg > div {
        width: 100%;
    }
	.media-none--lg .media-body.media-margin30  {
        margin-left: 0;
        margin-top: 15px;
}

}

.event-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.2em; /* Based on 1.6em line-height * 2 */
  line-height: 1.6em;
  font-size: 16px;
  color: #444;
}

.related-events-box {
    background: #fff;
    border-radius: 16px;
    padding: 0px 20px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.related-events-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #7b3202;
    padding: 12px 18px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin: 0px -20px 20px;
}

.related-event-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 14px;
}

.related-event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-event-item img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-event-info {
    font-size: 14px;
    line-height: 1.3em;
    color: #111;
    font-weight: 600;
}

.related-event-date {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    padding: 6px 14px;
    background: #0056b3;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #003d80;
    text-decoration: none;
}
.related-events-button {
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #ff6600;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
}
.btn-ftg-ptp-56 {
    display: inline-block;
    height: 5.6rem;
    line-height: 5.2rem;
    padding: 0 4rem;
    border: 2px solid #e53935;
    background-color: #e53935;
    text-transform: uppercase;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-ftg-ptp-56:hover {
    background-color: transparent;
    color: #e53935;
}
.btn-ftg-ptp-56:focus {
    outline: 0;
}
.btn-ftg-ptp-45 {
    display: inline-block;
    height: 4.5rem;
    line-height: 4.1rem;
    padding: 0 2.5rem;
    border: 2px solid #e53935;
    background-color: #e53935;
    text-transform: uppercase;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-ftg-ptp-45:hover {
    background-color: transparent;
    color: #e53935;
}
.btn-ftg-ptp-45:focus {
    outline: 0;
}
.btn-ftg-ptp-40 {
    display: inline-block;
    height: 40px;
    line-height: 36px;
    width: 100%;
    border: 2px solid #e53935;
    background-color: #e53935;
    text-transform: capitalize;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-ftg-ptp-40:hover {
    background-color: transparent;
    color: #e53935;
}
.btn-ftg-ptp-40:focus {
    outline: 0;
}
.btn-gtf-ltl-64 {
    display: inline-block;
    height: 6.4rem;
    line-height: 6rem;
    padding: 0 4rem;
    border: 2px solid #fff;
    background-color: transparent;
    text-transform: uppercase;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 700;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
    border-radius: 45px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-gtf-ltl-64:hover {
    background-color: #fff;
    color: #e53935;
}
.btn-gtf-ltl-64:focus {
    outline: 0;
}
.btn-gtf-dtp-50 {
    display: inline-block;
    height: 5rem;
    line-height: 4.8rem;
    padding: 0 3rem;
    border: 1px solid #dcdcdc;
    background-color: transparent;
    text-transform: capitalize;
    color: #111;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-gtf-dtp-50 i {
    color: #e53935;
    margin-right: 12px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-gtf-dtp-50:hover {
    border: 1px solid #e53935;
    background-color: #e53935;
    color: #fff !important;
}
.btn-gtf-dtp-50:hover i {
    color: #fff;
}
.btn-gtf-dtp-50:focus {
    outline: 0;
    color: #111;
}
.btn-ftf-dtp-52 {
    display: inline-block;
    height: 5.2rem;
    line-height: 5.2rem;
    padding: 0 4rem;
    background-color: #111;
    text-transform: capitalize;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.btn-ftf-dtp-52:hover {
    background-color: #e53935;
    color: #fff;
}
.btn-ftf-dtp-52:focus {
    outline: 0;
}

h3.title-medium-dark {
    font-weight: 500;
	margin: 0 0 20px;
}

.size-c22 {
    font-size: 22px;
}

.event-image-container {
  width: 100%;
  height: 335px;
  overflow: hidden;
  margin-bottom: 20px; /* or adjust as needed */
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:20px;
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .event-image-container {
    height: 250px;
  }
}

@media (max-width: 425px) {
  .event-image-container {
    height: 200px;
    margin-bottom: 12px;
  }
}

@media (max-width: 375px) {
  .event-image-container {
    height: 180px;
    margin-bottom: 10px;
  }
}

.updating-soon {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(60deg, #452424de, #268ded, #7f31bb, #0d7471);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.panel {
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
}

.panel-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px 10px 0 0;
}

/* Latest Happenings Heading */
.panel-heading.phd-latest {
    background: linear-gradient(90deg, #4b256d 0%, #7326b9 100%);
}

/* Media Gallery Heading */
.panel-heading.phd-media {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8787 100%);
}

/* Title Left */
.panel-title-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Title Right */
.panel-title-right i {
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.panel-title-right i:hover {
    transform: translateX(5px);
    opacity: 1;
}


.panel-heading .icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
  user-select: none;
}

.panel-body {
  background-color: #fff;
  padding: 8px;
  display: block;
  padding-bottom: 20px;
}

.panel-body img {
  margin-bottom: 15px;
  width: 100%;
  border-radius: 6px;
}
.recent-title a {
    color: #000;          /* black text */
    text-decoration: none; /* remove underline */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect (optional) */
.recent-title a:hover {
    color: #5a2ebc; /* or any accent color */
    text-decoration: underline;
}

.panel-heading.phd-updates {
       background: linear-gradient(90deg, #407ec8 0%, #58afe1 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.panel-heading.phd-updates i {
    color: #ffffff; /* heading icon color */
}

/* Event Container */
.event-container {
    margin: 0; 
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}

.event-container:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

/* Hover Effect */
.event-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Media Icon */
.media-left i {
    display: inline-block;
    font-size: 18px;
}

/* Event Text */
.event-text a {
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-text a:hover {
    color: #5a2ebc; /* accent hover color */
}

/* Responsive */
@media (max-width: 767px) {
    .media-left i {
        font-size: 16px;
    }

    .event-text a {
        font-size: 14px;
    }
}

/* ================= MOBILE MENU ================= */

@media (max-width: 991px) {
  .slicknav_menu {
    display: block !important;
  }
  .slicknav_menu .slicknav_btn {
    display: block !important;
    cursor: pointer;
    z-index: 9999;
  }
}


/* ================= NOBA ENGAGE SECTION ================= */

.noba-engage-section {
  background: #a21e31eb;
  padding: 0;
  color: #fff;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.stats-heading h2 {
  color: #771f2c;
  margin: 0;
  font-size: 1.2rem;
}

.stats-items-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  overflow: visible;
}

.scroll-btn {
  background: rgba(0,0,0,0.25);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 5;
}

.scroll-btn.left { margin-right: 5px; }
.scroll-btn.right { margin-left: 5px; }

.stats-items {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 10px 0;
  flex: 1;
}

.stat-item {
  flex: 0 0 auto;
  min-width: 160px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.stat-item .icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.stats-items.active {
  cursor: grabbing;
}

@media only screen and (max-width: 767px) {
    .why-choose-counter-item .section-title.section-title-large h2 {
        font-size: 30px !important;
      
    }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .stats-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .stats-items-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .noba-engage-section {
    background: #da3257eb;
    padding: 10px 0 !important;
  }
  .stats-wrapper {
    gap: 0 !important;
  }
}

@media (max-width: 767px) {
  .stats-items-wrapper {
    overflow-x: auto;
  }

  .stats-items {
    overflow-x: auto !important;
    white-space: nowrap;
  }

  .stats-items::-webkit-scrollbar {
    height: 6px;
  }

  .stats-items::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.6);
    border-radius: 4px;
  }

  .stats-items::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
  }

  .stat-item {
    min-width: 180px;
  }

  .scroll-btn {
    display: none;
  }
}


/* ================= LATEST SECTION ================= */

.inner-latest-section {
  background-color: #f5f7fa;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
}

.widget-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e6e6e6;
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #da3257;
  display: inline-block;
  padding-bottom: 5px;
}

.event-container,
.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.event-container .media-left,
.recent-post .media-img {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #da3257;
}

.recent-post-meta {
  font-size: 0.85rem;
  color: #777;
  margin-top: 5px;
}


/* ================= GALLERY SLIDER ================= */

.gallery-slider {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.gallery-slider .swiper {
  position: relative;
}

.gallery-slider .swiper-slide {
  display: block;        /* Let content flow naturally */
  padding: 0;
  margin: 0;
}

.gallery-slider img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  transition: transform 0.4s ease;
}

.gallery-slider .swiper-slide:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 2px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  background: #f7f8fb;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  width: 100%;
}


/* ================= SLIDER ARROWS ================= */

.gallery-button-next,
.gallery-button-prev {
	display:none!important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.gallery-button-prev { left: 10px; }
.gallery-button-next { right: 10px; }

.gallery-button-next:hover,
.gallery-button-prev:hover {
  background: #4f6bed;
}


/* ================= PAGINATION ================= */

.gallery-pagination {
  margin-top: 6px;
  text-align: center;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cfd6ff;
  opacity: 1;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: #4f6bed;
}

.gallery-button-next::after,
.gallery-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}



.gallery-button-next,
.gallery-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;   /* IMPORTANT */
  cursor: pointer;
}

/* Arrow Icons */
.gallery-button-next::after,
.gallery-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* Left & Right Positions */
.gallery-button-prev {
  left: 10px;
}

.gallery-button-next {
  right: 10px;
}

.widget-box .recent-post .media-img img {
    width: 100px;   /* fixed width */
    height: auto;   /* keep aspect ratio */
    object-fit: cover; /* optional: crop if needed */
}

.media-img {
    flex: 0 0 100px; /* fixes image width to 100px */
    max-width: 100px; /* ensures it doesn't grow more */
}

.media-img img {
    width: 100%;      /* fills the container */
    height: auto;     /* keeps aspect ratio */
    object-fit: cover; /* optional: crop if needed */
}

.separator.small.left {
    margin: 10px 0 20px 0;
}

.separator.small.left {
    margin-left: 0;
    margin-right: 0;
}
.separator.small {
    background-color: #303030;
    height: 2px;
    position: relative;
    display: block;
    margin: 10px auto 20px;
}
.separator.small, .wpb_column>.wpb_wrapper .separator.small {
    height: 1px;
    background-color: #5275b5;
    width: 48px;
}

.wing-box {
  padding: 18px 12px;
  background: #f9f9f9;
  border-radius: 14px;
  width: 100%;
  max-width: 200px;
}

.wing-icon {
  font-size: 38px;
  margin-bottom: 10px;
  color: #173faf;
}

.wing-box h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.wing-box p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

 .cofounder-message-section {
            padding-top: 0px;
        }
        .cofounder-subtitle {
            color: #173faf;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }
        .cofounder-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        .cofounder-photo {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .cofounder-batch {
            font-size: 14px;
            color: #555;
        }
        .cofounder-message p {
            font-size: 15px;
            line-height: 1.65;
            color: #444;
            margin-bottom: 15px;
        }
        .cofounder-extra-images img {
            width: 100%;
            border-radius: 5px;
            margin-top: 10px;
        }
        /* Quote Section */
        .cofounder-quote-section {
            background: #f6f6f6;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
            border-radius: 8px;
        }
        .cofounder-quote-section p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .hindi-text {
            font-family: 'Noto Sans Devanagari', sans-serif;
            color: #333;
        }
        .english-text {
            font-family: 'Arial', sans-serif;
            color: #444;
        }
        @media (max-width: 991px){
            .cofounder-title {
                font-size: 28px;
            }
        }
        @media (max-width: 767px){
            .cofounder-subtitle {
                font-size: 14px;
            }
            .cofounder-title {
                font-size: 24px;
            }
        }
		
		.cofounder-profile {
    text-align: center;
}

.cofounder-profile h5 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 4px;
    color: #1f2d3d;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
}

/* Modern underline accent */
.cofounder-profile h5::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #173faf, #00c6ff);
    margin: 6px auto 0;
    border-radius: 2px;
}

.cofounder-batch {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cofounder-spotlight {
  padding: 60px 0;
  background: #fff;
}

/* HEADING STYLE */
.spotlight-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-left: 4px solid #000;
  padding-left: 12px;
}

/* IMAGE */
.cofounder-spotlight img {
  width: 100%;
  height:367px;
  border-radius: 4px;
}

/* CAPTION */
.spotlight-caption {
  padding: 14px 5px 0;
}

/* DATE LINE */
.spotlight-caption span {
  font-size: 13px;
  color: #777;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CALENDAR ICON */
.spotlight-caption span::before {
  content: "📅";
  font-size: 13px;
}

/* TITLE */
.spotlight-caption h3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #111;
  margin-top: 6px;
}

/* PAGINATION ALIGNMENT */
.testimonial-pagination {
  margin-top: 25px;
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 767px) {
  .spotlight-caption h3 {
    font-size: 16px;
  }

  .spotlight-title {
    font-size: 20px;
  }
}

.partners-showcase {
  padding: 70px 0;
  background: #f5f7fb;
}

.partner-card-img {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.35s ease;
}

.partner-card-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.partner-image {
  height: 260px;   /* BIG IMAGE AREA */
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills like a hero image */
}

.partner-content {
  padding: 30px 32px 36px;
}

.partner-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.partner-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.partner-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
      border: 1.5px solid #c6c7cbb5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: #665fc4;       /* Highlight on hover */
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.partner-logo img {
  max-height: 180px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .partner-card {
    padding: 18px;
    text-align: center;
  }
}

.award-section {
    padding: 0px 0;
    background: #f9f9f9;
}

.award-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    border: 1.5px solid #e3e6f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-6px);
    border-color: #665fc4;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.award-card h5, 
.award-card h6 {
    color: #173faf;
}

.award-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.award-card strong {
    color: #000;
}

@media (max-width: 768px) {
    .award-section {
        padding: 40px 0;
    }
}

.award-list-section {
  padding-top: 50px;
  background: #ffffff;
}

/* Row Card */
.award-row {
  background: #fff;
  border: 1.5px solid #e3e6f0;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.award-row:hover {
  transform: translateY(-5px);
  border-color: #665fc4;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

/* Image */
.award-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.award-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.award-date {
  font-size: 14px;
  color: #665fc4;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.award-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .award-row {
    padding: 16px;
  }

  .award-content h3 {
    font-size: 18px;
  }
}

.feature-list,
.impact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.feature-list li,
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list i,
.impact-list i {
  color: #f4b400;
  font-size: 18px;
  margin-top: 4px;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.impact-box {
    background: #ddcfdc85;
    border-radius: 10px;
    padding: 8px 6px;
    text-align: center;
    width: 100%;
}

.impact-box i {
  color: #f4b400;
  font-size: 24px;
  margin-bottom: 8px;
}

.impact-box p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 767px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* Center the last item on desktop */
.impact-grid .impact-box:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* Mobile stays single column */
@media (max-width: 767px) {
  .impact-grid .impact-box:last-child {
    max-width: 100%;
  }
}

.social-sidebar-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Button */
.social-r {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 20px 0 0 20px;
  background: #000;
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Hover Text */
.social-r span {
  position: absolute;
  right: 42px;
  padding: 8px 14px;
  font-size: 13px;
  background: inherit;
  border-radius: 20px 0 0 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

/* Desktop Hover */
@media (min-width: 769px) {
  .social-r:hover span {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Brand Colors */
.social-r.x { background: #000; }
.social-r.facebook { background: #1877f2; }
.social-r.youtube { background: #ff0000; }
.social-r.instagram {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}
.social-r.linkedin { background: #0a66c2; }

/* Mobile Bottom Bar */
@media (max-width: 768px) {
	  .social-sidebar-right {
    display: none !important;
  }
	
  .social-sidebar-right {
    top: auto;
    bottom: 12px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
  }

  .social-r {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .social-r span {
    display: none;
  }
}
@media (max-width: 768px) {

  /* Contact + Map side by side */
  .footer-about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-map img {
    max-width: 180px;
    width: 100%;
  }

  /* Footer links layout */
  .footer-links-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Each nav block */
  .footer-links-box > nav {
    width: 100%;
  }

  /* Explore Projects full width */
  .footer-links-box nav[aria-label="Explore the NOBA GSR"] {
    grid-column: span 2;
  }

  /* Explore Projects grid */
  .footer-links-box nav[aria-label="Explore the NOBA GSR"] ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
  }

  /* Font sizing */
  .footer-links-box h3 {
    font-size: 16px;
  }

  .footer-links-box ul li {
    font-size: 13px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .footer-links-box nav[aria-label="Explore the NOBA GSR"] ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* <<<<<<<<<<<<<<<<<<<<<<< machine<<<<<<<<<<< */

 .post-entry {
                display: flex;
                align-items: center;
                gap: 40px;
            }

            .list-section {
                flex: 2;
            }

            .image-section {
                flex: 1;
                text-align: right;
            }

            .image-section img {
                max-width: 100%;
                height: auto;
            }

            .three-column-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px 40px;
                list-style: none;
                padding: 0;
            }

            .three-column-list li {
                position: relative;
                padding-left: 28px;
            }

            .three-column-list li::before {
                content: "✔";
                position: absolute;
                left: 0;
                color: #28a745;
                font-weight: bold;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .post-entry {
                    flex-direction: column;
                }

                .three-column-list {
                    grid-template-columns: 1fr;
                }

                .image-section {
                    text-align: center;
                }
            }