



/* HEADER CONTAINER */
.hb-navigationarea .hb-logo {
  float: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.hb-navigationarea .col-lg-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hb-navigationarea .container {
  max-width: 1550px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER ROW */
.hb-navigationarea .row {
  display: flex;
  align-items: center; /* 🔥 aligns vertically */
  justify-content: space-between;
  flex-wrap: nowrap;
}
/* LOGO */
.hb-logo {
  flex: 0 0 auto;   /* ✅ prevents shrinking */
  display: flex;
  align-items: center;
}
.hb-logo img {
 height: 48px;   /* 👈 control size */
  width: auto;    /* 👈 VERY IMPORTANT (fix stretch) */
  max-width: 100%;
  object-fit: contain;
  
}

/* NAV WRAPPER */
.hb-nav {
  flex:1;   /* ❌ remove flex:1 */
   min-width: 0; /* 🔥 allows shrinking */
  display: flex;
  justify-content: flex-end;; /* move menu right */
  padding-left: 60px; /* 👈 control position */
}

/* MENU */

#hb-navigation {
  margin-left: -30px; /* 👈 move left */
  margin: 0 auto;
  overflow: visible;
}
#hb-navigation ul {
 display: flex;
 flex-wrap: nowrap;
  align-items: center; /* 🔥 THIS aligns text baseline */
  gap: 10px;
  margin: 0;
}

/* LINKS */
#hb-navigation ul li a {
   position: relative;
  top: 1px; /* 👈 micro adjustment */
  padding: 0px 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  border-radius: 8px;
  color: #1c2b3a;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
   display: flex;
  align-items: center; /* 🔥 aligns text vertically */
  height: 42px; /* 👈 SAME as logo height */
  padding: 0 10px;
  font-size: 14px;
}

/* ACTIVE */
#hb-navigation ul li.current-menu-item a {
  background: #5db38a39;
  color: hsl(164 84% 35%);
}

/* HOVER */
#hb-navigation ul li a:hover {
  background: #9cd6b925;
  color: hsl(164 84% 35%);
}

/* MOBILE HEADER */
@media (max-width: 991px) {

  .hb-navigationarea .row {
    flex-wrap: wrap;
  }





  .hb-logo {
   
     display: flex;
      position: relative;
  z-index: 10; /* 🔥 bring to front */
  align-items: center; /* 🔥 centers logo inside */
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    flex: 0 0 auto;
    float: none !important;
  }

  .hb-logo img {
    margin-top: 2px;
     height: 42px; 
     max-height: 40px;
  display: block;
    margin: auto;
    width: auto;
  display: block;
  opacity: 1;
  }

  .hb-nav {
    width: 100%;
  }

  #hb-navigation ul {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    align-items: flex-start;
  }

  #hb-navigation ul li {
    width: 100%;
  }

  #hb-navigation ul li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
}
@media (max-width: 1440px) {

  #hb-navigation ul {
    gap: 8px; /* tighter spacing */
  }

  #hb-navigation ul li a {
    font-size: 12.5px;
    padding: 0 6px;
  }

}
@media (max-width: 1366px) {

  #hb-navigation ul li a {
    font-size: 12px;
    padding: 0 5px;
  }

}
/*HERO SECTION*/

.hb-hero {
 padding: 70px 0 80px; /* 🔥 was 120px → now tighter */
  background: #ebe0f7;
  
}

.hb-hero .container {
 max-width: 1400px;   /* 🔥 increase from current */
  width: 100%;
  margin: 0 auto;
  padding: 0 40px; 
}


.hb-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #dfe7ec; /* 👈 soft grey pill */
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #1aa39a;
  margin-bottom: 25px;
}
/* FLEX LAYOUT */
.hb-hero .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px; /* 👈 adds premium spacing */
}

/* LEFT CONTENT */
.hb-hero-img {
  max-width: 500px;
  margin-left: auto; /* push to right */
}
.hb-hero-content {
  max-width: 650px; /* 🔥 controls text width */
}
/* HEADING */
.hb-hero-content h1 {
   font-size: 48px; /* 👈 exact size */
  font-weight: 700; /* 👈 bold weight */
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1f2937;
  margin-bottom: 20px;
  max-width: 650px;

  /* 🔥 PREVENT BAD LINE BREAKS */
  word-break: keep-all;
}
/* GRADIENT TEXT */
.hb-hero-content h1 span {
background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.hb-hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #6b7a8c;
  margin-bottom: 25px;
}

/* BUTTONS */
.hb-hero-btns {
  display: flex;
  align-items: center;
  gap: 18px; /* 👈 exact spacing between buttons */
  margin-top: 25px;
  margin-bottom: 25px;
}

/* PRIMARY BUTTON */
.hb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #1aa39a, #22c55e);
  transition: 0.3s ease;
}
.hb-btn-primary:hover {
  opacity: 0.9;
}
/* OUTLINE BUTTON */
.hb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1aa39a;
  text-decoration: none;
  border: 2px solid #1aa39a;
  background: transparent;
  transition: 0.3s ease;
}

.hb-btn-outline:hover {
  background: #1aa39a;
  color: #fff;
}

/* FEATURES ROW */
.hb-hero-features {
  display: flex;
  align-items: center;
  gap: 30px; /* 👈 space between 2 items */
  margin-top: 10px;
}

/* EACH FEATURE */
.hb-hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7a8c;
}
.play-icon {
  font-size: 14px;
}
/* ICON STYLE */
.hb-hero-features span::before {
  content: "✔";
  color: #22c55e;
  font-weight: bold;
}

/* IMAGE */
.hb-hero-img {
   max-width: 520px; /* 🔥 increase */
  width: 100%;
  flex: 1;
  max-width: 500px;
}

.hb-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
@media (max-width: 768px) {
   .hb-hero {
    padding: 70px 20px;
    text-align: center;
  }

  .hb-hero .row {
    flex-direction: column;
  }

  .hb-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
 .hb-hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
    max-width: 100%;
  }
  .hb-navigationarea .row {
    flex-wrap: wrap; /* ✅ ONLY HERE */
  }

   .hb-hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hb-btn-primary,
  .hb-btn-outline {
    width: 100%;
    height: 48px;
    justify-content: center;
  }

  .hb-hero .row {
    flex-direction: column; /* stack properly */
  }

  .hb-hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hb-hero-img {
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {

  .hb-hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hb-hero-features span {
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .hb-hero {
    padding: 40px 20px 60px; /* 🔥 clean compact spacing */
  }

  .hb-hero-img {
    margin-top: 30px;
    max-width: 100%;
  }

  .hb-hero-img img {
    border-radius: 20px;
  }

}
@media (max-width: 480px) {

  .hb-hero-content h1 {
    font-size: 26px;
  }

  .hb-btn-primary,
  .hb-btn-outline {
    width: 100%;
    justify-content: center;
  }
}


/* SECTION counter */
.stats-section {
  background: linear-gradient(135deg, #0c1b2e, #081423);

  min-height: 180px; /* 👈 KEY (adjust if needed) */

  display: flex;
  align-items: center; /* 👈 vertical center */
}

/* CONTAINER */
.stats-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

/* BOX */
.stat-box {
  flex: 1;
  min-width: 200px;
  margin: 20px 10px;
}

/* NUMBER */
.stat-box h2 {
  font-size: 42px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 10px;
}
/* TEXT */
.stat-box p {
  color: #cbd5e1;
  font-size: 16px;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 992px) {

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-box {
    flex: 0 0 45%; /* 2 columns */
    margin-bottom: 30px;
  }

}

@media (max-width: 576px) {

  .stats-section {
    padding: 50px 20px;
    min-height: auto;
  }

  .stats-container {
    flex-direction: column;
    gap: 25px;
  }

  .stat-box {
    flex: 100%;
  }

  .stat-box h2 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 14px;
  }

}


/* gallery sec*/

/* SECTION */
.gallery-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

/* HEADER */
.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.gallery-header .gallery-tag {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 42px; /* 👈 exact size */
  font-weight: 700; /* 👈 bold weight */
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #1f2937;
}

.gallery-header h2 span {
 background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-header p {
  color: #64748b;
  font-size: 15px;
}

/* TABS */
/* TAB WRAPPER */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 14px;
}

/* TAB TEXT */
.gallery-tabs .tab {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600; /* 👈 stronger like design */
  letter-spacing: 0.6px; /* 👈 tighter */
  text-transform: uppercase;
  color: #6b7c90; /* 👈 exact muted gray */
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 14px;
  transition: color 0.3s ease;
}

/* ACTIVE */
.gallery-tabs .tab.active {
  background: linear-gradient(90deg, #0ea5a3, #22c55e);
  color: #fff;
}

/* UNDERLINE (THIS IS KEY) */
.gallery-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 2px; /* 👈 thinner line */
  background: #10b981;
}

/* HOVER */
.gallery-tabs .tab:hover {
   background: linear-gradient(90deg, #0ea5a3, #22c55e);
  color: #fff;
}

/* SUPERSCRIPT NUMBER */
.gallery-tabs .tab sup {
  font-size: 11px;
  font-weight: 600;
  margin-left: 3px;
  position: relative;
  top: -0.45em;
}
/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* BUTTON */
.gallery-btn {
  text-align: center;
  margin-top: 40px;
}

.gallery-btn a {
  padding: 12px 25px;
  border: 2px solid #10b981;
  border-radius: 10px;
  text-decoration: none;
  color: #10b981;
  transition: 0.3s;
}

.gallery-btn a:hover {
  background: #10b981;
  color: #fff;
}

/* TABLET */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .gallery-header h2 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tabs {
    gap: 15px;
  }

}

/* MOBILE FIX */
@media (max-width: 768px) {

  .gallery-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .gallery-tabs .tab {
    flex: 0 0 auto; /* 👈 IMPORTANT: prevents shrinking */
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
  }

}

@media (max-width: 768px) {

  .gallery-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .gallery-tabs .tab {
    font-size: 13px;
    padding: 8px 12px;
  }

}

/*Our Services*/

/* SECTION */
.services-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

/* HEADER */
.services-header {
  margin-bottom: 50px;
}

.services-header .services-tag {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 16px;
}

/* HEADER TEXT */
.services-header h2 {
  font-size: 42px; /* 👈 exact size */
  font-weight: 700; /* 👈 bold weight */
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #1f2937;
}
/* GRADIENT TEXT */
.services-header h2 span {
  background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  font-size: 16px;
  color: #6b7280;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
/* IMAGE WRAPPER */
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}
.service-img-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;

  width: 52px;
  height: 52px;

  background: #10b981;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);

  transition: all 0.3s ease;
}
/* ICON */
.service-img-icon i {
  color: #fff;
  font-size: 20px;
}

/* HOVER EFFECT */
.service-item:hover .service-image img {
  transform: scale(1.08);
}

.service-item:hover .service-img-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.service-content {
  padding: 20px;
}

.service-icon {
  font-size: 30px;
  color: #10b981;
  margin-bottom: 10px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.service-content p {
  color: #6b7280;
  margin-bottom: 15px;
}

.service-content a {
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-content a:hover {
  color: #059669;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }
}

/* our story css*/

/* SECTION */
.stories-section {
  padding: 80px 0;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

/* HEADER */
.stories-header .stories-tag {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.stories-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stories-header h2 span {
  background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stories-header p {
  color: #64748b;
  font-size: 16px;
}

/* GRID FIX */
.stories-grid {
  margin-top: 50px;
}

/* CARD */
.story-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}


.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.story-image {
  position: relative;
  border-radius: 20px;          /* 🔥 main curve */
  overflow: hidden;             /* 🔥 important */
}


/* IMAGE */
.story-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  border-radius: 20px;          /* 🔥 ensures smooth edge */
  display: block;
}
/* OPTIONAL: make top more rounded than bottom (like design) */
.story-image {
  border-radius: 22px 22px 16px 16px;
}

/* IMAGE HOVER ZOOM */
.story-card:hover .story-image img {
  transform: scale(1.08);
}

/* OVERLAY */
.story-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

/* TAG */
.story-tag {
  display: inline-block;
  background: #10b981;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* TITLE */
.story-overlay h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* CONTENT */
.story-content {
  padding: 20px;
}

.story-content p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 15px;
}

/* LINK */
.story-content a {
  color: #10b981;
  font-weight: 500;
  text-decoration: none;
}

.story-content a:hover {
  text-decoration: underline;
}


/*Prevention sec*/

.prevention-section {
  padding: 90px 20px;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

.section-header .prevention-tag {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.section-header h2 span {
  background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* IMAGE */
.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* IMAGE ZOOM */
.card:hover img {
  transform: scale(1.08);
}

/* ICON BADGE */
.icon-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 48px;
  height: 48px;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-body a {
  color: #10b981;
  font-weight: 500;
  text-decoration: none;
}

.card-body a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .prevention-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .prevention-grid {
    grid-template-columns: 1fr;
  }

  .card-img img {
    height: 200px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}

/* testimonial css*/


.hb-testimonials {
  padding: 100px 20px;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

/* HEADER */
.testimonial-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.testimonial-header .testimonial-tag {
  background: #d1fae5;
  color: #059669;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
}

.testimonial-header h2 {
  font-size: 38px;
  margin: 15px 0;
}

.testimonial-header h2 span {
  background: linear-gradient(90deg, #1aa39a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-header p {
  color: #64748b;
}

/* SLIDER */
.testimonial-slider {
  position: relative;
}

.testimonial-item {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 60px;
  transition: 0.5s;
}

.testimonial-item.active {
  display: flex;
}

/* LEFT IMAGE */
.testimonial-left {
  position: relative;
}

.img-wrap {
  position: relative;
  width: 260px;              /* 🔥 FIXED WIDTH */
  height: 340px;             /* 🔥 FIXED HEIGHT */
  border-radius: 25px;
  overflow: hidden;
  margin: auto;
}

/* layered shadow effect */
.img-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #dff3ea;       /* 🔥 same soft bg like your image */
  border-radius: 25px;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 🔥 keeps same size without stretch */
  border-radius: 25px;
  display: block;
}

/* RIGHT CONTENT */
.testimonial-right {
  max-width: 500px;
}

.quote-icon {
  font-size: 30px;
  color: #10b981;
  margin-bottom: 10px;
}

.testimonial-right p {
  color: #334155;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-right h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-right span {
  font-size: 13px;
  color: #6b7280;
}

/* CONTROLS */
.testimonial-controls {
  text-align: center;
  margin-top: 30px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #1e293b;
  color: #fff;
  margin: 0 8px;
  cursor: pointer;
}

.testimonial-controls button:hover {
  background: #10b981;
}

@media (max-width: 768px) {
  .testimonial-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .img-wrap {
    width: 200px;
  }

  .testimonial-header h2 {
    font-size: 26px;
  }
}

/*news section*/

.ch-news-section {
  padding: 90px 20px 80px;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.ch-news-container {
  max-width: 1220px;
  margin: 0 auto;
}

.ch-news-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.ch-news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: #dff3ee;
  color: #009b83;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.ch-news-header h2 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #182231;
}

.ch-news-header h2 span {
  background: linear-gradient(90deg, #0998b2 0%, #1fbf66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ch-news-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
}

.ch-news-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ch-news-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 18px;
  scrollbar-width: none;
}

.ch-news-carousel::-webkit-scrollbar {
  display: none;
}

.ch-news-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ch-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  border-color: rgba(16, 185, 129, 0.22);
}

.ch-news-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #eef2f7;
}

.ch-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ch-news-card:hover .ch-news-image img {
  transform: scale(1.07);
}

.ch-news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  background: #08a98d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.ch-news-content {
  padding: 26px 28px 30px;
  min-height: 245px;
}

.ch-news-meta {
  color: #718096;
  font-size: 14px;
  margin-bottom: 14px;
}

.ch-news-meta span {
  margin: 0 12px;
  color: #94a3b8;
}

.ch-news-content h3 {
  margin: 0 0 15px;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.ch-news-content p {
  margin: 0;
  color: #6b7c90;
  font-size: 16px;
  line-height: 1.55;
}

.ch-news-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #08a98d;
  background: #fff;
  color: #08a98d;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-news-arrow:hover {
  background: #08a98d;
  color: #fff;
  transform: scale(1.08);
}

.ch-news-btn-wrap {
  text-align: center;
  margin-top: 35px;
}

.ch-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  border: 2px solid #08a98d;
  border-radius: 10px;
  color: #009b83;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.ch-news-btn:hover {
  background: linear-gradient(90deg, #0998b2, #1fbf66);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
  .ch-news-header h2 {
    font-size: 36px;
  }

  .ch-news-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }

  .ch-news-image {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ch-news-section {
    padding: 70px 16px;
  }

  .ch-news-header {
    margin-bottom: 35px;
  }

  .ch-news-header h2 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .ch-news-header p {
    font-size: 15px;
  }

  .ch-news-carousel-wrap {
    gap: 0;
  }

  .ch-news-arrow {
    display: none;
  }

  .ch-news-carousel {
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .ch-news-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }

  .ch-news-image {
    height: 220px;
  }

  .ch-news-content {
    padding: 22px;
    min-height: auto;
  }

  .ch-news-content h3 {
    font-size: 18px;
  }

  .ch-news-content p {
    font-size: 15px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .ch-news-card {
    flex: 0 0 94%;
  }

  .ch-news-header h2 {
    font-size: 27px;
  }

  .ch-news-image {
    height: 200px;
  }
}

/*brand new section-logos auto scrolling*/

.ch-partners {
  padding: 90px 20px;
  background: #f8fafc;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

/* HEADER */
.ch-partners-header {
  max-width: 720px;
  margin: 0 auto 50px;
}

.ch-partners-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 18px;
}

.ch-partners-header h2 span {
  background: linear-gradient(90deg, #0998b2, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ch-partners-header p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
}

/* SLIDER */
.ch-partners-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.ch-partners-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollPartners 30s linear infinite;
}

/* ITEM */
.ch-partner-item {
  min-width: 180px;
  height: 110px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.ch-partner-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

/* HOVER EFFECT */
.ch-partner-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.ch-partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* BUTTON */
.ch-partners-btn-wrap {
  margin-top: 40px;
}

.ch-btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg, #0998b2, #22c55e);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ch-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ANIMATION */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/*cta section*/

.ch-cta {
  background: #1aa37a;
  padding: 90px 20px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* soft animated background glow */
.ch-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  top: -120px;
  left: -120px;
  filter: blur(80px);
  animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translate(0,0); }
  to { transform: translate(40px, 40px); }
}

/* CONTAINER */
.ch-cta-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* HEADING */
.ch-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.8s ease;
}

/* TEXT */
.ch-cta p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  animation: fadeUp 1s ease;
}

/* BUTTON WRAPPER */
.ch-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease;
}

/* BUTTON BASE */
.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* LIGHT BUTTON */
.ch-btn-light {
  background: #e5e7eb;
  color: #1f2937;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.ch-btn-light:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* OUTLINE BUTTON */
.ch-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.ch-btn-outline:hover {
  background: #fff;
  color: #1aa37a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ICON spacing */
.ch-btn span {
  margin-right: 8px;
  font-size: 16px;
}

/* ENTRY ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .ch-cta {
    padding: 70px 15px;
  }

  .ch-cta h2 {
    font-size: 28px;
  }

  .ch-cta p {
    font-size: 15px;
  }

  .ch-btn {
    width: 100%;
    max-width: 260px;
  }

  .ch-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* footer css*/

/* ===============================
   CH CENTRE FOOTER FULL CSS
================================ */

#hb-footer.hb-footer {
  background: #10191f;
  color: #7f9bb1;
  font-family: "Poppins", Arial, sans-serif;
  overflow: hidden;
}

/* Main footer area */
#hb-footer .hb-footer-area {
  padding: 82px 0 76px;
  background: #10191f;
}

/* Columns */
#hb-footer .hb-col {
  margin-bottom: 30px;
   text-align: left !important;
}

/* Logo */
#hb-footer .hb-logo {
  display: inline-block;
  margin-bottom: 28px;
}

#hb-footer .hb-logo img {
  width: 112px;
  height: auto;
  display: block;
  border-radius: 13px;
}

/* Description */
#hb-footer .hb-desc {
  max-width: 330px;
  margin: 0 0 28px;
  color: #7f9bb1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.1px;
}

/* Headings */
#hb-footer .hb-col h3 {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
}

#hb-footer .hb-col h3::after {
  display: none;
}

/* Links */
#hb-footer .hb-links,
#hb-footer .hb-contact-info,
#hb-footer .hb-socialicons,
#hb-footer .hb-footernav {
  margin: 0;
  padding: 0;
  list-style: none;
}

#hb-footer .hb-links li {
  margin-bottom: 20px;
}

#hb-footer .hb-links li:last-child {
  margin-bottom: 0;
}

#hb-footer .hb-links a {
  color: #7f9bb1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
}

#hb-footer .hb-links a:hover {
  color: #00b894;
  transform: translateX(7px);
}

/* Social icons */
#hb-footer .hb-socialicons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

#hb-footer .hb-socialicons li {
  margin: 0;
  padding: 0;
}

#hb-footer .hb-socialicons li a {
  width: 50px;
  height: 50px;
  background: #082b2c;
  border-radius: 14px;
  color: #00b894;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.35s ease;
}

#hb-footer .hb-socialicons li a:hover {
  background: #00b894;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 184, 148, 0.26);
}

/* Contact info */
#hb-footer .hb-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  color: #7f9bb1;
}

#hb-footer .hb-contact-info li:last-child {
  margin-bottom: 0;
}

#hb-footer .hb-contact-info i {
  color: #00b894;
  font-size: 14px;
  line-height: 1.2;
}


#hb-footer .hb-contact-info span {
  color: #7f9bb1;
  font-size: 14px;
  line-height: 1.6;

  /* 🔥 CRITICAL */
  width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}


/* Footer bottom */
#hb-footer .hb-footerbar {
  background: #10191f;
  border-top: 1px solid rgba(127, 155, 177, 0.22);
  padding: 30px 0;
}

#hb-footer .hb-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

#hb-footer .hb-copyright {
  color: #7f9bb1;
  font-size:14px;
  font-weight: 400;
  line-height: 1.4;
}

/* Footer nav */
#hb-footer .hb-footernav {
  display: flex;
  align-items: center;
  gap: 36px;
}
#hb-footer .hb-footernav li {
  margin: 0;
  padding: 0;
}

#hb-footer .hb-footernav li a {
  color: #7f9bb1;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.35s ease;
}

#hb-footer .hb-footernav li a:hover {
  color: #00b894;
}
#hb-footer .hb-contact-info span,
#hb-footer .hb-contact-info a {
  word-break: break-word;
}

/* Column spacing refinement */
@media (min-width: 992px) {
  #hb-footer .row {
    display: flex;
    align-items: flex-start;
  }

  #hb-footer .col-md-3:nth-child(1) {
    width: 28%;
  }

  #hb-footer .col-md-3:nth-child(2) {
    width: 24%;
  }

  #hb-footer .col-md-3:nth-child(3) {
    width: 25%;
  }

  #hb-footer .col-md-3:nth-child(4) {
    width: 23%;
  }
}

/* Tablet */
@media (max-width: 991px) {
  #hb-footer .hb-footer-area {
    padding: 65px 0 35px;
  }

  #hb-footer .hb-col {
    margin-bottom: 42px;
      text-align: center !important;
  }

  #hb-footer .hb-desc {
    max-width: 100%;
  }

  #hb-footer .hb-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  #hb-footer .hb-footernav {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #hb-footer .hb-footer-area {
    padding: 55px 0 28px;
     text-align: center !important;
  }

  #hb-footer .hb-logo {
    margin-bottom: 22px;
  }

  #hb-footer .hb-logo img {
    margin: 0 auto;
    width: 105px;
  }

  #hb-footer .hb-desc {
    font-size: 16px;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
  }

  #hb-footer .hb-col h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  #hb-footer .hb-links li {
    margin-bottom: 15px;
  }
#hb-footer .hb-contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

  #hb-footer .hb-links a,
  #hb-footer .hb-contact-info span,
  #hb-footer .hb-copyright,
  #hb-footer .hb-footernav li a {
    font-size: 16px;
  }

  #hb-footer .hb-socialicons {
    justify-content: center;
  }

#hb-footer .hb-contact-info li {
  display: grid;
  grid-template-columns: 26px 1fr; /* ICON + TEXT */
  align-items: start;
  column-gap: 14px;
  margin-bottom: 18px;
  width: 100%;
}
  #hb-footer .hb-footerbar {
    padding: 24px 0;
  }

  #hb-footer .hb-footernav {
    gap: 18px;
    flex-wrap: wrap;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  #hb-footer .hb-socialicons li a {
    width: 48px;
    height: 48px;
  }

  #hb-footer .hb-footernav {
    flex-direction: column;
    gap: 10px;
  }
}
/* LOGO CARD STYLE */
#hb-footer .hb-logo a {
  display: inline-block;
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* LOGO IMAGE */
#hb-footer .hb-logo img {
  width: 90px;
  height: auto;
  display: block;
}

/* HOVER EFFECT (premium feel) */
#hb-footer .hb-logo a:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 184, 148, 0.25);
}

/* MOBILE FIX */
@media (max-width: 768px) {

  #hb-footer .hb-contact-info li {
    grid-template-columns: 22px 1fr;
    column-gap: 10px;
  }

  #hb-footer .hb-contact-info span {
    font-size: 15px;
  }


}

/* SMALL MOBILE */
@media (max-width: 480px) {

  #hb-footer .hb-contact-info li {
    flex-direction: row; /* keep icon left */
    align-items: flex-start;
  }

  #hb-footer .hb-contact-info i {
    font-size: 18px;
  }

  #hb-footer .hb-contact-info span {
    font-size: 14px;
  }

}

#hb-footer .col-md-3:last-child {
  width: 100%;
}

@media (min-width: 992px) {
  #hb-footer .col-md-3:last-child {
    width: 25%; /* restore desktop */
  }
}

.hb-navigationarea::before {
  content: none !important;
  display: none !important;
}

.hb-header::before,
.hb-header::after {
  content: none !important;
}


/*hope*/

/* SECTION */
.hope-wrap {
  padding: 90px 20px;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

.hope-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.hope-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 55px;
}

.hope-badge {
  display: inline-block;
  background: #e6f4ef;
  color: #0ea37f;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hope-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1f2937;
}

.hope-header h2 span {
  background: linear-gradient(90deg, #0ea5a3, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hope-header p {
  color: #6b7c90;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.hope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.hope-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.hope-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.hope-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hope-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hope-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.hope-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.hope-tag {
  display: inline-block;
  background: #0ea37f;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}

.hope-overlay h3 {
  color:#ffffff;
  font-size: 18px;
  font-weight: 600;
}

/* BODY */
.hope-body {
  padding: 24px;
}

.hope-body p {
  color: #6b7c90;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hope-body a {
  color: #0ea37f;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.hope-body a:hover {
  letter-spacing: 0.5px;
}

/* ENTRY ANIMATION */
.hope-card {
  animation: fadeUp 0.6s ease both;
}

.hope-card:nth-child(2) { animation-delay: 0.1s; }
.hope-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {

  .hope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hope-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .hope-wrap {
    padding: 70px 15px;
  }

  .hope-grid {
    grid-template-columns: 1fr;
  }

  .hope-img {
    height: 220px;
  }

  .hope-header h2 {
    font-size: 28px;
  }

  .hope-header p {
    font-size: 15px;
  }
}

.pc-stat-card h3{
    font-size: 54px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 12px;
}

.pc-stat-card p{
    font-size: 20px;
    line-height: 1.5;
    color: #64748b;
}