:root {
  --dark-bg: #0a0a2e;
  --light-bg: #fff;
  --bg-page: #f8f8f8;
  --bg-signUp: #09219e;
  --dark-navbar: #10173b;
  --dark-card: #10173b;
  --text-white-custom: #f8f9fa;
  --text-black-custom: #000;
  --text-muted-custom: #adb5bd;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-primary: #0d6efd;
  --success-light: rgba(25, 135, 84, 0.2);
  --info-light: rgba(13, 202, 240, 0.2);
  --warning-light: rgba(255, 193, 7, 0.2);
  --primary-light: rgba(13, 110, 253, 0.2);
  --danger-light: rgba(220, 53, 69, 0.2);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-page);
  color: var(--text-black-custom);
  font-family: "Poppins", sans-serif;
}

/* Navbar */

.navbar-container {
  background-color: var(--light-bg);
  border-radius: 1.5rem;
  margin-top: 2rem;
  padding-left: 1rem;
  display:flex;
  position: sticky;
  top: 2px;
  left: 1rem;
  right: 1rem;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 1.2rem;

  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

 .mobile-signin{


    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;

 }
@media (min-width: 993px) {

    .mobile-signin{
        display: none;
    }
}

.navbar-logo img {
  max-height: 40px;

}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-black-custom);
  transition: color 0.4s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--bg-signUp);
  transition: transform 0.4s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: var(--bg-signUp);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Active link (always visible underline) */
.nav-links .active-link {
  color: var(--bg-signUp) !important;
  font-weight: 700 !important;
}

.nav-links .active-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--bg-signUp);
}

.btn-signup {
  border: none;
  cursor: pointer;
  background-color: #fff;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}

.btn-signup-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-signUp);
  color: var(--light-bg);
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-white-custom);
  margin-left: 1rem;
}

@media (max-width: 992px) {
  .navbar-container {
    padding: 0.5rem;
    margin-top: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--light-bg);
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.show {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0;
  }

  .nav-links a {
    padding: 0.8rem;
    text-align: center;
    display: block;
  }

  .btn-signup {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: row;
    border-radius: 1rem;
  }
}

/* Banner css */
.hero-banner-section {
  min-height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

/* Light red gradient overlay */
.hero-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(249, 49, 35, 0.3),
    rgba(249, 49, 35, 0.4),
    rgba(249, 49, 35, 0.718)
  );
  z-index: 2;
}

.container,
.content-wrapper {
  position: relative;
  z-index: 3;
}

.hero-banner-section .container {
  text-align: left;
}

.hero-banner-section .content-wrapper {
  margin-left: 5%;
  max-width: 700px;
}

.hero-banner-section h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-banner-section .lead {
  max-width: 600px;
  font-size: 1.1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-banner-section {
    min-height: 80vh;
    border-radius: 20px;
  }

  .hero-banner-section .content-wrapper {
    margin-left: 0;
    text-align: center;
  }

  .hero-banner-section .lead {
    margin: 0 auto;
  }

  .hero-banner-section h1 {
    font-size: 2.2rem;
  }

  .hero-banner-section .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-banner-section {
    height: 100vh;
    width: 100%;
    border-radius: 0;
    padding: 0 !important;
  }

  .hero-banner-section h1 {
    font-size: 1.8rem;
  }

  .hero-banner-section .lead {
    font-size: 1rem;
  }

  .hero-banner-section .d-flex {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-banner-section .content-wrapper {
    padding: 1.5rem;
  }
}

/* about us */
.about-us {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

/* Programs css */
.custom-gradient-bg {
  /* background: linear-gradient(to top right, #ff914d, #4e2357); */
   background: linear-gradient(to top right, #23085a , #23085a);   
  min-height: 500px;
}

.programs-custom {
  padding: 3rem;
}

.button-custom-small {
  background-color: #15f3b1;
  border-color: #55c7a5;
  color: rgb(3, 3, 125);
}
.button-custom-small:hover {
  background-color: black;
  border-color: #4a4c4b;
  color: #fff;
}
.button-custom-small-hero {
  background-color: #fff;
  border-color: #fff;
  color: rgb(3, 3, 125);
}
/* .button-custom-small-hero:hover {
  background-color: black;
  border-color: #4a4c4b;
  color: #fff;
} */

.button-custom {
  border-radius: 30px;
  background-color: #15f3b1;
  border-color: #55c7a5;
  color: #302b2b !important;
  font-weight: 500;
}

.custom-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.custom-btn {
  background-color: #38c172;
  border-color: #38c172;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #2da45e;
  border-color: #2da45e;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(56, 193, 114, 0.5);
}

.shadow-custom {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-radius: 0.75rem !important;
}

.border-underline {
  height: 1px;
  width: 14rem;
  background: linear-gradient(to top right, #fff, rgb(225, 218, 218));
  margin: 0.5rem auto 0;
  border: none;
  border-radius: 5px;
}

@media (max-width: 576px) {
  .programs-custom {
    padding: 1rem;
  }
}

/* review css */

.testimonial-card {
  border-radius: 15px;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
  border: 2px solid #38d9a9;
}

.testimonial-stars {
  color: #38d9a9;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.center-image-card {
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
  text-align: center;
  background: (var(--danger-light));
}

.center-image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
}

.center-image-card .author-info {
  padding: 15px;
  background: #fff;
}

.btn-review {
  background-color: #38d9a9;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  border: none;
}

.btn-review:hover {
  background-color: #2bb391;
}

@media (max-width: 576px) {
  .testimonial-card {
    border-radius: 15px;
    padding: 20px;

    height: 100%;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    border-radius: 15px;
    padding: 20px;

    height: 100%;
  }
}

/* blogs css */

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.btn-explore {
  display: inline-block;
  background-color: #1ecd7b;
  color: #081869;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  margin: 1rem auto 0;
}

.btn-explore:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  color: white;
}

.blog-card {
  background-color: var(--card-bg);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 20px;
}

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

.blog-img {
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.location-badge {
  background-color: #15f3b1;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.date-badge {
  background-color: #15f3b1;
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 1rem 0 0.75rem;
  line-height: 1.3;
}

.blog-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge-container {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.border-underline-blog {
  height: 2px;
  width: 5rem;
  background: linear-gradient(to top right, #000, #0a0a2e);
  margin: 0.5rem auto 0;
  border: none;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .card-body {
    padding: 1rem;
  }
}

/* Counselling */

.hero-counselling-section {
  background-size: cover;
  min-height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 60vh;
  padding: 3rem 0;
}

.hero-counselling-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(17, 45, 228, 0.4),
    rgba(38, 107, 196, 0.4),
    rgba(245, 92, 10, 0.781)
  );
  z-index: 3;
}

.content-wrapper-counselling {
  position: relative;
  z-index: 9;
}

.hero-counselling-section h1 {
  font-size: 3rem;
  line-height: 1.2;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-counselling-section {
    min-height: 80vh;
  }

  .hero-counselling-section .content-wrapper {
    margin-left: 0;
    text-align: center;
  }

  .hero-counselling-section .lead {
    margin: 0 auto;
  }

  .hero-counselling-section h1 {
    font-size: 2.2rem;
  }

  .hero-counselling-section .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-counselling-section {
    height: 400px;
    width: 100vw;
    padding: 0 !important;
    /* background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; */
  }

  .hero-counselling-section h1 {
    font-size: 1.8rem;
  }

  .hero-counselling-section .lead {
    font-size: 1rem;
  }

  .hero-counselling-section .d-flex {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-counselling-section .content-wrapper {
    padding: 1.5rem;
    margin-left: 0;
    text-align: center;
    margin-top: 15%;
  }
}

/* --- Footer--- */

app-footer {
  background-color: var(--footer-bg);
  border-radius: 2rem;
  color: var(--text-black-custom);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--footer-primary-text);
  margin-bottom: 1.5rem;
}

.footer-col:first-child .footer-heading {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-black-custom);
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--footer-primary-text);
}

.contact-item i {
  color: var(--footer-primary-text);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--footer-li-text);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--footer-primary-text);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted-custom);
}

.copyright-text .fw-bold {
  color: var(--text-black-custom);
}

/* Footer Alignment Fix */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col:first-child {
  align-items: flex-start;
  text-align: left;
}

.footer-col:nth-child(2) {
  align-items: center;
  text-align: center;
}

.footer-col:last-child {
  align-items: center;
  text-align: right;
}

/* Responsive - center all on mobile */
@media (max-width: 768px) {
  .app-footer {
    border-radius: 1rem;
  }

  .footer-col,
  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col:last-child {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-bottom-bar > div {
    text-align: center;
    flex-direction: column;
  }
}
/* blogs css */

.section-title {
  font-weight: 700;
  font-size: 3rem;
  color: #110369;
  text-align: center;
  margin-bottom: 0.5rem;
}

.btn-explore {
  display: inline-block;
  background-color: #1ecd7b;
  color: #081869;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  margin: 1rem auto 0;
}

.btn-explore:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  color: white;
}

.blog-card {
  background-color: var(--card-bg);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 20px;
}

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

.blog-img {
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.location-badge {
  background-color: #15f3b1;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.date-badge {
  background-color: #15f3b1;
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 1rem 0 0.75rem;
  line-height: 1.3;
}

.blog-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge-container {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.border-underline-blog {
  height: 2px;
  width: 11rem;
  background: linear-gradient(to top right, #000, #adadef);
  border: 1px solid blue;
  margin: 0.5rem auto 0;
  border: none;
}

.button-custom {
  border-radius: 30px;
  background-color: #fff;
  border: 2px solid #06f8b0;
  color: #302b2b !important;
  font-weight: 500;
}



.button-pagination {
  border: 2px solid #52e0b3;
  color: #52e0b3;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.button-pagination:hover,
.button-pagination.active {
  background-color: #52e0b3;
  color: #fff;
}

.gap-custom {
  gap: 20px;
}

@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .card-body {
    padding: 1rem;
  }

  .button-pagination {
    border: 2px solid #52e0b3;
    color: #52e0b3;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    /* px-4 py-2 */
    padding-right: 6px;
    padding-left: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .button-pagination:hover,
  .button-pagination.active {
    background-color: #52e0b3;
    color: #fff;
  }

  .gap-custom {
    gap: 6px;
  }
}

/* about................................. */
body,
.aboutpage {
  background-color: var(--footer-bg);
}
.imgdiv {
  background-image: url("../Images/about/about8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: border-box;
  min-width: 100%;
  height: 75vh;
  overflow: hidden;
  border-radius: 3.3rem;
  z-index: 1;
}

.imgdiv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #c578be,
    rgba(245, 92, 10, 0.381),
    rgba(245, 92, 10, 1)
  );
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

@media (max-width: 1100px) {
  .imgdiv {
    min-width: 98%;
    height: 80vh;
  }
}

.aboutpage .herodes {
  z-index: 5;
}

.aboutpage .herodes p {
  font-size: clamp(0.8rem, 2vw, 1.3rem);
  font-weight: medium;
  padding: 1rem 3rem;
  border-radius: 35px;
  transition: all 0.8ms ease;
}

.aboutpage .herodes h1 {
  z-index: 2;
  /* color: var(--text-white-custom); */
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: clamp(2.5rem, 3vw, 4rem);
}

.aboutpage .herodes a {
  text-decoration: none;
  z-index: 2;
  background-color: #23085a;
  color:white;
  padding: 0.6rem 1rem;
  padding-left: 1.5rem;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: center;
  transition: all 6ms ease-in;
}

.aboutpage .herodes a:hover {
  background-color: #23085a;
  gap: 2.2rem;
}

@media (max-width: 720px) {
  .aboutpage .herodes p {
    padding: 1rem 2rem;
  }

  .aboutpage .herodes a {
    padding: 0.5rem 1rem;
  }
}

.aboutpage .herodes a i {
  color: var(--text-white-custom);
  background-color: var(--dark-bg);
  padding: 0.6rem;
  border-radius: 50%;
}

.ourCommintment main {
  background-color: var(--light-bg);
  width: 99%;
  border-radius: 3rem;
  overflow: hidden;
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 920px) {
  .ourCommintment main {
    width: 97%;
    padding: 1.5rem 0.5rem;
  }
}

.ourCommintment main h2 {
  font-size: clamp(1.2rem, 5vw, 3rem);
  font-weight: bold;
}

.ourCommintment main h2 p {
  font-weight: 600;
}

.ourCommintment .directionreverse {
  display: flex;
  flex-direction: row-reverse;
}

.cards {
  gap: 3rem;
}

.cards .cardabout {
  width: 250px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 2rem;
  padding: 1rem;
  background-color: var(--footer-bg);
}

.cards .cardabout h2 {
  font-size: 1.7rem;
  font-weight: 400;
}

.cards .cardabout b {
  color: var(--bs-primary);
  font-size: 2rem;
}

.partnerCards {
  display: flex !important;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partnerCard {
  width: 270px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 1rem;
  padding: 1rem;
  background-color: var(--light-bg);
  transition: all 0.5ms ease-in-out;
}
.partnerCard:hover {
  box-shadow: 2px 2px 5px var(--footer-li-text);
}
.parentCardImg {
  width: 230px;
  height: 210px;
  position: relative;
  background: url("../assets/about/gradient.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.parentCardImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* inset: 0; */
  opacity: 0.4;
  background: linear-gradient(
    to left top,
    /* 🔹 direction changed */ rgba(255, 102, 0, 0.6),
    rgba(255, 0, 102, 0.4),
    rgba(255, 150, 0, 0.5)
  );
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

@media (max-width: 1100px) {
  .imgdiv {
    min-width: 98%;
    height: 80vh;
  }
}

.partnerCard i {
  font-size: 2rem;
  color: var(--bg-signUp);
}

@media (max-width: 920px) {
  .forWrap {
    flex-wrap: wrap;
  }

  .forWrap img {
    max-width: 500px;
    height: 350px;
    width: 100%;
  }
}
.hero-banner-section {
  min-height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

/* Light red gradient overlay */
.hero-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(249, 49, 35, 0.3),
    rgba(249, 49, 35, 0.4),
    rgba(249, 49, 35, 0.718)
  );
  z-index: 2;
}

.container,
.content-wrapper {
  position: relative;
  /* z-index:  ; */
}

.hero-banner-section .container {
  text-align: left;
}

.hero-banner-section .content-wrapper {
  margin-left: 5%;
  max-width: 700px;
}

.hero-banner-section h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-banner-section .lead {
  max-width: 600px;
  font-size: 1.1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-banner-section {
    min-height: 80vh;
    border-radius: 20px;
  }

  .hero-banner-section .content-wrapper {
    margin-left: 0;
    text-align: center;
  }

  .hero-banner-section .lead {
    margin: 0 auto;
  }

  .hero-banner-section h1 {
    font-size: 2.2rem;
  }

  .hero-banner-section .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-banner-section {
    height: 100vh;
    width: 100%;
    border-radius: 0;
    padding: 0 !important;
  }

  .hero-banner-section h1 {
    font-size: 1.8rem;
  }

  .hero-banner-section .lead {
    font-size: 1rem;
  }

  .hero-banner-section .d-flex {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-banner-section .content-wrapper {
    padding: 1.5rem;
  }
}
/* programs css */

/* filter css start */
.search-section {
  text-align: center;
  padding: 4rem 1rem;
}

.search-section h2 {
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
}

.form-select {
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #f0f8ff;
  border: none;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  color: #777;
  font-size: 1rem;
}

.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.2);
}

.btn-search {
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 3rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #f59e0b, #581c87);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
/* Filter css end */

/* Programs css */

.programs-custom {
  padding: 1rem;
}

.button-custom {
  border-radius: 30px;
  background-color: #15f3b1;
  border-color: #55c7a5;
  color: #302b2b !important;
  font-weight: 500;
}


.custom-title {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  color: #060478;
}
.custom-title-1 {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  color: #000;
}

.custom-btn {
  background-color: #38c172;
  border-color: #38c172;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #2da45e;
  border-color: #2da45e;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(56, 193, 114, 0.5);
}

.shadow-custom {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-radius: 0.75rem !important;
}

.border-underline {
  height: 1px;
  width: 14rem;
  background: linear-gradient(to top right, #ececee, rgb(217, 216, 223));
  margin: 0.5rem auto 0;
  border: none;
  border-radius: 5px;
}
.button-pagination {
  border: 2px solid #52e0b3;
  color: #52e0b3;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.button-pagination:hover,
.button-pagination.active {
  background-color: #52e0b3;
  color: #fff;
}

.gap-custom {
  gap: 20px;
}

@media (max-width: 576px) {
  .programs-custom {
    padding: 1rem;
  }
  .custom-title-1 {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #000;
  }

  .button-custom {
    border-radius: 30px;
    background-color: #15f3b1;
    border-color: #55c7a5;
    color: #302b2b !important;
    font-weight: 300;
  }

  .button-pagination {
    border: 2px solid #52e0b3;
    color: #52e0b3;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    /* px-4 py-2 */
    padding-right: 6px;
    padding-left: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .button-pagination:hover,
  .button-pagination.active {
    background-color: #52e0b3;
    color: #fff;
  }

  .gap-custom {
    gap: 6px;
  }
}

/* contact ............................ */

.contacs {
  padding: 4% 0%;
}

.about {
  width: 50%;
}
.about h2 {
  color: var(--bg-signUp);
  font-size: 2rem;
  font-weight: bold;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
}

.about h1 {
  color: var(--bg-signUp);
  font-weight: bolder;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.about p {
  color: var(--text-muted-custom);
  font-size: clamp(0.8rem, 2vw, 1.2rem);
}
.form {
  width: 50%;
}

.form input {
  padding: 0.9rem 1rem !important;
  font-size: 0.8rem;
  border: none;
  background-color: #f0f8ff;
}
.form select {
  padding: 0.9rem 1rem !important;
  font-size: 0.8rem;
  border: none;
  background-color: #f0f8ff;
}

.form input::placeholder {
  color: var(--text-muted-custom);
}

.form textarea::placeholder {
  color: var(--text-muted-custom);
}

.contacs .button {
  border-radius: 30px;
  padding: 0.6rem;
  border: none;
  background: linear-gradient(to left, #492058, #d5774f);
  color: var(--text-white-custom);
  transition: background 0.5s ease-in;
}

.contacs .button:hover {
  background: linear-gradient(to left, #59276b, #7a2c0a);
}

.form h2 {
  color: var(--bg-signUp);
  font-weight: 600;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 2rem !important;
}

@media (max-width: 991px) {
  .contacs {
    flex-direction: column;
    align-items: center;
  }
  .about,
  .form {
    width: 97%; /* make them fit nicely */
  }

  .inputscol {
    display: flex;
    flex-direction: column !important;
  }
}
/* .contacs .img {

}

p{

} */



iframe{
    width: 90%;
    height: 300px;
}

@media(max-width:990px){
    iframe{
        width: 100%;
    }
}
/* privacy policy............... */

.heroPrivacy h1{
    font-size: clamp(3rem , 2.5vw , 4rem );
    font-weight: bold;
}
