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

body {
  font-family: "Poppins", sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ========================= home page ===================
============================================================= */

.header-section {
  width: 100%;
}

.header {
  width: 100%;

  z-index: 1000;
  transition: all 0.3s ease;
}

/* Scrolled header styling */
.header-scrolled {
  box-shadow: 0 0 20px -11px black;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

/* top-header */
.top-header {
  padding: 10px 0;
  background-color: #1d2941;
  width: 100%;
}

.inner-top-header {
  width: 100%;
  /* display: flex;
  align-items: center; */
}

.left-top-header {
  width: 100%;
}

.inner-logo a.custom-logo-link img.custom-logo {
  width: 100% !important;
  height: auto !important;
}

.left-top-header .social-links {
  justify-content: end;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  list-style-type: none;
}

.right-top-header {
  width: 50%;
}

.right-top-header .social-links {
  justify-content: end;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  list-style-type: none;
}

.right-top-header .social-links li a {
  border-radius: 50px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-decoration: none;
  /* position: relative; */
  width: 40px;
  background-color: #4b76a1;
  font-size: 21px;
  color: #ffffff;
}

.right-bottom-header {
  gap: 20px;
  justify-content: end;
  display: flex;
  width: 44%;
}


.top-donate-btn {
  display: inline-block;
  /* text-align: end; */
}

.top-donate-btn a {
  font-size: 15px;
  padding: 6px 15px;
  display: inline-block;
  border-radius: 70px;
  background-color: #4f7ca6;
  text-decoration: none;
  border: 1px solid #4f7ca6;
  color: #ffffff;
  font-weight: 500;
}
/* .top-contact-btn a {
  font-weight: 600;
  color: #1D2941;
  transition: 0.3s all;
  background: transparent;
  border: 2px solid #4f7ca6;
} */

.top-registration-btn a {
  background-color: #0000;
  border: 1px solid #4f7ca6;
  color: #4f7ca6;
  margin-right: 11px;
}


.top-contact-btn a:hover {

  background-color: #4f7ca6;
  transition: 0.3s all;
  color: #ffffff;
}

.top-donate-btn a i {
  margin-right: 10px;
}

/* bottom header */
.bottom-header {
  padding: 22px 0;
  background-color: #ffffff;
  width: 100%;
}

.inner-bottom-header {
  width: 100%;
}

.nav-links li {
  margin-right: 5px;
  display: inline-block;
  /* margin: 0; */
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 40px 12px 0;
  /* padding: 49px 0 50px 20px; */
  border-radius: 25px;
}

.nav-links {
  padding: 0;
  margin-bottom: 0;
  display: inline-block;
  list-style: none;
}

nav.top-nav {
  gap: 7px;

  display: flex;

  align-items: center;

}

.logo {
  width: 10%;
}

.right-items {
  width: 100%;
  text-align: end;
}

.inner-logo {
  z-index: 33;
  width: 100%;
  position: relative;
}

.inner-logo a {
  display: inline-block;
}

.inner-logo img {
  border: 6px solid #fff;
  border-radius: 74px;
  top: -70px;
  position: absolute;
  width: 100%;
}

.inner-logo a {
  display: inline-block;
}

.logo i {
  color: #ffd700;
  font-size: 2rem;
}

.nav-links a:hover {
  text-decoration: underline;
  transform: translateY(-2px);
}

.donate-btn {
  background-color: #4c77a3;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* floating icons */

.floating-right-links {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999;
}

.top-list {

  margin: 0;
  padding: 0;
  list-style-type: none;

}

.top-list li {
  margin-bottom: 20px;
}

.top-list li a {
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
  width: 50px;
  background: #4F7CA6;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  color: #fff;
}





/* floating btn */

.floating-donate-btn {
  bottom: 70px;
  position: fixed;
  /* top: 100px; */
  right: 20px;
  z-index: 99999999;
}

.floating-donate-btn a {
  border: 2px solid #4B76A1;
  background-color: #4B76A1;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 14px;
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}


.floating-donate-btn a:hover {
  transform: scale(1.05);
}


/* Hero Section */

/* ========== img-section============ 
=====================================*/

.img-slider-section {
  /* padding-top: 127px; */
  width: 100%;
}

.inner-img-sec {
  width: 100%;
  height: auto;
}

.img-hero-slider {
  position: relative;
}

/* .img-hero-slider::before {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  background: #2b5a83;
  content: " ";
  position: absolute;
} */

.inner-img-sec img {
  object-fit: cover;
  height: 790px;
  width: 100%;
}

.img-slider-section .owl-nav {
  text-align: center !important;
}

.img-slider-section .owl-nav button.owl-prev {
  border-radius: 50px;
  height: 60px;
  width: 60px;
  background-color: #204267d6 !important;
  position: absolute;
  top: 50%;
  left: 65px;
  line-height: 68px !important;
}

.img-slider-section .owl-nav button.owl-next {
  right: 65px;
  position: absolute;
  top: 50%;
  bottom: 0;
  background-color: #204267d6 !important;
  border-radius: 50px;
  height: 60px;
  width: 60px;
  line-height: 68px !important;
}

.img-slider-section .owl-nav button {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;

}

.img-slider-section:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
}

.img-slider-section .owl-nav button.owl-prev i,
.img-slider-section .owl-nav button.owl-next i {
  font-size: 24px;
  position: relative;
  color: #ffffff;
}


.hero-content {
  max-width: 700px;
  /* top: 0; */
  margin: auto 0;
  position: absolute;
  bottom: 75px;
  left: 10%;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  background-clip: text;
}

.hero-content p {
  font-size: 17px;
  margin-bottom: 45px;
  color: #ffffff;
  opacity: 0.9;
}

.hero-content .cta-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-content .cta-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-secondary {
  border-radius: 65px;
  background-color: #4F7CA6;
  color: #ffffff;
}

.cta-secondary i {
  margin-right: 10px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 
.highlights-section  */
.highlights-section {
  margin-top: 100px;
}

.section-title {
  font-size: 32px;
  color: #002b5b;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}

.highlight-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  text-align: center;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0px 0px 16px -4px rgb(0 0 0 / 21%);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

.highlight-icon {
  font-size: 40px;
  color: #004080;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  font-family: 'Lato', sans-serif;
}

/* impact section  */
.impact-section {
  margin-top: 100px;
  background-color: #ffffff;
}

.impact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-box {
  text-align: center;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgb(0 64 128 / 12%);
  transition: transform 0.3s ease;
}

.impact-box:hover {
  transform: translateY(-6px);
}

.impact-number {
  font-size: 36px;
  font-weight: 700;
  color: #004080;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  color: #333;
}


/* -------------newsletter signup------------ */

.newsletter-section {
  background-image: url();
  z-index: 2;
  position: relative;

  width: 100%;
  background-image: url(../images/hand-bg.jpg);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px 20px;
  color: #fff;
  text-align: center;
}

.newsletter-section::before {
  position: absolute;
  content: "";
  background-color: #1d2941a3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.newsletter-title {
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
}

.newsletter-input {
  width: 36%;
  padding: 0px 20px;
  height: 50px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  outline: none;
}

.inner-newsletter {
  padding: 80px 0;
  position: relative;
  justify-content: space-between;
  margin: 0 auto;
  width: 75%;
}

input.tnp-submit {
  padding: 0px 30px !important;
  height: 50px !important;
  background-color: #4B76A1 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.newsletter-button {
  padding: 0px 30px;
  height: 50px;
  background-color: #4B76A1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 10px;
}

/* breadcrumbs-sec */
.breadcrumbs-sec {
  padding: 110px 0px 100px;
  background-image: url(../images/breadcrumbs-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #204267;
  opacity: .6;
  top: 0;
  left: 0;
}

.inner-breadbrumbs {
  position: relative;
}

.inner-breadbrumbs h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  color: #fff;
}

.inner-breadbrumbs ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  color: #fff;
}

.inner-breadbrumbs ul li a {
  color: #ffffff;
  font-weight: 500;
}




/* why-us */
.why-us {
  margin-top: 100px;
  /* padding: 40px 0; */
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.left-column,
.right-column {
  flex: 1 1 48%;
}

.left-badge {
  display: inline-block;
  background-color: #4c77a3;
  color: #ffffff;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.left-badge i {
  margin-right: 5px;
}

.left-column h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.description,
.mission-text {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
}

.images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* margin-bottom: 20px; */
}

.images-grid.left-img-why-us img {
  height: 360px;
}

.images-grid img {
  margin-bottom: 15px;
  width: 100%;
  /* max-width: 270px; */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.right-img-why-us img {
  height: 575px;
}

.points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.points li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  /* padding-left: 28px; */
  color: #4b5563;
}

.points li i {
  font-size: 20px;
  color: #4c77a3;
  vertical-align: text-bottom;
}

.volunteer-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.volunteer-btn.learn-more {
  width: 12rem;
  height: auto;
}

.volunteer-btn.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #4c77a3;
  border-radius: 1.625rem;
}

.volunteer-btn.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.volunteer-btn.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.volunteer-btn.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.volunteer-btn.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.volunteer-btn:hover .circle {
  width: 100% !important;
}

.volunteer-btn:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.volunteer-btn:hover .button-text {
  color: #fff;
}


/* volunteers section */

.volunteers-sec {
  margin-top: 100px;

}

.inner-bottom-volunteers {
  width: 100%;
  display: flex;

  align-items: center;

}

.volunteers-content {
  text-align: center;
}

.inner-left-volunteers-img {
  margin: 6px;
  width: 48%;
}

.inner-left-volunteers-img img {
  border-radius: 15px;
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.left-images {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}

.left-volunteer-img {
  padding: 20px;
  width: 50%;
}

.right-volunteer-heading h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.volunteers-content p {
  margin-top: 8px !important;
  margin: 0 auto;
  width: 80%;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.volunteers-content h2 {
  text-transform: capitalize;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  position: relative;
}

.volunteers-content h2::before {
  border-radius: 19px;
  margin: 0 auto;
  right: 0;
  content: "";
  position: absolute;
  width: 45%;
  height: 4px;
  background-color: #4c77a3;
  bottom: -17px;
  left: 0;
}

.right-volunteer-heading h2 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 14px;
}

.right-volunteer-heading h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}

.right-volunteer-heading p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.volunteers-list ul {
  margin-bottom: 36px !important;
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.volunteers-list ul li {
  margin-bottom: 8px;
}

.volunteers-list ul li i {
  color: #0B3C32;
  margin-right: 10px;
}


.volunteer-section {
  margin-top: 100px;
  background-color: #1D2941;
  padding: 100px 20px 200px;
}


.volunteer-section .volunteer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.volunteer-section .volunteer-content {
  text-align: center;
}

.volunteer-section .volunteer-content h2 {
  color: #fff;
  /* font-size: 2.5rem;
  margin-bottom: 10px; */
}

.volunteer-section .volunteer-content h2 span {
  color: #D8A5A2;
}

.volunteer-section .volunteer-content p {
  color: #fff;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.volunteer-section .join-btn {
  margin-bottom: 75px;
  display: inline-block;
  background-color: #D8A5A2;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.volunteer-section .volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.volunteer-section .volunteer-card {
  text-align: center;
}

.volunteer-section .volunteer-card img {
  width: 155px;
  height: 155px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #D8A5A2;
}

.volunteer-section .volunteer-card h4 {
  margin-top: 10px;
  font-size: 1rem;
  color: #fff;
}

/* Donate Section */
.inner-volunteer-section .donate-box {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #D8A5A2;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.inner-volunteer-section .donate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-volunteer-section .donate-text {
  align-content: center;
  padding: 30px 50px;
}

.inner-volunteer-section .donate-text small {
  font-weight: bold;
  color: #333;
}

.donate-text h3 {
  color: #1D2941;
  margin: 13px 0;
  font-weight: 600;
  font-size: 27px;
}

.inner-volunteer-section.donate-text h3 {
  color: #1D2941;
  font-weight: 700;
  margin: 15px 0;
  font-size: 28px;
  line-height: 1.4;
}

.inner-volunteer-section .donate-btn {
  display: inline-block;
  background-color: #4F7CA6;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.volunteer-work-sec {
  margin-top: -200px;
}





/* Stats Section */
.stats {
  background: #f8f9fa;
  padding: 4rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #667eea;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 0;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}



/* -------------------mission statement------------- */

.mission-state-section {
  margin-top: 100px;
}

.inner-mission-state-sec {
  width: 100%;
  display: flex;
  align-items: center;
}

.content-wrapper {
  padding: 0 30px 0 0;
  width: 50%;
}

.mission-label {
  color: #4c77a3;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mission-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 30px;
}

.mission-description {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-points {
  padding: 0px;
  margin: 0;
  list-style: none;
  margin-bottom: 40px;
}

.mission-points li {
  position: relative;
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 30px;
}

.cta-button {
  background-color: #4B76A1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* .cta-button:hover {
  background-color: #FFD44A;
  color: #000;
  border-color: #FFD44A;

  transform: translateY(-2px);
} */

.cta-button:hover::after {
  transform: translateX(3px);
}

.images-wrapper {
  width: 50%;

}

.inner-right-activities {
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
  display: flex;
  z-index: 1;
}

.right-activities-img {
  width: 48%;
}

.bg-up {
  margin-top: -20px;
}

.right-activities-img img {
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: 20px;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 25px;
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
}

.image-container img {
  border-radius: 15px;
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.image-large {
  grid-row: 1 / -1;
}

.dove-icon {
  position: absolute;
  top: -20px;
  right: 50px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.dove-icon svg {
  width: 100%;
  height: 100%;
  fill: #ddd;
}

.image-container.image-large.img-state img {
  margin-top: 100px;
}

.checklist {
  margin-bottom: 31px;
  list-style: none;
  padding: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  cursor: pointer;
}

.checkbox {
  width: 20px;
  height: 20px;
  background-color: #4C77A3;
  border-radius: 4px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.2s ease;
}

.checkbox i {
  font-size: 12px;
}

.checkbox.unchecked i {
  display: none;
}

/* ------------------awards section---------------- */
/* Awards Section */
.awards-section {
  position: relative;
  padding: 165px 0 100px;
  height: 100%;
  background-color: #49739a;
  background-position: center;
}



.awards-header {
  z-index: 33;
  position: relative;
  text-align: center;
  /* margin-bottom: 60px; */
}


.awards-icon {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px #4c77a340;
}

.awards-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.awards-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
}

.awards-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 55%;
  margin: 0 auto 40px;
}


.nominate-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.nominate-button:hover {
  transform: 0.3s;
  color: #fff;
}


.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 130px 30px;
  margin-top: 120px;
}

.award-card {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  position: relative;

}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.award-card:hover .award-icon img {
  transform: translate(0, 0) rotateY(180deg);
}

.award-card:hover .award-icon {
  border-color: #4F7CA6;
}

.award-icon {
  margin: 0 auto;
  top: -79px;
  border-color: #ffb6b2;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  /* margin: 0 auto; */
  right: 0;
  left: 0;
  /* bottom: 0; */
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  width: 160px;
  height: 80px;
  line-height: 100px;
  text-align: center;
  transition: 0.4s;
  position: absolute;
}

.award-icon img {
  transition: 0.4s;
  /* z-index: 3333333 !important; */
  width: 50px;
  height: 50px;
}



.award-title {
  font-size: 19px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.award-description {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
  line-height: 25px;
}

/* =============awards-section-categories========== */

.awards-section-categories {
  margin-top: 100px;
}

.award-card:hover .learn-more-btn {
  color: #ffffff;
  background-color: #4F7CA6;
}

/*====================== gallary css==================== 
========================================================*/
section.gallery-sec {
  margin-bottom: 100px;
  margin-top: 100px;
}

.main .inner-gallery-bottom-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .card-image video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsgallery {
  margin-left: 34px;
  width: 100%;
}
/* ------------------------ */

.custom-tab-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-bottom-sec {
  margin-top: 45px;
}

.custom-tab-nav {
  display: inline-flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  /* border-bottom: 2px solid #ccc; */
  justify-content: center;
  margin: 0;
}

.custom-tab-item {
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  transition: all 0.3s ease;
}

.custom-tab-item:hover {
  color: #4F7CA6;
}

.custom-tab-item.active {
  color: #4F7CA6;
  border-bottom: 2px solid #4F7CA6;
}

.tab-content-wrapper {
  display: none;
}

.tab-content-wrapper.active {
  display: block;
}



/* ----------==================Footer sec===============----------- */
.footer-sec {
  position: relative;
  background-color: #1D2941;
  padding: 60px 0 0;
}

/* .footer-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 101%;
  background: rgb(22 22 22 / 90%);
} */

.footer-sec footer {
  z-index: 2;
  position: relative;
  color: white;
}

.footer-news {
  padding: 100px 0 0;
}

.footer-section {
  width: 25%;
}

.footer-content {
  /* align-items: center; */
  width: 100%;
  display: flex;

  gap: 9rem;
}

.footer-img-heading {
  align-items: center;
  margin-bottom: 15px;
  gap: 13px;
  display: flex;
  width: 100%;
}

.footer-bottom .footer-bottom-links {
  display: inline-block;
}

.social-links {

  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  list-style-type: none;
}

.social-links li a {
  text-decoration: none;
  border-radius: 50px;
  height: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 32px;
  background-color: #4F7CA6;
  font-size: 15px;
  color: #ffffff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style: none;
  line-height: 24px;
}

.footer-section:nth-child(2) {
  padding-left: 50px;
}

.footer-bottom-para p {
  line-height: 26px;
  font-size: 15px;
}

.footer-links li a {
  font-size: 15px;
  color: #ffffff;
  display: flex;
  align-items: start;
}

.footer-links li i {
  margin-right: 10px;
  margin-top: 3px;
}

.footer-bottom-links {
  margin-top: 32px;
}

.footer-head-content h2 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}


.inner-img-heading {
  width: 45%;
}

.inner-img-heading img {
  width: 100%;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding: 0 0 20px;
}

.footer-section h3::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 40px;
  height: 2px;
  bottom: 0;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom {
  gap: 35px;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 2rem;
  background: #131f36;
  text-align: center;
  padding: 8px 0;
  margin-top: 50px;
}

.footer-bottom .footer-bottom-links ul li a {
  background-color: #4B76A1;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}


.foot-footer-logo {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.foot-footer-logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #ffffff08;
  margin: auto;
}

.foot-footer-logo span {
  display: inline-block;
  width: 160px;
  position: relative;
  background-color: #1d2941;
  padding-inline: 14px;
}

.foot-footer-logo span img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 13px -4px #00000096;
}

/*======================================== about-us page css=========================================
===================================================================================================== */

/* Who We Are Section */
.who-we-are {
  margin-top: 100px;

}



.who-content {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;

}

.who-image {
  width: 50%;
}

.who-text-para {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
}

.who-text {
  width: 50%;

}

/* Mission & Vision Section */
.mission-vision {
  margin-top: 100px;

}

.mission-vision .mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}


.mission-vision .mv-grid .mv-card {
  background-image: url(../images/gallery_13.jpeg);
  /* background: #843700; */
  padding: 80px 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 25px;

}

.mv-card-content {
  text-align: center;
  position: relative;
  z-index: 11;
}

.mission-vision .mv-grid .mv-card::before {
  top: 0;
  border-radius: 25px;
  left: 0;
  width: 100%;
  position: absolute;
  content: " ";
  height: 100%;
  background: #000000bf;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.mv-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-card h3 i {
  margin-right: 1rem;
  color: #ffffff;
  font-size: 2.25rem;
}

.mv-card p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
}

/* Core Values Section */
.core-values {
  margin-top: 100px;

}

.values-grid {
  grid-template-columns: repeat(3, 1fr);

  display: grid;
  gap: 15px;
  margin-top: 3rem;
}

.value-card {
  box-shadow: 0 0 18px -11px #00000040;
  margin-bottom: 13px;
  /* width: 24%; */
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: #4F7CA6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);

}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Video/Founder Message Section */
.founder-section {
  margin: 100px 0;
  /* padding: 6rem 0; */
  background: white;
}

.founder-content {
  display: flex;
  width: 100%;

  margin-top: 3rem;
}

.founder-video {
  width: 50%;
}

.founder-right-message {
  padding: 0 0 0 30px;
  width: 50%;
}

.video-placeholder {
  /* margin: 0 auto; */
  line-height: 0;
  width: 100%;
  background: #1e293b;
  border-radius: 16px;

  justify-content: center;

}

.video-placeholder video {
  height: 335px;
  /* height: auto; */
  /* height: 499px; */
  border-radius: 16px;
  width: 100%;
}

.play-button {
  width: 80px;
  height: 80px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
}

.play-button:hover {
  transform: scale(1.1);
  background: #2563eb;
}

.founder-message h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.founder-message p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 12px;
}

.founder-info {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.founder-avatar {
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.5rem;
}

.founder-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.founder-details p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* CTA Section */

/* Awards Section */
.slide-up {
  padding: 200px 0 !important;
  position: relative;
  background-position: bottom center !important;
  /* background: none !important; */
  background-size: cover !important;
  background-image: url(../images/Mask-Group-10.png);
  background-repeat: no-repeat !important;
  /* margin-bottom: 100px; */
}


.about-us-cta {
  position: relative;
  z-index: 333;
}

.cta-section {
  margin-top: 100px;
  padding: 6rem 0;
  /* background: #1e293b; */
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


/* =================================contact us page css =============================
=====================================================================================*/
.contact-us {
  margin-top: 100px;
}

.inner-contact-us {
  width: 100%;
}

.location-map {
  line-height: 0;
  width: 100%;
}

.location-map iframe {
  height: 500px;
  width: 100%;
}


/* ==================contact form css============== 
==================================================*/

section.contact-form-sec {

  margin-top: 100px;
}
.Awardform {
  margin-bottom: 100px;
}
.contact-header {
  text-align: center;
  margin-bottom: 30px;
}


.contact-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.contact-form {
  width: 50%;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.contact-form h3 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4F7CA6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

input.submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #4F7CA6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
  background: #4F7CA6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

input.submit-btn:hover {
  background: #4F7CA6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

input.submit-btn:active {
  transform: translateY(0);
}

.contact-info {
  width: 50%;
}
.contact-info-inner-section {
  width: 100%;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 6px solid #4F7CA6;
  transition: all 0.2s ease;
}

.info-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.info-item i {
  font-size: 26px;
  margin-right: 25px;
  margin-top: 0.25rem;
  color: #4F7CA6;
  width: 20px;
}

.info-item .content {
  flex: 1;
}

.info-item .content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-item .content span {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
}

.social-media {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.social-media h4 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  color: #6b7280;
  font-size: 1.25rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.social-icon.instagram:hover {
  background: #e4405f;
  color: white;
  border-color: #e4405f;
}

.social-icon.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

/* our-services-section */

.our-services-section {
  margin-top: 100px;
}

.our-services-section .volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our-services-section .volunteer-card {
  transition: 0.4s;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.our-services-section .volunteer-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.our-services-section .volunteer-card:hover .icon-circle {
  border-color: #1d2941;
}

.our-services-section .volunteer-card:hover .icon-circle img {

  transform: translate(0, 0) rotateY(180deg);
}

.our-services-section .card-image-container {
  padding: 20px 20px 0;
  position: relative;
}

.our-services-section .card-image {
  border-radius: 13px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.our-services-section .img-icon-service {
  position: relative;
}

.our-services-section .icon-circle {
  border-color: #4f7ca6;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  margin: 0 auto;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  width: 160px;
  height: 80px;
  line-height: 100px;
  text-align: center;
  transition: 0.4s;
  position: absolute;
}

.our-services-section .card-icon {
  width: 32px;
  height: 32px;
  fill: white;
}

.our-services-section .card-content {
  padding: 30px 30px 30px;
  text-align: center;
}

.our-services-section .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
}

.our-services-section .card-description {
  font-size: 14px;
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 30px;
}

.learn-more-btn {
  background-color: #4F7CA6;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.learn-more-btn i {
  font-size: 15px;
}

.our-services-section .icon-circle img {
  transition: 0.4s;
  width: 50px;
  height: 50px;
}

/*==================================== what we do page css===============================
========================================================================================= */

.what-we-do-cta {
  margin: 0 auto;
  width: 50%;
  position: relative;
  z-index: 333;
}




/* CTA Section */
.what-we-do-cta-section {
  margin: 100px 0 0;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e3a8a;
  padding: 4rem 2rem;
  text-align: center;
}

.what-we-do-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.what-we-do-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.what-we-do-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.what-we-do-cta-buttons .btn-white {
  background: white;
  color: #1e3a8a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.what-we-do-cta-buttons .btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/*--------------- future css ----------------------- */
.future-sec {
  margin-top: 100px;
  padding: 120px 0;
  background-color: #843700 !important;
  background-image: url(../images/pattern-footer.png);
  background-position: center;
}

.inner-future-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.left-future-content h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}

.left-future-content p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 30px;
}

.future-btn {
  display: inline-block;
  background-color: #4f7ca6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  transition: all 0.3s ease;
}

.left-future-content {
  margin: 0 auto;
  width: 78%;
  text-align: center;
}

.inner-left-future-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.inner-left-future-img img {
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.1s ease-out;
  will-change: transform;
}



/* ------------beforce-sec-------------- */

.beforce-sec {
  margin-top: 100px;


}

.right-beforce-content {
  border-radius: 10px 0 0 0;
  height: 100%;
  background-color: #D9A6A3;
  background-image: url(../images/pattern-footer.png);
  background-position: center;
}

.left-beforce-img {
  margin: 0 -30% 0 0;
  position: relative;
}

.inner-left-before-img {
  width: 100%;
  position: absolute;
  bottom: -105px;
  left: 0;
}

.inner-left-before-img img {
  border-radius: 0 10px 10px 0;
  height: 720px;
  width: 100%;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.inner-beforce-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
  text-align: center;
  height: 100%;
  margin: 0 auto;
  width: 50%;
}

.inner-beforce-content h2 {
  font-size: 50px;
  color: #1D2941;
  margin-bottom: 20px;
}

.inner-beforce-content p {
  font-size: 15px;
  color: #1D2941;
  margin-bottom: 30px;
}



/* -------time-action-------------- */

.time-action {
  padding: 150px 0 100px;
  background-color: #FFD44A;
}

.inner-time-action {
  width: 100%;
}

.time-action-content {
  width: 45%;
  text-align: center;
  margin: 0 auto;
}

.time-action-content h2 {
  font-size: 50px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.time-action-content p {
  font-size: 15px;
  color: #000;
  margin-bottom: 30px;
}

.tag-button {
  margin: 6px 3px;
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tag-button:hover {
  color: #fff;
  transition: 0.3s ease-in-out;
  background-color: #333356;
}


/* -----protecting-child-sec---------- */


.protecting-child-sec {
  margin-top: 100px;
}

.inner-protecting-child {
  width: 100%;
}

.inner-child-grid-one {
  position: relative;
  transition: .3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #33335666;
  background-image: url(../images/gallery_9.jpeg);
}

.inner-child-grid-two {
  position: relative;
  transition: .3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #33335666;
  background-image: url(../images/home-children-3.jpg);
}


.inner-child-grid-three {
  position: relative;
  transition: .3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #33335666;
  background-image: url(../images/home-children-4.jpg);
}

.child-grid-img {
  text-align: center;
  padding: 0 29px 45px;
  position: relative;
  z-index: 333;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.child-grid-btn .button-text {
  margin-left: 45px !important;
  color: #ffffff !important;
}

.child-grid-btn .circle {
  background-color: #4B76A1 !important;
}

.three-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.heading-content-child h2 {
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  font-size: 26px;
}

.child-grid-img:hover .heading-content-child h2 {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  transform: translateY(-10px);
}

.overlay-child {
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #07070954;
}

.child-grid-icon span {
  background: #4B76A1 !important;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.child-grid-icon span i {
  color: #fff !important;
  font-size: 30px;
}

/* --------part-of-change--------- */

.part-of-change-sec {
  background: #D8A5A2;
  padding: 130px 0;
  margin-top: 100px;
  position: relative;

}

.part-of-change-content {
  margin: 0 auto;
  width: 76%;
  text-align: center;
  height: 100%;
}

.inner-left-part-of-change {
  height: 100%;
}

.part-of-change-content {
  height: 100%;
  margin-left: 0;
}

.inner-part-of-change {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.part-of-change-content h2 {
  color: #333356;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.part-of-change-content p {
  font-size: 17px;
  color: #333356;
  margin-bottom: 30px;
}

.part-of-change-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.part-of-change-img img {
  object-fit: cover;
  height: 600px;
  z-index: 333;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.part-of-change-content .future-btn {
  font-size: 20px;
  color: #ffffff;
  background-color: #333356;
}


/* ==========================true-souls-awards page css=========================== 
===================================================================================*/
/* Section Styles */
.award-categories {
  margin-top: 100px;

}


/* Award Categories Section */
.inner-award-sec .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.inner-award-sec .category-card {
  background: #4F7CA6;
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.inner-award-sec .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.inner-award-sec .category-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.inner-award-sec .category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Past Winners Section */

.past-winners-section {
  margin-top: 100px;
}



.winners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.winner-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.winner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4F7CA6;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.winner-card h4 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.winner-card .year {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.winner-card .impact {
  font-size: 0.9rem;
  color: #555;
}

/* Selection Process Section */

.selection-process-sec {
  margin-top: 100px;
  margin-bottom: 100px;
}


.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}



.process-step i {
  font-size: 35px;
  color: #4F7CA6;
  margin: 20px 0 15px;
}

.process-step h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Upcoming Events Section */
.upcoming-events-sec {
  margin-top: 100px;
  margin-bottom: 100px;
}



.events-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.event-card {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: white;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.event-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #f39c12;
}

.event-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.event-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}



/* =====================stories-of-change page css====================== 
=======================================================================*/
.testimonial-section {
  position: relative;
}

.testimonial-card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 90%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.metric-box {
  background-color: #4F7CA6;
  border-radius: 12px;
  color: #ffffff;
}

.right-metric .btn {
  background-color: #4F7CA6;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;

}

.right-metric .btn:hover {
  background-color: #4F7CA6;
  color: #ffffff;
}

.metric-box i {
  color: #ffffff !important;
  display: block;
}

/*featured-stories-section Styles */

.featured-stories-section {
  margin-top: 100px;
}

.inner-featured-stories-section {
  background: white;
  border-radius: 0;
}

.section-header {
  text-align: center;

}

.story-card {
  border: 3px solid #f9f1f1;
  padding: 17px;
  border-radius: 25px;
  overflow: hidden;
  margin: 65px 15px 0;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 310px;
}



.content-section {
  flex: 1;
  padding: 10px 35px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text p {
  font-size: 19px;
  line-height: 1.4;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -0.3px;
}


.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.author-title {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 400;
}

.image-section {
  border-radius: 15px;
  width: 300px;

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  font-weight: 700;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .profile-image {
  transform: scale(1.05);
}



.owl-carousel {
  position: relative;
}


#featured-stories-carousel .owl-dot {
  display: none;
}

.inner-featured-stories-section .owl-nav {
  position: absolute;
  top: 0px;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: 0.3s ease;
}


#featured-stories-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: #4F7CA6;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

#featured-stories-carousel .owl-nav button:hover {

  transform: scale(1.1);
}

#featured-stories-carousel .owl-nav button.owl-prev {
  margin-right: 12px;
}

#featured-stories-carousel .owl-nav button.owl-next {
  margin-right: 0;
}


#featured-stories-carousel .owl-nav button span {
  font-size: 0;
}

#featured-stories-carousel .owl-nav button.owl-prev::after {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 18px;
}

#featured-stories-carousel .owl-nav button.owl-next::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 18px;
}


/* Impact Statistics Section */

.stories-impact-section {
  background-attachment: fixed;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/gallery_13.jpeg);
  margin-top: 100px;
}

.inner-stories-impact-section .volunteers-content {
  color: #ffffff !important;
}

section.stories-impact-section::before {
  height: 100%;
  width: 100%;
  background: #000000ba;
  content: "";
  position: absolute;
}

.inner-stories-impact-section {
  position: relative;
  padding: 80px 0;
}

.inner-stories-impact-section .impact-stats {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.inner-stories-impact-section .stat-card {
  border-radius: 0;
  border-right: 1px solid #ffffff !important;
  position: relative;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: white;
  padding: 12px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-icon.impact-icon {
  border: 3px dotted #ffffff;
  background: transparent;
}


.inner-stories-impact-section .stat-card:last-child {
  border-right: none !important;
}

.inner-stories-impact-section .stat-card:hover {

  transform: translateY(-5px);
}

.inner-stories-impact-section .stat-card:hover .value-icon {
  transform: scale(1.1);
  background: #4F7CA6;
}

.inner-stories-impact-section .stat-card i {
  font-size: 30px;
  color: #ffffff;
}

.inner-stories-impact-section .stat-number h3 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600 !important;
  margin-bottom: 9px;
}

.inner-stories-impact-section .stat-number p {
  font-weight: 400;
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story Categories Section */

.story-categories-section {
  padding: 180px 0 100px;
  background-color: #4F7CA6;
}


.story-categories-heading {
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: -80px 0 0;
  transform: translate(0px, 100px);
}

.category-item {
  border-radius: 16px;
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

}

.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.category-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #4f7ca6;
}

.category-item h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
}

.category-item .story-count {
  color: #7f8c8d;
  font-size: 14px;
  font-weight: 500;
}

/* Community Spotlight Section */


.community-spotlight-section {
  margin: 200px 0 100px;
}

.inner-community-spotlight-section .spotlight-container {
  margin: 0 auto;
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.inner-community-spotlight-section .spotlight-card {
  box-shadow: 0 0 10px -6px #D9A6A3;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #d2e8ff;
  border-radius: 35px;
  width: 100%;
  background: #ffffff;
  color: #000 !important;
  padding: 35px 30px;
  position: relative;
  transition: 0.3s ease;
}

.inner-community-spotlight-section .spotlight-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -12px #D9A6A3;
  transition: 0.3s ease;
}

.spotlight-header {
  margin-bottom: 25px;
}

.spotlight-header span i {
  color: #fff;
  font-size: 30px;
}

.spotlight-header span {
  width: 80px;
  height: 80px;
  background: #4F7CA6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.spotlight-title {
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #1d2941;
}

.spotlight-subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #1d2941;
}

.spotlight-content {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  color: #7f8c8d;
}

/* On load Popup CSS Start */

.inner-image-popup a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.inner-image-popup a img {
  width: 100%;
}

.modal-content-inner {
  position: relative;
  border: none !important;
  outline: none !important;
}

.inner-image-popup button.close {
  background-color: #4b76a1;
  color: #fff;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  line-height: 25px;
  font-size: 13px;
  border-radius: 50px;
  position: absolute;
  right: -25px;
  top: -25px;
  cursor: pointer !important;
  border: 2px solid #fff;
}

#popup_on_load .modal-dialog {
  max-width: 40%;
}

/* On load Popup CSS End */


/* Mobile Menu CSS Start */

.mobile-nav-menu {
  position: fixed;
  width: 50%;
  height: 100%;
  z-index: 99999;
  right: 0;
  top: 0;
  transform: translate(0%, 0);
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-menu ul {
  padding: 20px 30px;
  margin: 0;
  list-style: none;
  background-color: #fff;
  height: 100%;
}

.mobile-nav-menu ul li {
  text-align: start;
}

.mobile-nav-menu ul li a {
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f9f9f9;
}

.mobile-nav-menu ul li a.solid-btn,
.mobile-nav-menu ul li a.bordered-btn {
  background-color: #000;
  text-align: center;
  color: #0fff;
  border-radius: 50px;
  padding: 10px 0;
  border: none;
}

.mobile-nav-menu ul li a.bordered-btn {
  margin-bottom: 20px;
  margin-top: 20px;
}

.mobile-nav-menu ul li a.solid-btn {
  background-color: #4f7ca6;
  color: #fff;
}

.mobile-nav-menu ul li a.solid-btn i,
.mobile-nav-menu ul li a.bordered-btn i {
  margin-right: 12px;
}

.mobile-nav-menu ul li a.bordered-btn {
  margin-bottom: 20px;
  margin-top: 20px;
  border: 2px solid #4f7ca6;
  background-color: #ffffff;
  color: #4f7ca6;
}

.mobile-menu-close-btn #menu_close {
  position: absolute;
  background-color: #4f7ca6;
  left: -50px;
  top: 20px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
}

.mobile-menu::before {
  content: "";
  position: fixed;
  background-color: #0000007a;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translate(-100%, 0);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

#mobile_menu_open {
  color: #4f7ca6;
  width: 40px;
  border-radius: 4px;
  height: 40px;
  font-size: 18px;
  padding: 0;
  background-color: transparent;
  border: 1px solid #4f7ca6;
  display: none;
}

/* Mobile Menu CSS End */

.who-we-are-inner {
  margin-top: 60px;
  align-items: start;
}

.right-column h2 {
  font-size: 32px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 20px;
}

.future-sec h2,
.future-sec .awards-icon,
.future-sec p,
.future-sec .nominate-section a.nominate-button {
  color: #fff !important;
  border-color: #fff !important;
}

.time-action .awards-icon,
.time-action .awards-title,
.time-action .awards-subtitle,
.time-action .awards-description,
.time-action .nominate-section a.nominate-button {
  color: #843700;
  border-color: #843700;
}

.right-metric button.learn-more-btn {
  background-color: #fff;
  color: #4F7CA6;
  border: 2px solid #4f7ca6;
  margin-bottom: 28px;
}

.right-metric button.learn-more-btn {
  background-color: #fff;
  color: #4F7CA6;
  border: 2px solid #4F7CA6;
  margin-bottom: 24px;
}

.explore-stories {
  padding: 165px 0 0px;
}

.learn-btn-outer a.learn-more-btn {
  margin-bottom: 30px;
}

.grecaptcha-badge {
  z-index: 9;
}

/* ==== Blog page CSS Start ==== */
.blog-sec {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgb(0 0 0 / 13%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.blog-content {
  padding: 20px 10px 10px;
}


.blog-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #2d3436;
}

.blog-content p {
  margin: 10px 0;
  line-height: 1.4;
  font-size: 14px;
  color: #636e72;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-content .read-more {
  display: inline-block;
  margin-top: auto;
  padding: 8px 14px;
  color: #4B76A1;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.blog-card:hover .read-more {
  text-decoration: underline;
}

.blog-content .read-more span {
  margin-left: 6px;
}

.blog-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.blog-meta span i {
  margin-right: 9px;
}

.blog-meta span {
  background: #4B76A1;
  color: #fff;
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.blog-card {
  position: relative;
}

.read-more-blog-btn {
  text-align: end;
}
.post-header img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.post-meta {
  gap: 12px;
  color: #777;
  margin-bottom: 20px;
  display: flex;
}

.post-meta span {
  background: #4B76A1;
  color: #fff;
  font-size: 12px;
  padding: 5px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.post-meta i {
  color: #ffffff;
  margin-right: 5px;
}

.post-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.single-blog-text {
  font-size: 25px;
  font-weight: 700;
  color: #212529;
}

blockquote {
  border-left: 4px solid #4B76A1;
  background: #0381ff14;
  padding: 15px 20px;
  font-style: italic;
  margin: 20px 0;
}

.single-blog .sidebar {
  margin-bottom: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 17px -8px #4c77a3;
}

h3.ryt-text-blog {
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 3px solid #4B76A1;
  padding-bottom: 5px;
}

.single-blog .sidebar ul {
  margin-top: 25px;
  list-style: none;
  padding: 0;
}



.single-blog .sidebar ul li {
  margin-bottom: 10px;
}

.single-blog .sidebar ul li a {
  text-decoration: none;
  color: #4B76A1;
}
.outer-img-related {
  /* align-items: center; */
  display: flex;
  /* grid-template-columns: repeat(2, 1fr) !important; */
  gap: 25px;
}

.img-related-news {
  width: 25%;
}

.related-blog-ryt-content {
  width: 75%;
}

.img-related-news img {
  object-fit: cover;
  height: 62px;
  border-radius: 12px;
  width: 62px;
}

.related-blog-ryt-content h4 {
  margin-bottom: 2px;
  font-size: 16px;
}

p.para-blog {
  color: #666;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.related-blog-date p {
  color: #666;
  font-size: 13px;
}

.content-questions ul li {
  list-style-type: none;
}

.content-questions ul li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  line-height: 28px;
  border-left: 3px solid #0000;
  width: 100%;
  padding: 4px 8px;
  display: inline-block;
}
h3#heading-peace-of-mind {
  margin-bottom: 0px !important;
}
h3#heading-efficiency {
  margin-bottom: 0px !important;
}
h3#heading-experience-matters {
  margin-bottom: 0px !important;
}
.content-questions ul li a:hover {
  background-color: #0381ff14 !important;
  border-left-color: #204267;
}

ul.content-list-blog {
  margin: 0;
  padding: 0;
}

.content-questions {
  margin-bottom: 30px;
}
.post-header h3.single-blog-text {
  font-size: 26px;
  margin-top: 25px;
  margin-bottom: 20px;
}
.sticky-sidebar {
  position: sticky;
  top: 0px;
  align-self: flex-start;
  z-index: 10;
}
/* ==== Blog page CSS End ==== */
/* ==== Cf7 Start === */
label.form-check-label {
  text-transform: math-auto !important;
  font-weight: initial !important;
  font-size: 14px !important;

}
span.wpcf7-list-item-label {
  text-transform: math-auto !important;
  font-weight: initial !important;
  font-size: 15px !important;
}
input[type="radio"] {
  padding: 0 !important;
  background-repeat: no-repeat !important;
  width: 13px !important;
  height: 13px !important;
}
input[type="checkbox"] {
  padding: 0 !important;
  background-repeat: no-repeat !important;
  width: 13px !important;
  height: 13px !important;
}
.customcls p {
  margin-bottom: 0px !important;
}
.form-group p {
  margin-bottom: 0px !important;
}
.customcls {
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}
span.wpcf7-list-item.last label {
  margin-bottom: 0px !important;
}
.checkproperty label {
  margin-bottom: 0px !important;
}
.saluteteacher br {
  display: none;
}
.saluteteachers {
  margin-bottom: 0px !important;
}
p.lead-content {
  margin-bottom: 10px;
}
.content-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 15px;
}
.contact-location img {
  width: 20px;
  height: 20px;
}
.contact-location {
  line-height: 30px;
  margin-bottom: 20px;
}
.content-header-image img {
  width: 100%;
  border-radius: 15px;
  height: auto;
  margin-bottom:25px;
}
.eventsection h3 {
    margin-bottom: 10px;
}
select#service {
  width: 100% !important;
  padding: 10px 1rem !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  background: #f9fafb !important;
}
.form-group input, .form-group textarea {
  padding: 10px 1rem !important;
  font-size: 14px !important;
}
.wpcf7-response-output {
  display: none !important;
}
textarea {
  overflow: hidden;
  resize: none;
}
button.swal2-confirm.swal2-styled {
  background: #4F7CA6 !important;
}
.dscf7-captcha-container {
  width: 100% !important;
}
.file-preview {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-item {
  position: relative;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.preview-item img {
  border: none;
  padding: 4px;
  border-radius: 4px;
  height: 100% !important;
}

.remove-file {
  cursor: pointer;
  background-color: #ff4d4d;
  color: white;
  font-size: 18px;
  position: relative;
  top: -38px;
  right: 21px;
}
.svg-inline--fa.fa-w-11 {
  width: 9px !important;
}
.preview-item {
  position: relative;
  display: inline-block;
  margin: 10px;
  border: none !important;
  padding: 8px;
  border-radius: 6px;
  width: 110px;
  text-align: center;
  background: #f9f9f9;
}
.file-preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  max-width: 100px;
  overflow: hidden;
}

.file-name {
  font-size: 12px;
  margin-top: 6px;
  word-break: break-word;
}

.newsgallery .wpcf7-not-valid-tip {
  position: absolute !important;
  left: 20px !important;
  top: 40px !important;
}

div#wpcf7-f355079-o1 .wpcf7-not-valid-tip {
  position: absolute !important;
  left: 20px !important;
  top: 40px !important;
}

.see-morebutton {
    text-align: center;
    margin-top: 30px;
}

/* ==== Cf7 End === */
/* =====================================responsive ============================== */

@media only screen and (max-width: 1800px) {
  .inner-img-sec img {
    height: 700px;
  }

  .contact-header p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1679px) {
  .inner-img-sec img {
    height: 600px;
  }

  .mv-card h3 {
    font-size: 24px;
  }

  .mv-card p {
    font-size: 14px;
    letter-spacing: 0.3px;
  }
}

@media only screen and (max-width: 1439px) {
  .inner-left-volunteers-img {
    margin: 6px;
    width: 47%;
  }

  .left-volunteer-img {
    padding: 0 12px;

  }

  .right-img-why-us img {
    height: 400px;
  }

  .left-column h2 {
    font-size: 25px;

  }

  .mission-title {
    font-size: 42px;
  }

  .part-of-change-content h2 {
    font-size: 38px;
  }

  .awards-title {
    font-size: 38px;
    margin-bottom: 13px;
  }

  .awards-subtitle {
    margin-bottom: 13px;
  }

  .left-badge {
    margin-bottom: 15px;
  }

  .gallery-bottom-sec {
    margin-top: 25px;
  }

  .inner-img-sec img {
    height: 570px;
  }

  .our-services-section .card-title {
    font-size: 18px;
  }

  .our-services-section .card-content {
    padding: 30px 20px 30px;
  }

  .child-grid-img {
    padding: 0 20px 45px;
  }

  .heading-content-child h2 {
    font-size: 22px;
  }

  .volunteer-btn.learn-more .button-text {
    font-weight: 600;
  }

  .breadcrumbs-sec {
    padding: 70px 0px 80px;
  }

  .inner-breadbrumbs h2 {
    font-size: 34px;
    margin: 0 0 14px;
  }

  .category-item h4 {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 30px;
  }

  .inner-community-spotlight-section .spotlight-container {
    width: 82%;
  }
}

@media only screen and (max-width: 1399px) {
  .blog-content h3 {
    font-size: 17px;
  }
}

@media only screen and (max-width: 1365px) {
  .part-of-change-content {
    margin-left: 20px;
  }

  .inner-img-sec img {
    height: 530px;
  }

  .slide-up {
    padding: 170px 0 200px !important;
  }

  .cta-section h2 {
    font-size: 38px;
  }

  .volunteers-content h2 {
    font-size: 38px;
  }

  .right-metric h2.fw-bold {
    font-size: 32px;
    line-height: 45px;
  }

  .testimonial-text p {
    font-size: 17px;
  }

  .location-map iframe {
    height: 350px;
  }

  .nav-links a {
    padding: 12px 30px 12px 0;
  }
}

@media only screen and (max-width: 1279px) {
  .nav-links a {
    font-size: 15px;
    padding: 12px 30px 12px 0;
  }

  .top-donate-btn a {
    font-size: 15px;
    padding: 7px 25px;
  }

  .volunteers-content h2 {
    font-size: 38px;
  }

  .inner-stories-impact-section .stat-number h3 {
    font-size: 40px;
  }

  .part-of-change-sec {
    padding: 90px 0 110px;
  }

  .learn-more-btn {
    padding: 9px 30px;
  }

  .points {
    margin-bottom: 30px;
  }

  .part-of-change-content .future-btn {
    font-size: 17px;
  }

  .part-of-change-img img {
    height: 530px;
  }

  .part-of-change-content {
    margin-left: 35px;
  }

  .inner-logo img {
    top: -80px;
  }

  .highlight-title {
    font-size: 18px;
  }

  .part-of-change-content h2 {
    font-size: 38px;
  }

  .awards-description {
    max-width: 75%;
  }

  .volunteer-section .volunteer-content p {
    max-width: 790px;
  }

  .donate-text h3 {
    font-size: 24px;
  }

  .inner-img-sec img {
    height: 500px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .info-item .content span {
    font-size: 15px;
  }

  .info-item {
    padding: 15px 18px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 18px;
    border-radius: 5px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .form-group label {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .top-donate-btn a {
    font-size: 14px;
    padding: 7px 15px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 30px 12px 0;
  }

  .logo {
    width: 12%;
  }

  .inner-logo img {
    top: -64px;
    border: 3px solid #fff;
  }

  .highlight-icon {
    font-size: 30px;
  }

  .highlight-title {
    font-size: 15px;
    font-family: 'Poppins';
  }

  .volunteers-content h2,
  .mission-title,
  .part-of-change-content h2,
  .awards-title {
    font-size: 34px;
  }

  p,
  li,
  a {
    font-size: 14px !important;
    letter-spacing: 0.3px;
  }

  .inner-volunteer-section .donate-text {
    align-content: center;
    padding: 30px 30px;
  }

  .donate-text h3 {
    font-size: 21px;
  }

  .awards-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
  }

  .inner-img-sec img {
    height: 420px;
  }

  .inner-right-activities {
    gap: 17px;
  }

  .points li {
    display: flex;
    align-items: start;
    gap: 7px;
  }

  .points li i {
    font-size: 15px;
    margin-top: 3px;
  }

  .volunteer-btn.learn-more .circle {
    width: 40px;
    height: 40px;
  }

  .volunteer-btn.learn-more .circle .icon.arrow {
    left: 0.4rem;
  }

  .volunteer-btn.learn-more .circle .icon {
    top: 1px;
  }

  .volunteer-btn.learn-more .button-text {
    line-height: 1.1;
  }

  .section-container {
    gap: 24px;
  }

  .images-grid {
    gap: 0px;
  }

  .left-badge {
    margin-bottom: 20px;
  }

  .left-column h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .images-grid img {
    margin-bottom: 24px;
  }

  .inner-stories-impact-section .stat-number h3 {
    font-size: 32px;
  }

  .inner-stories-impact-section .stat-card i {
    font-size: 24px;
  }

  .right-activities-img img {
    height: 260px;
  }

  .part-of-change-content {
    margin-left: 0;
    width: 86%;
  }

  .award-title {
    font-size: 18px;
  }

  .highlights-section {
    margin-top: 70px;
  }

  .volunteer-section {
    margin-top: 70px;
    padding: 70px 20px 200px;
  }

  .stories-impact-section {
    margin-top: 70px;
  }

  .inner-stories-impact-section {
    padding: 70px 0;
  }

  .mission-state-section {
    margin-top: 90px;
  }

  .part-of-change-sec {
    padding: 70px 0 110px;
    margin-top: 70px;
  }

  .awards-section {
    padding: 165px 0 70px;
  }

  .awards-section-categories {
    margin-top: 70px;
  }

  .why-us {
    margin-top: 90px;
  }

  .left-img-why-us img:last-child {
    margin-bottom: 0;
  }

  section.gallery-sec {
    margin-bottom: 70px;
    margin-top: 70px;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-head-content h2 {
    font-size: 18px;
  }

  .awards-grid {
    gap: 110px 30px;
  }

  .breadcrumbs-sec {
    padding: 60px 0px 50px;
  }

  .mission-vision .mv-grid .mv-card {
    padding: 40px 40px;
  }

  .what-we-do-cta {
    width: 100%;
  }

  .cta-button {
    padding: 10px 30px;
    font-weight: 500;
  }

  .heading-content-child h2 {
    font-size: 20px;
  }

  .child-grid-img {
    padding: 0 20px 30px;
    gap: 150px;
  }

  #popup_on_load .modal-dialog {
    max-width: 70%;
  }

  .slide-up {
    padding: 130px 0 200px !important;
  }

  .cta-section {
    margin-top: 70px;
  }

  .protecting-child-sec {
    margin-top: 70px;
  }

  .volunteers-content p {
    width: 100%;
  }

  .our-services-section {
    margin-top: 70px;
  }

  .inner-community-spotlight-section .spotlight-container {
    width: 90%;
  }

  .right-metric {
    padding-left: 10px !important;
  }

  .featured-stories-section {
    margin-top: 70px;
  }

  .metric-box i {
    font-size: 21px;
    margin-bottom: 15px !important;
  }

  .metric-box h3 {
    font-size: 25px;
    margin-bottom: 6px;
  }

  .metric-box p {
    margin-bottom: 0;
  }

  .category-item i {
    font-size: 30px;
  }

  .category-item .story-count {
    font-size: 13px !important;
  }

  .category-grid {
    margin: -160px 0 0;
    transform: translate(0px, 160px);
  }

  .spotlight-header span i {
    font-size: 22px;
  }

  .spotlight-header span {
    width: 70px;
    height: 70px;
  }

  .spotlight-title {
    font-size: 22px;
  }

  .spotlight-content {
    font-size: 14px;
    line-height: 26px;
  }

  .community-spotlight-section {
    margin: 160px 0 70px;
  }

  .inner-community-spotlight-section .spotlight-card {
    margin-bottom: 0;
  }

  section.contact-form-sec {
    margin-top: 70px;
  }
  .Awardform {
    margin-bottom: 100px;
  }
  .contact-us {
    margin-top: 70px;
  }

  .blog-sec {
    padding: 70px 0;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .footer-section {
    width: 46%;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-section:nth-child(2) {
    padding-left: 0;
  }

  .footer-bottom-heading {
    padding-right: 30px;
  }

  .footer-content {
    gap: 24px 55px;
    flex-wrap: wrap;
  }

  .nav-links,
  .top-donate-btn {
    display: none;
  }

  #mobile_menu_open {
    display: inline-block;
  }

  .logo {
    width: 16%;
  }

  .inner-logo img {
    top: -61px;
  }

  .bottom-header {
    padding: 12px 0;
  }

  .menuShow .mobile-nav-menu,
  .menuShow.mobile-menu::before {
    transform: translate(0%, 0);
    visibility: visible;
    opacity: 1;
    transition: .3s;
  }

  .inner-img-sec img {
    height: 324px;
  }

  .volunteers-content h2,
  .mission-title,
  .part-of-change-content h2,
  .awards-title {
    font-size: 28px;
  }

  .volunteer-section .volunteer-content p {
    max-width: 100%;
    width: 100%;
  }

  .volunteer-section .volunteer-card img {
    width: 105px;
    height: 105px;
    border: 2px solid #D8A5A2;
  }

  .volunteer-section .volunteer-card h4 {
    font-size: 14px;
    letter-spacing: 0.3px;
  }

  .volunteer-section .join-btn {
    margin-bottom: 45px;
  }

  .volunteer-section {
    padding: 70px 20px 185px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 15px;
  }

  .value-icon.impact-icon {
    border: 2px dotted #ffffff;
  }

  .inner-stories-impact-section .stat-card i {
    font-size: 20px;
  }

  .inner-stories-impact-section .stat-number h3 {
    font-size: 24px;
  }

  .inner-stories-impact-section .stat-number p {
    font-size: 12px !important;
  }

  .content-wrapper {
    padding: 0;
    width: 100%;
  }

  .content-wrapper {
    padding: 0;
    width: 100%;
  }

  .inner-mission-state-sec {
    flex-wrap: wrap;
  }

  .inner-right-activities {
    margin-top: 70px;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }

  .left-column {
    text-align: center;
  }

  .left-column h2 {
    margin-bottom: 30px;
  }

  .part-of-change-img img {
    height: 350px;
  }

  .part-of-change-sec {
    padding: 70px 0 70px;
  }

  .part-of-change-content {
    width: 90%;
  }

  .awards-section {
    padding: 70px 0 70px;
  }

  .awards-description {
    max-width: 100%;
  }

  .awards-subtitle {
    margin-bottom: 13px;
  }

  .awards-icon {
    font-size: 38px;
  }

  .images-wrapper {
    width: 100%;
  }

  .volunteer-section .volunteer-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  #popup_on_load .modal-dialog {
    max-width: 70%;
  }

  .mission-title br {
    display: none;
  }

  .mission-state-section {
    margin-top: 70px;
  }

  .stories-impact-section {
    margin-top: 80px;
  }

  .volunteers-content p {
    width: 98%;
  }

  .right-column h2 {
    font-size: 27px;
  }

  .who-we-are-inner {
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .who-we-are-inner .inner-right-activities {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .mission-vision {
    margin-top: 70px;
  }

  .mission-vision .mv-grid .mv-card {
    padding: 30px 20px;
  }

  .mv-card h3 i {
    font-size: 24px;
  }

  .mv-card h3 {
    font-size: 22px;
  }

  .core-values {
    margin-top: 70px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    gap: 24px;
  }

  .value-card {
    margin-bottom: 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-button {
    padding: 10px 30px;
    font-weight: 500;
  }

  .slide-up {
    padding: 100px 0 !important;
    background-position: 57% 50% !important;
  }

  .cta-section {
    margin-top: 70px;
  }

  .cta-section h2 {
    margin-bottom: 18px;
  }

  .cta-section p {
    margin-bottom: 18px;
  }

  .founder-video {
    width: 100%;
  }

  .founder-right-message {
    padding: 0 0 0 0px;
    width: 100%;
  }

  .founder-content {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .founder-message h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .founder-section {
    margin: 70px 0;
  }

  .our-services-section .volunteer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .heading-content-child h2 {
    line-height: 32px;
  }

  .child-grid-img {
    gap: 100px;
  }

  .child-grid-icon span i {
    font-size: 24px;
  }

  .child-grid-icon span {
    width: 70px;
    height: 60px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: -350px 0 0;
    transform: translate(0px, 340px);
  }

  .community-spotlight-section {
    margin: 340px 0 70px;
  }

  .spotlight-title {
    font-size: 20px;
  }

  .inner-featured-stories-section>.row {
    flex-direction: column-reverse;
  }

  .story-card {
    margin: 0px 0px 0;
  }

  .inner-featured-stories-section .owl-nav {
    top: 0px;
    bottom: 0;
    margin: auto 0;
    transform: translateY(0%);
    justify-content: space-between;
    align-items: center;
  }

  #featured-stories-carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }

  #featured-stories-carousel .owl-nav button.owl-prev::after {
    font-size: 16px;
  }

  #featured-stories-carousel .owl-nav button.owl-prev {
    transform: translate(-23px, 0px);
  }

  #featured-stories-carousel .owl-nav button.owl-next {
    transform: translate(23px, 0px);
  }

  #featured-stories-carousel {
    margin-top: 50px;
  }

  .inner-featured-stories-section .mb-5 {
    margin-bottom: 0 !important;
  }

  .newsletter-section {
    padding: 25px 0px;
  }

  .inner-newsletter {
    width: 100%;
  }

  .newsletter-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .newsletter-input {
    width: 56%;
    font-size: 15px;
  }

  .newsletter-button {
    font-size: 15px;
  }

  .newsletter-section {
    padding: 70px 0px;
  }

  .inner-newsletter {
    padding: 0;
  }

  .contact-grid {
    gap: 70px;
    flex-wrap: wrap;
  }

  .contact-form,
  .contact-info {
    box-shadow: none;
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .logo {
    width: 23%;
  }

  .highlight-grid {
    gap: 20px;
  }

  .highlights-section {
    margin-top: 50px;
  }

  .volunteer-section {
    padding: 50px 20px 185px;
    margin-top: 50px;
  }

  .volunteers-content h2,
  .mission-title,
  .part-of-change-content h2,
  .awards-title {
    font-size: 26px;
  }

  .volunteer-section .join-btn {
    font-weight: 500;
  }

  .volunteer-section .volunteer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .inner-volunteer-section .donate-box {
    grid-template-columns: revert;
  }

  .donate-btn {
    font-weight: 500;
  }

  .inner-stories-impact-section .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-stories-impact-section .stat-card:nth-child(2) {
    border-right: none !important;
    border-bottom: 1px solid #ffffff;
  }

  .inner-stories-impact-section .stat-card:nth-child(1) {
    border-bottom: 1px solid #ffffff;
  }

  .inner-stories-impact-section .stat-card {
    padding: 30px 12px;
  }

  .inner-stories-impact-section {
    padding: 50px 0;
  }

  .mission-state-section {
    margin-top: 50px;
  }

  .inner-part-of-change {
    grid-template-columns: repeat(1, 1fr);
  }

  .right-part-of-change {
    display: none;
  }

  .part-of-change-content {
    width: 100%;
  }

  .award-icon {
    top: -68px;
    width: 140px;
    height: 70px;
  }

  section.gallery-sec {
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .custom-tab-wrapper {
    margin-bottom: 30px;
  }

  .custom-tab-item {
    font-size: 16px !important;
  }

  .gallery-bottom-sec {
    margin-top: 7px;
  }

  .volunteer-btn.learn-more {
    display: block;
    margin: 0 auto;
  }

  .awards-section {
    padding: 50px 0 50px;
  }

  .awards-section-categories {
    margin-top: 50px;
  }

  .part-of-change-sec {
    padding: 50px 0 50px;
  }

  .foot-footer-logo span {
    width: 130px;
  }

  .footer-sec {
    padding: 50px 0 0;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom-heading {
    padding-right: 0;
  }

  .footer-bottom p {
    font-size: 12px !important;
  }

  .img-slider-section .owl-nav button.owl-prev i,
  .img-slider-section .owl-nav button.owl-next i {
    font-size: 16px;
  }

  .img-slider-section .owl-nav button.owl-prev,
  .img-slider-section .owl-nav button.owl-next {
    height: 45px;
    width: 45px;
    line-height: 48px !important;
  }

  .inner-img-sec img {
    height: 264px;
  }

  #popup_on_load .modal-dialog {
    margin: 0 auto;
  }

  .inner-breadbrumbs h2 {
    font-size: 30px;
    margin: 0 0 10px;
    ;
  }

  .mission-vision .mv-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .cta-button {
    font-size: 12px !important;
  }

  .founder-message h3 {
    font-size: 22px;
  }

  .founder-details h4 {
    margin-bottom: 2px;
  }

  .founder-avatar {
    width: 50px;
    height: 50px;
  }

  .three-box-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .inner-child-grid-one {
    border-radius: 8px;
    overflow: hidden;
  }

  .what-we-do-cta {
    width: 90%;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section {
    margin-top: 50px;
  }

  .protecting-child-sec {
    margin-top: 50px;
  }

  .future-sec {
    margin-top: 50px !important;
  }

  .our-services-section {
    margin-top: 50px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    transform: translate(0px, 0px);
  }

  .community-spotlight-section {
    margin: 50px 0 50px;
  }

  .inner-community-spotlight-section .spotlight-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .featured-stories-section {
    margin-top: 50px;
  }

  .learn-btn-outer {
    text-align: center;
  }

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

  .newsletter-input,
  button.newsletter-button {
    height: 44px;
    font-size: 14px;
  }

  .newsletter-title {
    margin-bottom: 24px;
  }

  section.contact-form-sec {
    margin-top: 50px;
  }
  .Awardform {
    margin-bottom: 50px;
  }
  .contact-us {
    margin-top: 50px;
  }

  .contact-grid {
    gap: 50px;
  }

  .blog-sec {
    padding: 50px 0;
  }

  .blog-content h3 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 640px) {
  .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .volunteers-content h2,
  .mission-title,
  .part-of-change-content h2,
  .awards-title {
    font-size: 24px;
  }

  .volunteer-section .join-btn {
    padding: 10px 24px;
  }

  .inner-volunteer-section .donate-text {
    padding: 20px 20px;
  }

  .left-column h2 {
    font-size: 21px;
    line-height: 28px;
  }

  .main .inner-gallery-bottom-sec {
    grid-template-columns: repeat(2, 1fr);
  }

  .nominate-button {
    padding: 10px 25px;
  }

  p,
  li,
  a {
    font-weight: 400 !important;
  }

  .awards-subtitle {
    font-size: 16px;
  }

  .nominate-button {
    border: 1px solid #ffffff;
  }

  .img-slider-section .owl-nav button.owl-next {
    right: 5px;
  }

  .img-slider-section .owl-nav button.owl-prev {
    left: 5px;
  }

  .part-of-change-content a.nominate-button {
    border: 1px solid #333356 !important;
  }

  .right-column h2 {
    font-size: 23px;
  }

  .mission-vision {
    margin-top: 50px;
  }

  .core-values {
    margin-top: 50px;
  }

  .values-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .value-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .stories-impact-section {
    margin-top: 50px;
  }

  .part-of-change-sec {
    margin-top: 50px;
  }

  .why-us {
    margin-top: 50px;
  }

  .our-services-section .volunteer-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .inner-breadbrumbs h2 {
    font-size: 25px;
  }

  .inner-breadbrumbs ul {
    gap: 10px;
  }

  #popup_on_load .modal-dialog {
    max-width: 80%;
  }

  #featured-stories-carousel .owl-nav button.owl-prev {
    transform: translate(-15px, 0px);
  }

  #featured-stories-carousel .owl-nav button.owl-next {
    transform: translate(15px, 0px);
    margin-right: 7px;
  }

  .right-metric h2.fw-bold {
    font-size: 22px;
    line-height: 30px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 12px;
  }

  .info-item i {
    font-size: 21px;
    margin-right: 18px;
    margin-top: 0;
  }

  .submit-btn {
    padding: 12px 1.5rem;
    border-radius: 5px;
  }

  .spotlight-title {
    font-size: 18px;
  }

  .spotlight-header {
    margin-bottom: 10px;
  }

  .spotlight-subtitle {
    margin-bottom: 0;
  }

  .category-item .story-count {
    margin-bottom: 0;
  }

  .category-item {
    padding: 20px;
  }

  .metric-box h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .category-item i {
    font-size: 24px;
  }

  .category-item h4 {
    font-size: 14px;
  }

  .blog-card img {
    height: auto;
  }

  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .volunteer-section .volunteer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo {
    width: 38%;
  }

  .highlight-grid {
    margin-top: 15px;
  }

  .volunteer-section {
    padding: 50px 0px 185px;
    margin-top: 50px;
  }

  .inner-right-activities {
    gap: 12px;
  }

  .awards-icon {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .volunteers-content h2,
  .mission-title,
  .part-of-change-content h2,
  .awards-title {
    font-size: 22px;
  }

  .awards-subtitle {
    font-size: 15px;
  }

  .award-title {
    font-size: 17px;
  }

  .learn-more-btn {
    font-size: 13px;
  }

  .left-column h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .images-grid.left-img-why-us img {
    height: 100%;
  }

  .volunteer-btn.learn-more .circle {
    width: 34px;
    height: 34px;
  }

  .volunteer-btn.learn-more .circle .icon.arrow {
    left: 0.2rem;
  }

  .volunteer-btn.learn-more .button-text {
    padding: 10px 0;
    font-weight: 500;
    line-height: 1;
  }

  .footer-content {
    gap: 34px;
  }

  .mobile-nav-menu {
    width: 80%;
  }

  .inner-image-popup button.close {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
    right: -10px;
    top: -10px;
    border: 1px solid #fff;
  }

  #popup_on_load .modal-dialog {
    max-width: 83%;
  }

  .inner-breadbrumbs ul li a,
  .inner-breadbrumbs ul li {
    font-size: 12px !important;
  }

  .right-activities-img img {
    height: 170px;
  }

  .cta-section h2 {
    font-size: 23px;
  }

  .slide-up {
    background-position: 51% 50% !important;
  }

  .inner-img-sec img {
    height: 154px;
  }

  .who-we-are-inner .right-column p.mission-description:last-child {
    margin-bottom: 0;
  }

  .mv-card h3 {
    font-size: 18px;
  }

  .value-card h3 {
    font-size: 16px;
  }

  .founder-section {
    margin: 50px 0;
  }

  .awards-grid {
    margin-top: 90px;
  }

  .inner-breadbrumbs h2 {
    font-size: 24px;
  }

  .breadcrumbs-sec {
    padding: 40px 0px 30px;
  }

  .our-services-section .icon-circle img {
    width: 40px;
    height: 40px;
  }

  .our-services-section .icon-circle {
    border-width: 6px 6px 0 6px;
    width: 140px;
    height: 70px;
    line-height: 90px;
  }

  .newsletter-input {
    width: 100%;
    margin-bottom: 20px;
  }

  .newsletter-title {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .newsletter-section {
    padding: 50px 0px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
  }

  .info-item .content span {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 12px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 17px;
  }
}