@charset "UTF-8";
/* Vishal code start */
:root {
  --primary: #1f4e79;
  --secondary: #f37021;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f5f7fa;
  --bg-blue: #2f52a1;
  --bg-red: #ed3237;
  --text-color-red:#ed3237;
  --text-color-blue:#2f52a1;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

.bg-website {
  background: rgba(238, 243, 251, 0.5098039216);
}

.bg-grey {
  background: rgba(128, 128, 128, 0.1098039216);
}

.bg-blue {
  background: #2f52a1 !important;
}

.bg-red {
  background: #ed3237 !important;
}

.text-red {
  color: #ed3237 !important;
}

.text-blue {
  color: #2f52a1 !important;
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary);
}

.nav-link {
  color: var(--text-color-blue) !important;
  font-weight: 500;
  margin-left: 18px;
}

.nav-link:hover {
  color: var(--bg-red) !important;
}

.btn-Get {
  background: var(--bg-blue) !important;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-donate {
  background: var(--bg-red) !important;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
}

.btn-primary-custom:hover {
  background: #d95f14;
}

#hero .sub-btn {
  background: #ed3237 !important;
}

#hero .outline {
  background: #2f52a1 !important;
}

/* HERO */
#hero {
  position: relative;
  background-image: url("../images/home/banner.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 420px;
  z-index: 1;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.009));
  z-index: -1;
}

#hero .hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#hero p {
  color: #e2e2e2;
  font-size: 18px;
}

.sub-btn {
  background: var(--bg-red);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
}

/* SECTION TITLE */
/* our csr-philosophy start  */
.csr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}

#csr-philosophy .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#csr-philosophy .csr-col {
  position: relative;
}

.line {
  flex-grow: 1;
  height: 1.8px;
  background-color: #d1d5db;
}

.csr-title {
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #1f3b57;
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: none;
}

#csr-philosophy .sub-title-csr {
  color: #003a7c;
  font-weight: 600;
  font-size: 16px;
}
#csr-philosophy .sub-title-csr .csr-col {
  position: relative;
  border-right: 1.5px solid #d1d5db;
}
#csr-philosophy .sub-title-csr .csr-col:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  #csr-philosophy .sub-title-csr .csr-col {
    border-right: none;
    border-bottom: 1.5px solid #d1d5db;
    padding-bottom: 20px;
  }
}

/*  

/* our csr-philosophy end   */
.section-title {
  text-align: center;
  margin-bottom: 5px;
}

/* CARDS */
.card-clean {
  border: none;
  transition: 0.3s;
}

.card-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.focus-img {
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

/* IMPACT */
.impact-number {
  font-size: 34px;
  font-weight: 750;
  color: var(--primary);
}

.vl-one {
  border-left: 2px solid rgba(22, 65, 90, 0.7607843137);
  height: 70px;
}

#impact .impact-title {
  font-size: 15px;
  color: #1f3b57;
  font-weight: 600;
}

.partner-logo {
  height: 55px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
}

/* CTA */
#cta {
  background: linear-gradient(90deg, var(--primary), #163a5a);
  color: #fff;
  padding: 60px 0;
}

/* FOOTER */
footer {
  background: #0f1720;
  color: #9aa4af;
  padding: 18px 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #hero .hero-title {
    font-size: 32px;
  }
}
.brand-logo {
  width: 150px;
}

/* ===============================
   OUR FOCUS AREAS
=================================*/
#our-focaus-areas .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

#our-focaus-areas .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

#our-focaus-areas .image-wrapper {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

#our-focaus-areas .card:hover .image-wrapper {
  transform: scale(1.08);
}

#our-focaus-areas .img1 {
  background-image: url("../images/home/health.png");
}

#our-focaus-areas .img2 {
  background-image: url("../images/home/education.png");
}

#our-focaus-areas .img3 {
  background-image: url("../images/home/art.png");
}

#our-focaus-areas .img4 {
  background-image: url("../images/home/environment.png");
}

#our-focaus-areas .focus-footer {
  height: auto;
  perspective: 1000px;
  border: none;
  padding: 0;
  overflow: hidden;
  padding: 40px;
  text-align: center;
}

.footer-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

#our-focaus-areas .card:hover .footer-flip {
  transform: rotateX(180deg);
}

.footer-front,
.footer-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.footer-front h5 {
  margin: 0;
  font-weight: 600;
}

.footer-back {
  transform: rotateX(180deg);
}

.learn-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Card styling */
#impact-stories .card {
  border: none;
  overflow: hidden;
}

/* Image wrapper */
#impact-stories .image-wrapper {
  position: relative;
}

/* Transparent overlay */
#impact-stories .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s ease;
}

#impact-stories .card:hover .image-overlay {
  /* background: rgba(0, 0, 0, 0.6); */
  background: rgba(31, 56, 87, 0.4392156863);
}

#impact-stories .Read-two {
  background: #ed3237;
  color: #fff;
  margin-top: 10px;
}

#impact-stories .Read-one {
  background: #2f52a1;
  color: #fff;
  margin-top: 10px;
}

#impact-stories .owl-stage-outer {
  padding-bottom: 2%;
}

.overlay-health {
  background: rgba(185, 65, 30, 0.5);
}

.overlay-education {
  background: rgba(40, 80, 45, 0.5);
}

.overlay-art {
  background: rgba(85, 65, 50, 0.5);
}

.overlay-environment {
  background: rgba(10, 70, 100, 0.5);
}

#get-involved-section {
  background: linear-gradient(rgba(185, 185, 185, 0.5), rgba(255, 255, 255, 0.466)), url("../images/home/CSR-3.png") no-repeat center center;
  background-size: cover;
}

#main-heading {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.8rem;
}

.line {
  border-top: 2px solid #ccc;
  opacity: 0.5;
}

.custom-btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  color: white !important;
  font-size: 1.1rem;
  min-width: 200px;
}

/* get-involved-section  end  */
/* foter  */
#main-footer {
  padding: 20px 0;
  border-top: 1px solid #ddd;
  background-color: #fff;
}

.footer-brand-logo {
  width: 100px;
  margin-right: 14px;
}

#footer-links li {
  margin-right: 15px;
  font-size: 0.9rem;
}

#footer-links a {
  text-decoration: none;
  color: #44566c;
  font-weight: 500;
}

#copyright {
  font-size: 0.85rem;
  color: #777;
}

#social-icons a {
  background-color: #666;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

#social-icons a:hover {
  background-color: #333;
}

/* impact-glance  */
#impact-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url("../images/impact/sliderimage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

#impact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#impact-banner .impact-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 20%;
}

#impact-banner .impact-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#impact-banner .impact-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.bg-impact {
  position: relative;
  width: 100%;
  /* background-image: url("/assets/images/home/CSR-3.png"); */
  background-image: linear-gradient(rgba(247, 242, 242, 0.566), rgba(255, 255, 255, 0.183)), url("../images/impact/impactglace.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* Vishal code end */
#impact-glance .glance-title {
  color: #44566c;
  font-weight: 500;
}

.bg-areas {
  position: relative;
  width: 100%;
  /* background-image: url("/assets/images/home/CSR-3.png"); */
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url("../images/impact/impact-area-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

#impact-areas .vl-one {
  border-left: 1px solid rgb(145, 145, 144);
  height: 158px;
}

#impact-areas .areas-title {
  color: #44566c;
  font-weight: 500;
  font-size: 18px;
}

#impact-areas .impact-area-img {
  height: 140px;
  object-fit: cover;
}

/* ---------------------------stories-section ---------------------------- */
.bg-Stories {
  position: relative;
  width: 100%;
  /* height: 272px; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(223, 223, 223, 0.75)), url("../images/home/CSR-4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
}

/* Typography & Titles */
#stories-title {
  color: #1a2a40;
  font-weight: 700;
  white-space: nowrap;
}

#title-line {
  height: 1.5px;
  background-color: #ccc;
}

/* Card Styling */
#testimonial-card {
  background: linear-gradient(135deg, rgba(206, 203, 203, 0.9450980392) 0%, #f1f3f5 100%);
  border-radius: 12px;
  overflow: hidden;
}

#beneficiary-img {
  height: 100%;
  object-fit: cover;
}

#testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 10px;
}

#quote-icon-start,
#quote-icon-end {
  color: #b2b2b2;
  font-size: 1.5rem;
  opacity: 0.6;
}

#beneficiary-name {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Tab Buttons */
.btn-tab {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 20px;
  color: #555;
  font-weight: 500;
  flex: 1;
  transition: all 0.3s ease;
}

.btn-tab:hover,
.btn-tab.active {
  background-color: #f8f9fa;
  border-color: #bbb;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  #testimonial-text {
    font-size: 0.9rem;
  }
  .btn-tab {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}
#stories-Change .Bringing-Read-one {
  background: var(--bg-red) !important;
  color: white !important;
}

#stories-Change .btn-Get {
  background: rgba(238, 238, 238, 0.521) !important;
}

.bg-StoriesChange {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(223, 223, 223, 0.726), rgba(223, 223, 223, 0.692)), url("../images/home/CSR-4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
}

/* footer-tow  */
/* #Partner-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url("../images/partnerships/partnership_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Transparent Overlay */
#Partner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Change opacity if needed */
  z-index: 1;
}

#Partner-banner .Partner-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#Partner-banner .Partner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#Partner-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  /* background-image: url("../images/partnerships/partnership_banner.png"); */
  background-image: url("../images/partnerships/DSC07629.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔹 Transparent Overlay */
#Partner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Change opacity if needed */
  z-index: 1;
}

/* #Partner-banner .Partner-content h1 {
  position: relative;
  z-index: 2;
  font-size: 19px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
} */
#Partner-banner .Partner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 20%;
}

#Partner-banner .Partner-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#Partner-banner .Partner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/*  #Partner-banne  */
.bg-our-approach {
  position: relative;
  width: 100%;
  /* background-image: url("/assets/images/home/CSR-3.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

#our-approach .custom-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-our-awards {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.Awards-Read-one {
  background: #ed3237 !important;
  color: rgb(255, 255, 255) !important;
}

.Awards-Read-one-two {
  background: #2f52a1 !important;
  color: rgb(255, 255, 255) !important;
}

/* can-partnera start section  */
#can-partnera .vl-can-partnera {
  border-left: 2px solid rgb(165, 165, 165);
  height: 160px;
}

#can-partnera .partnera-title {
  color: #2f52a1;
  font-weight: 600;
  margin-top: 12px;
}

#can-partnera .partner-img {
  height: 140px;
  object-fit: cover;
}

#can-partnera .btn-Partner-contact {
  background-color: #2f52a1;
  color: rgb(255, 255, 255);
}

#can-partnera .btn-Partner {
  background-color: #ed3237;
  color: rgb(255, 255, 255);
}

/* VISHAL code end --------------------------------------------------------- */
/* Revati code start */
/* About banner style start */
#csr-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  /* new slider image */
  background-image: url("../images/about/about_banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔹 Transparent Overlay */
#csr-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#csr-banner .csr-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 20%;
}

#csr-banner .csr-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#csr-banner .csr-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* About banner style end */
/* About section style start */
#about-wrapper {
  position: relative;
  padding-bottom: 40px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

#about-wrapper .about-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 80px 20px;
}

#about-wrapper .about-header h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1f3b57;
  white-space: nowrap;
}

#about-wrapper .about-header .line {
  flex: 1;
  height: 2px;
  background-color: #e2e2e2;
}

/* About image styles */
#about-wrapper .about-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* image */
#about-wrapper .about-img {
  width: 100%;
  border-radius: 8px;
}

/* soft fade effect between text & image (like design) */
#about-wrapper .about-content {
  color: #000000;
  position: relative;
  padding: 30px 37px;
  border-radius: 10px;
  overflow: hidden;
}

#about-wrapper .about-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/about/aboutBG.png") center/cover no-repeat;
  z-index: 0;
}

#about-wrapper .about-content p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 700px;
}

#about-wrapper .about-content .lead {
  position: relative;
  line-height: 28px;
  font-weight: 300;
}

#about-wrapper .about-content .brand-title {
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
}

#about-wrapper .about-content .divider {
  font-size: 27px;
  margin: 0 6px;
}

#about-wrapper .about-content .brand-desc {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

#about-wrapper .about-content .quote {
  position: absolute;
  bottom: -15px;
  font-size: 63px;
  color: #a1a0a0;
  font-family: serif;
  margin-left: 10px;
}

@media (min-width: 1920px) {
  #about-wrapper .about-content {
    padding: 80px 37px;
  }
  #about-wrapper .about-content p {
    max-width: 900px;
  }
}
/* About section style end */
/* Core value start */
#core-value-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

#core-value-wrapper .core-value-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

#core-value-wrapper .core-value-header h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1f3b57;
  white-space: nowrap;
}

#core-value-wrapper .core-value-header .line {
  flex: 1;
  height: 2px;
  background: #e2e2e2;
}

/* #core-value-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/images/about/about_bg.png") no-repeat;
  background-size: cover;
} */
.core-single-image img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  object-position: 50% 70%;
}

#core-value-wrapper .core-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#core-value-wrapper .core-card:hover {
  transform: translateY(-6px);
}

#core-value-wrapper .core-card img {
  width: 100%;
  object-fit: cover;
}

#core-value-wrapper .core-card-body {
  padding: 20px;
}

#core-value-wrapper .core-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

#core-value-wrapper .core-card-body p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

#core-value-wrapper .core-card-body .btn {
  border: none;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

#core-value-wrapper .core-card-body .btn.blue {
  background: #1e384e;
  color: #ffffff;
}

#core-value-wrapper .core-card-body .btn.red {
  background: #ed3237;
  color: #ffffff;
}

#core-value-wrapper .core-card-body .btn.dark {
  background: #2f52a1;
  color: #ffffff;
}

/* Core value end */
/* Our work banner start */
/* #work-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url("../images/work/work_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔹 Transparent Overlay */
#work-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust opacity if needed */
  z-index: 1;
}

#work-banner .work-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 20%;
}

#work-banner .work-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20%;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#work-banner .work-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* #work-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url("../images/work/work_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  overflow: hidden;
} */
#work-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  /* new slider image */
  background-image: url("../images/work/work_banner.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔹 Transparent Overlay */
#work-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust opacity if needed */
  z-index: 1;
}

#work-banner .work-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20%;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#work-banner .work-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Our work banner end */
/* Our work cards start */
.our-work-page {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  z-index: 3;
  position: relative;
}

.our-work-page .our-work-card {
  /* background: #ffffff; */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.our-work-page .our-work-card:hover {
  transform: translateY(-6px);
}

.our-work-page .our-work-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.our-work-page .card-strip {
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
  min-height: 60px;
}

.our-work-page .card-content {
  padding: 15px;
}

.our-work-page .card-content p {
  font-size: 14px;
  margin-bottom: 15px;
  min-height: 70px;
}

.our-work-page .learn-btn {
  display: inline-block;
  font-size: 15px;
  padding: 8px 16px;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
}

.bg-health {
  background: #ed3237;
}

.bg-health-btn {
  background: #ed3237;
}

.bg-education {
  background: #2f52a1;
}

.bg-education-btn {
  background: #2f52a1;
}

.bg-environment {
  background: #ed3237;
}

.bg-environment-btn {
  background: #ed3237;
}

.bg-art {
  background: #2f52a1;
}

.bg-art-btn {
  background: #2f52a1;
}

.btn-impact {
  background: #ed3237 !important;
}

.btn-get-involved {
  background: #2f52a1 !important;
}

/* Our work cards end */
/* Our work impact CTA start */
.work-impact-cta {
  background-image: url("../images/work/Primitive_Tribes.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.work-impact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.work-impact-cta .container {
  position: relative;
  z-index: 1;
}

.work-impact-quote {
  font-size: 20px;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.work-quote-mark {
  font-size: 20px;
  font-weight: bold;
}

/* Our work impact CTA end */
/* Breadcrumb start */
.breadcrumb-bar {
  background: #f8f8f8;
  padding: 12px 0px;
  font-size: 15px;
  color: #84807f;
  font-weight: 500;
  border-bottom: 2px solid #e2e2e2;
}

.breadcrumb-bar a {
  text-decoration: none;
  color: #84807f;
}

/* Breadcrumb end */
/* Contact Banner start */
#contact-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url("../images/contact/contact_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

#contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust opacity if needed */
  z-index: 1;
}

#contact-banner .contact-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top: 20%;
}

#contact-banner .contact-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#contact-banner .contact-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Contact Banner end */
/* contact form start */
#contact-section {
  background-image: url("../images/about/about_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

#contact-section .contact-box-left .contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

#contact-section .contact-header h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1f3b57;
  white-space: nowrap;
}

#contact-section .contact-header .line {
  flex: 1;
  height: 2px;
  background-color: #e2e2e2;
}

#contact-section .contact-box {
  background: rgba(243, 232, 236, 0.5);
  padding: 20px 20px;
  border-radius: 8px;
  height: 100%;
}

#contact-section .section-text {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
}

#contact-section .form-control {
  border-radius: 4px;
  font-size: 14px;
}

#contact-section .send-btn {
  background: var(--bg-red);
  color: #fff;
  padding: 8px 26px;
  border-radius: 4px;
  border: none;
}

#contact-section .contact-info {
  list-style: none;
  padding: 6px;
  margin: 0 0 20px;
}

#contact-section .contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #444;
}

#contact-section .contact-info i {
  color: #0a4664;
  margin-top: 6px;
}

#contact-section .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 30px;
}

#contact-section .social-icons i {
  margin-right: 15px;
  color: #0a4664;
  cursor: pointer;
  font-size: 20px;
}

#contact-section .map-box iframe {
  width: 100%;
  max-height: 220px;
  height: 200px;
  border: 0;
  border-radius: 6px;
  margin-top: 15px;
}

#contact-section .footer-quote {
  text-align: center;
  font-size: 17px;
  color: #000;
  font-weight: 500;
  margin-top: 30px;
}

#contact-section .fake-recaptcha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  padding: 10px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
}

#contact-section .fake-recaptcha label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

#contact-section .fake-recaptcha input {
  width: 18px;
  height: 18px;
}

#contact-section .recaptcha-logo {
  text-align: center;
}

#contact-section .recaptcha-logo img {
  width: 32px;
}

#contact-section .recaptcha-logo small {
  display: block;
  font-size: 10px;
  color: #777;
}

/* Revati code end */
@media (max-width: 768px) {
  #about-wrapper .about-header,
  #about-wrapper .about-section {
    padding: 20px 40px;
  }
  #core-value-wrapper .core-value-cards {
    grid-template-columns: 1fr;
  }
  #contact-section .fake-recaptcha {
    width: 100%;
  }
}
@media (max-width: 576px) {
  #about-wrapper .about-header,
  #about-wrapper .about-section {
    padding: 15px 20px;
  }
  #core-value-wrapper .core-value-cards {
    grid-template-columns: 1fr;
  }
  .bg-our-approach,
  .bg-our-awards,
  .bg-can-partnera {
    height: auto;
  }
  #contact-banner {
    padding: 0 20px;
  }
}
/* contact form end  */
/* Convert to SCSS with nesting and variables */
#contact-section {
  background-image: url("../images/about/about_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}
#contact-section .contact-box-left .contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
#contact-section .contact-header h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1f3b57;
  white-space: nowrap;
}
#contact-section .contact-header .line {
  flex: 1;
  height: 2px;
  background-color: #e2e2e2;
}
#contact-section .contact-box {
  background: rgba(243, 232, 236, 0.5);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
}
#contact-section .section-text {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
}
#contact-section .form-control {
  border-radius: 4px;
  font-size: 14px;
}
#contact-section .send-btn {
  background: #af5522;
  color: #fff;
  padding: 8px 26px;
  border-radius: 4px;
  border: none;
}
#contact-section .contact-info {
  list-style: none;
  padding: 6px;
  margin: 0 0 20px;
}
#contact-section .contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #444;
}
#contact-section .contact-info i {
  color: #0a4664;
  margin-top: 6px;
}
#contact-section .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 30px;
}
#contact-section .social-icons i {
  margin-right: 15px;
  color: #0a4664;
  cursor: pointer;
  font-size: 20px;
}
#contact-section .map-box iframe {
  width: 100%;
  max-height: 220px;
  height: 200px;
  border: 0;
  border-radius: 6px;
  margin-top: 15px;
}
#contact-section .footer-quote {
  text-align: center;
  font-size: 17px;
  color: #000;
  font-weight: 400;
  margin-top: 30px;
}
#contact-section .fake-recaptcha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  padding: 10px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
}
#contact-section .fake-recaptcha label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}
#contact-section .fake-recaptcha input {
  width: 18px;
  height: 18px;
}
#contact-section .recaptcha-logo {
  text-align: center;
}
#contact-section .recaptcha-logo img {
  width: 32px;
}
#contact-section .recaptcha-logo small {
  display: block;
  font-size: 10px;
  color: #777;
}

#vission-section .card-custom {
  border: none;
  border-radius: 16px;
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
#vission-section .card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
#vission-section .card-custom:hover .icon-img {
  transform: scale(1.1);
}
#vission-section .card-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #2f52a1;
}
#vission-section .mission-card::before {
  background: #ed3237;
}
#vission-section .icon-img {
  width: 80px;
  transition: 0.3s ease;
}
#vission-section .text-card {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
@media (max-width: 768px) {
  #vission-section .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  #vission-section .card-custom {
    padding: 25px 15px;
  }
}

/* ===== COMMON PARALLAX BACKGROUND ===== */
.impact-parallax-wrapper {
  position: relative;
  background-image: url("../images/impact/impact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* Overlay for better readability */
.impact-parallax-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Make text white inside parallax sections */
.impact-parallax-wrapper h2,
.impact-parallax-wrapper p,
.impact-parallax-wrapper .impact-number,
.impact-parallax-wrapper .areas-title,
.impact-parallax-wrapper .glance-title {
  color: #fff !important;
}

/* Optional: remove vertical divider lines */
.impact-parallax-wrapper .vl-one {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ed3237;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
  left: 0;
}

.navbar .nav-link.active {
  font-weight: 600;
  color: #ed3237 !important;
}

#hero-slider .hero_slider #carouselExampleIndicators {
  position: relative;
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-inner,
#hero-slider .hero_slider #carouselExampleIndicators .carousel-item {
  width: 100%;
  height: calc(100vh - 60px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-caption h5 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  display: inline-block;
  padding: 12px 22px;
  border-left: 6px solid #ed3237;
  border-right: 6px solid #2f52a1;
  border-radius: 6px;
  animation: fadeUp 1s ease;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-indicators button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(47, 82, 161, 0.79);
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-prev,
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-next {
  width: 10%;
  opacity: 0.8;
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-prev-icon,
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-next-icon {
  width: 60px;
  height: 60px;
  background-size: 22px 22px;
  border-radius: 50%;
  background-color: rgba(47, 82, 161, 0.79);
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
#hero-slider .hero_slider #carouselExampleIndicators {
  /* Hover effect */
}
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-prev:hover .carousel-control-prev-icon,
#hero-slider .hero_slider #carouselExampleIndicators .carousel-control-next:hover .carousel-control-next-icon {
  background-color: #2f52a1;
  transform: scale(1.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #hero-slider .hero_slider #carouselExampleIndicators .carousel-caption {
    text-align: center;
    left: 10%;
    right: 10%;
  }
  #hero-slider .hero_slider #carouselExampleIndicators .carousel-caption h5 {
    font-size: 28px;
  }
}

/*# sourceMappingURL=index.css.map */
