/*

TemplateMo 581 Kind Heart Charity

https://templatemocapabilities-titlecom/tm-581-kind-heart-charity

*/

/* Font: Montserrat imported from Google Fonts */

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #5bc1ac;
  --secondary-color: #5a6f80;
  --section-bg-color: #f0f8ff;
  --site-footer-bg-color: #44525d;
  --custom-btn-bg-color: #597081;
  --custom-btn-bg-hover-color: #5bc1ac;
  --dark-color: #000000;
  --p-color: #000;
  --border-color: #e9eaeb;

  --font-family-sans-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --body-font-family: var(--font-family-sans-serif);

  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay+.container {
  position: relative;
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  /* background: var(--white-color); */
  border-radius: var(--border-radius-medium);
  margin-bottom: 0px;
  padding: 10px;

}

.mb-2 {
  /* border: 2px solid red; */
  font-family: 'Manrope', sans-serif;
  font-family: 'Playfair Display', serif;
}

.mb-3 {
  /* border: 2px solid red; */
  font-family: 'Manrope', sans-serif;
}

.mb-4 {
  color: var(--p-color);
  font-family: 'Manrope', sans-serif;
  text-align: justify;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;

  height: 100%;
  padding: 10px;
  /* padding-bottom: 24px; */

  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.logo {
  width: 280px;
  /* padding: 20px; */
  /* border: 2px solid red; */
  height: auto;
}

@media (max-width: 768px) {
  .logo {
    width: 200px;
  }
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  max-width: 300px;
  /* border: 2px solid red; */
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}













/* The modal images should be responsive */
/* .modal-body img {
    width: 100%;
    height: auto;
    max-width: 500px;  
    margin: 0 auto;
    display: block;
} */

/* Customizing the modal backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}


.modal-dialog {
  max-width: 500px;
}

.modal-content {
  max-height: 80vh;
}

.modal-body {
  overflow-y: auto;
  /* Allows vertical scroll inside the modal */
  height: 100%;
  /* Take full height of the modal */
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body img {
  max-height: 70vh;
  /* Limit the height of the image */
  object-fit: contain;
  /* Ensures the image is not stretched */
  width: auto;
  /* Make image width auto to maintain aspect ratio */
}


.certifications {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
  overflow: hidden;
}

.certifications-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.certifications-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.certifications-tag {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(22, 101, 52, 0.08);
  color: var(--p-color);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  font-family: 'Manrope', sans-serif;
}

.certifications-header h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.certifications-header p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  font-family: 'Manrope', sans-serif;
}

.certificates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  align-items: start;
  justify-items: center;
}

.certificate-card {
  width: 100%;
  /* max-width: 270px; */
  transition: transform 0.35s ease;
}

.certificate-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 210 / 297;
  /* A4 Portrait */
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.certificate-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  pointer-events: none;
}

.certificate-card:hover .certificate-frame {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.14),
    0 4px 14px rgba(15, 23, 42, 0.08);
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 991px) {
  .certifications {
    padding: 80px 18px;
  }

  .certifications-header h2 {
    font-size: 2.1rem;
  }

  .certificates {
    gap: 22px;
  }

  .certificate-card:nth-child(2),
  .certificate-card:nth-child(5),
  .certificate-card:nth-child(3),
  .certificate-card:nth-child(6) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 20px 0;
  }

  .certifications-header {
    padding: 0 16px;
    margin-bottom: 35px;
  }

  .certifications-header h2 {
    font-size: 1.8rem;
  }

  .certifications-header p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .certificates {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .certificates::-webkit-scrollbar {
    display: none;
  }

  .certificate-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .certificate-frame {
    border-radius: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .certifications-header h2 {
    font-size: 1.55rem;
  }

  .certifications-tag {
    font-size: 13px;
    padding: 7px 15px;
    margin: 14px;
  }

  .certificate-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}








/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 575px) {
  .header-contact-info {
    text-align: center;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  .contact-item {
    font-size: 11px !important;
    justify-content: center;
  }

  .contact-item a {
    font-size: 11px !important;
  }
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section-full-height {
  height: 100vh;
  /* match video height */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section-full-height .container-fluid,
.hero-section-full-height .row,
.hero-section-full-height .col-lg-12,
.hero-section-full-height .col-12,
#hero-slide {
  height: 100%;
}

.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  height: 100vh;
  min-height: 100vh;
}

#hero-slide .carousel-caption {
  background: var(--white-color);
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: var(--secondary-color);
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 680px;
  padding: 100px 100px 50px 100px;
}

.carousel-image {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 2px solid red;
}

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all 0.5s;
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}

.carousel-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-item {
  height: 100vh;
}

.hero-section .carousel-item {
  position: relative;
  overflow: hidden;
}

.hero-overlay-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  pointer-events: none;
}

.hero-overlay-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 12, 24, 0.55) 0%, rgba(20, 24, 40, 0.25) 40%, rgba(7, 10, 20, 0.58) 100%);
}

.hero-overlay-bg::before,
.hero-overlay-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  animation: heroGlowFloat 8s ease-in-out infinite;
}

.hero-overlay-bg::before {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 8%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-overlay-bg::after {
  width: 320px;
  height: 320px;
  right: 8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: 1.5s;
}

.hero-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  pointer-events: none;
}

.hero-glass-card {
  width: min(100%, 420px);
  /* padding: 42px 34px; */
  /* padding: 10px 6px; */
  border-radius: 28px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  pointer-events: auto;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  animation: heroCardFloat 5s ease-in-out infinite;
}

.hero-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  transform: translateX(-130%);
  animation: heroShineMove 4.8s linear infinite;
}

.hero-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-overlay-title {
  margin: 0 0 16px;
  /* font-size: clamp(32px, 5vw, 68px); */
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-overlay-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1s forwards;
}

.hero-static-text {
  background: #ffffff;
  color: #000000;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-heading {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  order: 1;
}

.hero-animated-text {
  font-size: 1.1rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: blinkText 3s ease-in-out 3s infinite;
  order: 2;
}

@keyframes blinkText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-overlay-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-overlay-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-overlay-btn:hover {
  transform: translateY(-3px);
}

.hero-overlay-btn-primary {
  background: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.16);
}

.hero-overlay-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-overlay-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

@keyframes heroGlowFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.06);
  }
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroShineMove {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease-out 0.7s forwards;
}

.animate-fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Large tablet */
@media (max-width: 991px) {
  .hero-overlay-wrap {
    padding: 20px;
  }

  .hero-glass-card {
    width: min(100%, 680px);
    padding: 34px 28px;
    border-radius: 24px;
  }

  .hero-overlay-bg::before {
    width: 220px;
    height: 220px;
  }

  .hero-overlay-bg::after {
    width: 250px;
    height: 250px;
  }
}

/* Tablet and mobile */
@media (max-width: 767px) {
  .hero-overlay-wrap {
    padding: 16px;
  }

  .hero-glass-card {
    width: 100%;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .hero-mini-badge {
    margin-bottom: 14px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-overlay-text {
    margin-bottom: 22px;
    line-height: 1.7;
  }

  .hero-overlay-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-overlay-btn {
    width: 100%;
    min-width: 100%;
  }

  .hero-overlay-bg::before {
    width: 180px;
    height: 180px;
    top: 6%;
    left: -8%;
  }

  .hero-overlay-bg::after {
    width: 200px;
    height: 200px;
    right: -8%;
    bottom: 6%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-overlay-wrap {
    padding: 14px;
  }

  .hero-glass-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .hero-overlay-title {
    line-height: 1.14;
  }

  .hero-overlay-text {
    font-size: 14px;
  }

  .hero-overlay-btn {
    padding: 13px 20px;
    font-size: 14px;
  }
}

/* Very small mobile */
@media (max-width: 360px) {
  .hero-overlay-wrap {
    padding: 12px;
  }

  .hero-glass-card {
    padding: 20px 14px;
  }
}


/* odm block css code */





.odm-section {
  width: 100%;
  padding: 100px 40px;
  background: linear-gradient(135deg, #f4fff7 0%, #edf9f0 45%, #e4f6e8 100%);
  position: relative;
  overflow: hidden;

}

/* .odm-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: rgba(42, 157, 77, 0.08);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOne 7s ease-in-out infinite;
} */

.odm-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(42, 157, 77, 0.10);
  border-radius: 50%;
  filter: blur(50px);
  animation: floatTwo 8s ease-in-out infinite;
}

.odm-container {
  width: 100%;
  max-width: 100%;
  margin: 0;

  position: relative;
  z-index: 2;
}

.odm-card {
  width: 100%;
  max-width: 100%;
  padding: 30px 10px;
  animation: fadeUp 1s ease both;
}

.odm-label {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, #5bc1ac, #6ddbc5);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(28, 140, 70, 0.22);
}

.odm-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #16281d;
  max-width: 100%;
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(73, 184, 110, 0.18);
  border-radius: 30px;
  z-index: -1;
}

.odm-line {
  width: 120px;
  height: 4px;
  margin: 24px 0 30px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(90deg, #5bc1ac, #6ddbc5);
}

.odm-text-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.odm-text-wrap::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 0;
  font-family: 'Playfair Display', serif;
  font-size: 95px;
  color: rgba(28, 140, 70, 0.10);
  line-height: 1;
  pointer-events: none;
}

.odm-description {
  margin: 0 0 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #415148;
  text-align: justify;
  text-justify: inter-word;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.odm-description:last-child {
  margin-bottom: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOne {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 15px);
  }
}

@keyframes floatTwo {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-15px, -20px);
  }
}

@media (max-width: 991px) {
  .odm-section {
    padding: 80px 24px;
  }

  .odm-title {
    font-size: 42px;
  }

  .odm-description {
    font-size: 16px;
    line-height: 1.9;
  }
}

@media (max-width: 767px) {
  .odm-section {
    padding: 65px 18px;
  }

  .odm-card {
    padding: 20px 0;
  }

  .odm-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .odm-line {
    width: 90px;
    margin: 18px 0 24px;
  }

  .odm-description {
    font-size: 15px;
    line-height: 1.85;
  }

  .odm-text-wrap::before {
    font-size: 70px;
    top: -10px;
  }
}

@media (max-width: 480px) {
  .odm-section {
    padding: 55px 14px;
  }

  .odm-title {
    font-size: 26px;
  }

  .odm-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .odm-label {
    font-size: 12px;
    padding: 9px 16px;
  }
}









.manufacturing-section {
  position: relative;
  overflow: hidden;
  padding: 40px 40px;
  background: url("../images/Background\ 1.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.manufacturing-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 20px;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE IMAGE */
.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

}

.manufacturing-main-image {
  width: 100%;
  max-width: 800px;
  height: 410px;
  display: block;
  object-fit: contain;

}

/* RIGHT SIDE CARDS */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
}

.info-card {
  background: var(--section-bg-color);
  border-radius: 16px;
  padding: 28px 20px;
  min-height: 230px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.vb {
  margin-top: 120px;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.info-card button {
  margin-top: 20px;
  align-self: center;
  padding: 10px 20px;
  border-radius: 900px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.info-card button a {
  color: #fff;
  text-decoration: none;
}

.info-card h3 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #5bc1ac;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}

.info-card p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  font-family: 'Manrope', sans-serif;
  color: #000;
  font-weight: 400;
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .circle-wrapper {
    order: 1;
  }

  .cards-wrapper {
    order: 2;
  }

  .manufacturing-main-image {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .manufacturing-section {
    padding: 30px 15px;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manufacturing-main-image {
    max-width: 320px;
  }

  .manufacturing-section .container {
    padding: 0px 5px;
  }

  .info-card {
    min-height: auto;
    padding: 20px 16px;
  }

  .info-card h3 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 13px;
    line-height: 1.6;
  }
}





.aboutus-section {
  width: 100%;
  padding: 60px 0;
  background: #f3f3f3;
}

.aboutus-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* LEFT IMAGE */
.aboutus-image-wrap {
  flex: 0 0 57%;
}

.aboutus-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* RIGHT CONTENT */
.aboutus-content {
  flex: 0 0 43%;
}

.aboutus-topline {
  width: 50px;
  height: 3px;
  background: #1d95d2;
  margin-bottom: 10px;
}

.aboutus-label {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: #333;
  display: block;
  margin-bottom: 15px;
}

.aboutus-title {
  font-size: 56px;
  line-height: 1.1;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.aboutus-text {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 25px;
  text-align: justify;
}

.aboutus-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.aboutus-link:hover {
  transform: translateX(5px);
}

.aboutus-arrow {
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .aboutus-container {
    flex-direction: column;
  }

  .aboutus-image-wrap,
  .aboutus-content {
    flex: 0 0 100%;
    width: 100%;
  }

  .aboutus-image {
    height: auto;
  }

  .aboutus-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .aboutus-title {
    font-size: 30px;
  }

  .aboutus-text {
    font-size: 15px;
  }

  .aboutus-container {
    padding: 0px 15px;
  }
}




















.capabilities-section {
  width: 100%;
  background: #f2f2f2;
  padding: 30px 0;
}

.capabilities-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  justify-content: center;
  align-items: center;
}

/* Common box height */
.capability-box,
.flip-card {
  width: 100%;
  height: 305px;
}

/* Intro Card */
.capability-intro-box {
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px px;
  width: 100%;
}

.capabilities-line {
  width: 38px;
  height: 3px;
  background: #1696d2;
  margin-bottom: 10px;
}

.capabilities-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #000;

  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.2px;
}

.capabilities-title {
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

/* Flip Card */
.flip-card {
  background: #e9eded;
  padding: 0px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.flip-card h2 {
  color: #5bc1ac;
  font-weight: 600;
}


.card-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.card-full-image {
  width: 100%;
  height: 305px;
  object-fit: cover;
  display: block;
  /* margin-bottom: 12px; */
}

.flip-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 12px;
}

.flip-card p {
  font-size: 17px;
  line-height: 1.55;
  font-family: 'Manrope', sans-serif;
  margin: 0 0 16px;
  color: black;
}

.flip-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;

  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.flip-card a span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.flip-card a:hover span {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 992px) {
  .capabilities-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-box,
  .flip-card {
    height: 220px;
  }

  .capabilities-title {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .capabilities-container {
    grid-template-columns: 1fr;
  }

  .capability-box,
  .flip-card {
    height: 230px;
  }

  .capability-intro-box {
    padding: 24px 18px;
  }

  .capabilities-title {
    font-size: 20px;
  }

  .flip-card-back {
    padding: 20px 16px;
  }

  .flip-card-back h3 {
    font-size: 18px;
  }

  .flip-card-back p {
    font-size: 13px;
  }
}






/* ================================
   QUALITY SECTION
================================ */

.quality-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #e9e9e9;

}

/* top gray area */
.quality-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: #e9e9e9;
  z-index: 1;
}

/* bottom blue band */
.quality-blue-band {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 310px;
  background: var(--primary-color);
  z-index: 1;
}

/* container */
.quality-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* layout */
.quality-content {
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* LEFT TEXT */
.quality-text-box {
  width: 60%;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  /* font-family: 'Manrope', sans-serif; */
  align-items: center;
}

.quality-text-box h2 {

  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 420px;
}

.quality-text-box p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  text-align: justify;
}

/* RIGHT IMAGE */
.quality-image-box {
  width: 52%;
  display: flex;
  justify-content: flex-end;

}

.quality-image-box img {
  width: 100%;
  max-width: 720px;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {

  .quality-text-box h2 {
    font-size: 24px;
  }

  .quality-image-box img {
    height: 340px;
  }

}

@media (max-width: 992px) {

  .quality-content {
    flex-direction: column;
  }

  .quality-text-box,
  .quality-image-box {
    width: 100%;
  }

  .quality-text-box {
    padding-top: 150px;
    margin-bottom: 30px;
  }

  .quality-image-box {
    justify-content: center;
  }

  .quality-image-box img {
    height: auto;
  }

}

@media (max-width: 768px) {

  .quality-top-bg {
    height: 100px;
  }

  .quality-blue-band {
    top: 100px;
    bottom: auto;
    height: calc(100% - 100px);
  }

  .quality-text-box {
    padding-top: 120px;
  }

  .quality-text-box h2 {
    font-size: 20px;
  }

  .quality-container {
    margin-top: 0px;
    padding: 0px 15px;
  }

  /* .quality-top-bg {
    visibility: hi;
  } */

}










/* ================================
   CAPABILITIES SECTION v3
================================ */

.cap3-section {
  width: 100%;
  background: #f2f2f2;
  font-family: 'Manrope', sans-serif;
}

.cap3-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0;
  /* margin-bottom: 14px; */
  padding: 0px 35px;
}

/* ── Intro Box — spans both rows in col 1 ── */
.cap3-intro-box {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 3px;
}

.cap3-line {
  width: 38px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 14px;
}

.cap3-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--p-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cap3-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
  margin: 0;
}

/* ── Stat Cards ── */
.cap3-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 7px;
  border: 1px solid #e0e0e0;
}

.cap3-bg-white {
  background: #ffffff;
}

.cap3-bg-lightblue {
  background: #eaf6fb;
}

.cap3-bg-cream {
  background: #fdf6ec;
}

.cap3-accent-bar {
  width: 32px;
  height: 3px;
  background: #5bc1ac;
  margin-bottom: 20px;
  border-radius: 2px;
}

.cap3-number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.cap3-stat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--p-color);
  margin: 0 0 10px;
}

.cap3-stat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-color);
  margin: 0;
  max-width: 240px;
}

/* ================================
   RESPONSIVE
================================ */

/* Large Tablet */
@media (max-width: 1199px) {
  .cap3-title {
    font-size: 34px;
  }

  .cap3-number {
    font-size: 60px;
  }

  .cap3-intro-box {
    padding: 40px 28px;
  }

  .cap3-stat-card {
    padding: 36px 20px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .cap3-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .cap3-intro-box {
    grid-column: 1 / span 2;
    grid-row: 1;
    text-align: center;
    align-items: center;
    padding: 40px 32px;
  }

  .cap3-line {
    margin-left: auto;
    margin-right: auto;
  }

  .cap3-title {
    font-size: 30px;
  }

  .cap3-number {
    font-size: 56px;
  }

  .cap3-stat-card {
    padding: 40px 24px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .cap3-container {
    grid-template-columns: 1fr;
    padding: 0px 15px;
    gap: 5px;
  }

  .cap3-intro-box {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    align-items: flex-start;
    padding: 36px 24px;
  }

  .cap3-title {
    font-size: 26px;
  }

  .cap3-stat-card {
    padding: 36px 24px;
    border-left: none;
    border-right: none;
  }

  .cap3-number {
    font-size: 52px;
  }

  .cap3-stat-title {
    font-size: 15px;
  }

  .cap3-stat-desc {
    font-size: 13px;
  }
}










.mould-section {
  width: 100%;
  padding: 70px 20px;
  /* background: #efefef; */
  /* replace with your own background if needed */
  /* background: #efefef url("images/your-bg.png") center/cover no-repeat; */
  background: url("../images/Background 1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.mould-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: nowrap;

}

.mould-card {
  width: 290px;

  border-radius: 50%;
  opacity: 30;
  transform: translateY(90px) scale(0.85);
  will-change: transform, opacity;
}

.mould-card img {
  width: 100%;
  display: block;
  /* border-radius: 50%; */
  user-select: none;
  pointer-events: none;
}

.mould-section.animate .mould-card {
  animation: jumpIn 0.9s ease forwards;
}

.mould-section.animate .mould-card:nth-child(1) {
  animation-delay: 0.1s;
}

.mould-section.animate .mould-card:nth-child(2) {
  animation-delay: 0.25s;
}

.mould-section.animate .mould-card:nth-child(3) {
  animation-delay: 0.4s;
}

.mould-section.animate .mould-card:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes jumpIn {
  0% {
    opacity: 0;
    transform: translateY(90px) scale(0.82);
  }

  45% {
    opacity: 1;
    transform: translateY(-18px) scale(1.04);
  }

  65% {
    opacity: 1;
    transform: translateY(8px) scale(0.98);
  }

  80% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1230px) {
  .mould-wrapper {
    gap: 22px;
  }

  .mould-card {
    width: 260px;
  }
}

@media (max-width: 991px) {
  .mould-section {
    padding: 50px 16px;
  }

  .mould-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .mould-wrapper::-webkit-scrollbar {
    display: none;
  }

  .mould-card {
    flex: 0 0 50%;
    width: calc(50% - 14px);
    max-width: 50%;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .mould-card {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
}



.odm-section {
  width: 100%;
  min-height: 405px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
  overflow: hidden;
}

.odm-container {
  max-width: 980px;
  width: 100%;
  text-align: center;
}

.odm-title,
.odm-description {
  opacity: 0;
  transform: translateY(70px);
}

/* animate every time when section enters */
.odm-section.animate .odm-title {
  animation: fadeUp 0.9s ease forwards;
}

.odm-section.animate .odm-description {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.25s;
}

.odm-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  color: #222222;
  margin-bottom: 28px;
}

.green-text {
  color: #5bc1ac;
}

.odm-description {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.45;
  color: #000;
  font-weight: 400;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }

  60% {
    opacity: 1;
    transform: translateY(-8px);
  }

  80% {
    opacity: 1;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .odm-title {
    font-size: 52px;
  }

  .odm-description {
    font-size: 19px;
    max-width: 780px;
  }
}

@media (max-width: 991px) {
  .odm-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .odm-title {
    font-size: 44px;
    margin-bottom: 22px;
  }

  .odm-description {
    font-size: 18px;
    line-height: 1.5;
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .odm-title {
    font-size: 36px;
  }

  .odm-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .odm-section {
    padding: 50px 15px;
  }

  .odm-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .odm-description {
    font-size: 15px;
    line-height: 1.6;
  }
}







/* Section */
/* Section */
.amancarousel-section {
  position: relative;
  width: 100%;
  min-height: 470px;
  overflow: hidden;
}

/* Background image + overlay */
.amancarousel-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/important/machine19.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Optional hex pattern feel */
.amancarousel-bg::before,
.amancarousel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
}

.amancarousel-bg::before {
  background-image:
    linear-gradient(30deg, transparent 75%, rgba(0, 0, 0, 0.45) 75%),
    linear-gradient(-30deg, transparent 75%, rgba(0, 0, 0, 0.45) 75%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 2%, transparent 2%);
  background-size: 135px 160px;
  background-position: 0 0, 0 0, 0 0;
}

.amancarousel-bg::after {
  background-image:
    linear-gradient(150deg, rgba(255, 255, 255, 0.015) 20%, transparent 20%),
    linear-gradient(330deg, rgba(255, 255, 255, 0.01) 20%, transparent 20%);
  background-size: 180px 180px;
}

/* Container */
.amancarousel-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px 40px; */
}

/* Stage */
.amancarousel-stage {
  position: relative;
  width: 1000px;
  height: 540px;
  perspective: 1400px;
  transform-style: preserve-3d;
  /* padding: 20px 40px; */
}

/* Slide */
.amanslide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 640px;
  height: 518px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  transform-origin: center center;
  transition:
    transform 0.65s ease,
    opacity 0.65s ease,
    filter 0.65s ease,
    z-index 0.65s ease;
  border: 2px solid #5bc1ac;
}

.amanslide-image {
  width: 100%;
  height: 518px;
  display: block;
  object-fit: contain;
}

/* .amanslide-caption {
  height: 70px;
  background: #ececec;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 10px 18px;
  line-height: 1.2;
} */

/* Center slide */
.amanslide.amancenter {
  z-index: 5;
  opacity: 1;
  filter: brightness(1);
  transform: translateX(-50%) translateZ(0) scale(1) rotateY(0deg);
}

/* Left slide */
.amanslide.amanleft {
  z-index: 3;
  opacity: 1;
  filter: brightness(0.82);
  transform: translateX(-103%) translateY(16px) scale(0.78) rotateY(28deg);
}

/* Right slide */
.amanslide.amanright {
  z-index: 3;
  opacity: 1;
  filter: brightness(0.82);
  transform: translateX(3%) translateY(16px) scale(0.78) rotateY(-28deg);
}

/* Hidden supporting slides */
.amanslide.amanhidden-left {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.6);
  transform: translateX(-135%) translateY(30px) scale(0.6) rotateY(40deg);
  pointer-events: none;
}

.amanslide.amanhidden-right {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.6);
  transform: translateX(35%) translateY(30px) scale(0.6) rotateY(-40deg);
  pointer-events: none;
}

/* Arrows */
.amannav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.amannav-btn span {
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}

.amannav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%) scale(1.08);
}

.amanprev {
  left: 70px;
}

.amannext {
  right: 70px;
}

/* Responsive */
@media (max-width: 1200px) {
  .amancarousel-stage {
    width: 900px;
  }

  .amanslide {
    width: 430px;
    height: 365px;
  }

  .amanslide-image {
    height: 295px;
  }

  /* .amanslide-caption {
    height: 70px;
    font-size: 21px;
  } */

  .amanprev {
    left: 28px;
  }

  .amannext {
    right: 28px;
  }
}

@media (max-width: 992px) {
  .amancarousel-container {
    height: 390px;
  }

  .amancarousel-stage {
    width: 760px;
    height: 320px;
  }

  .amanslide {
    width: 360px;
    height: 320px;
  }

  .amanslide-image {
    height: 260px;
  }

  /* .amanslide-caption {
    height: 60px;
    font-size: 18px;
  } */

  .amanslide.amanleft {
    transform: translateX(-96%) translateY(12px) scale(0.72) rotateY(24deg);
  }

  .amanslide.amanright {
    transform: translateX(-4%) translateY(12px) scale(0.72) rotateY(-24deg);
  }
}

@media (max-width: 768px) {
  .amancarousel-section {
    min-height: 360px;
    margin-top: 1%;
  }

  .amancarousel-container {
    height: 360px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .amancarousel-stage {
    width: 100%;
    max-width: 500px;
    height: 280px;
    perspective: 1000px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 15px;
  }

  .amanslide {
    width: 300px;
    height: 270px;
    position: relative;
    flex: 0 0 100%;
    transform: none !important;
    transition: none !important;
    scroll-snap-align: start;
    opacity: 1 !important;
  }

  .amanslide-image {
    height: auto;
    /* width: 100%; */
    object-fit: contain;
  }

  /* .amanslide-caption {
    height: 55px;
    font-size: 18px;
    padding: 8px 12px;
  } */

  .amanslide.amanleft,
  .amanslide.amanright,
  .amanslide.amanhidden-left,
  .amanslide.amanhidden-right {
    opacity: 1 !important;
    display: block !important;
  }

  .amanprev {
    left: 10px;
  }

  .amannext {
    right: 10px;
  }

  .amannav-btn {
    width: 40px;
    height: 40px;
    display: none;
  }

  .amannav-btn span {
    font-size: 24px;
  }
}












/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
}


/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
  background-image: url('../images/slider/rubbercompression.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.cta-section::after {
  content: "";
  border: 20px solid var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}


/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.testimonial-section::after {
  content: "";
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 230px;
  height: 230px;
}

.testimonial-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px;
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px;
}

#testimonial-carousel .carousel-indicators .avatar-image {
  width: 45px;
  height: 45px;
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
  background: transparent;
  width: 50px;
  height: 50px;
}

@media (max-width:768px) {
  .testimonial-section .container {

    padding: 0px 10px;
  }
}




.growth-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  /* background: #000; */
  background-image: url("../images/important/machine19.jpeg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.growth-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 38%, rgba(0, 0, 0, 0.58) 60%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 9, 20, 0.35) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.growth-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.growth-content {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.growth-left {
  width: 50%;
  flex: 0 0 50%;
  /* padding-left: 10px; */
}

.growth-small-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-main-title {
  margin: 0 0 22px;
  color: #e6ef87;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-text {
  margin: 0;
  max-width: 520px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  text-align: justify;
}

.growth-right {
  width: 45%;
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.growth-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 5px;
  display: block;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
  .growth-small-title {
    font-size: 24px;
  }

  .growth-main-title {
    font-size: 30px;
  }

  .growth-text {
    font-size: 16px;
    max-width: 470px;
  }

  .growth-image {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .growth-section {
    background-position: center center;
  }

  .growth-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 55%, rgba(0, 0, 0, 0.7) 100%);
  }

  .growth-content {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
  }

  .growth-left,
  .growth-right {
    width: 100%;
  }

  .growth-right {
    justify-content: center;
  }

  .growth-image {
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .growth-container {
    padding: 0 18px;
  }

  .growth-content {
    padding: 45px 0;
  }

  .growth-left {
    padding-left: 0;
  }

  .growth-small-title {
    font-size: 18px;
  }

  .growth-main-title {
    font-size: 24px;
    line-height: 1.15;
  }

  .growth-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .growth-image {
    max-width: 100%;
  }
}







/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency+.form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio]+.form-check-label,
.form-check-radio .form-check-input:hover+.form-check-label,
.form-check-radio .form-check-input:checked+.form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}










/* style.css */


.clients-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tag {
  display: inline-block;
  font-size: 14px;
  color: var(--primary-color);
  background: #eaf3ff;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 38px;
  color: var(--p-color);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-header p {
  font-size: 17px;
  color: #000;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.clients-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 90s linear infinite;
  gap: 0;
}

.clients-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.client-card {
  min-width: 200px;
  height: 110px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 236, 242, 0.9);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(31, 45, 61, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding: 20px;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 45, 61, 0.12);
}

.client-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.35s ease;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .clients-section {
    padding: 70px 18px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .client-card {
    min-width: 180px;
    height: 100px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .client-card {
    min-width: 160px;
    height: 90px;
    border-radius: 18px;
  }

  .clients-group {
    gap: 18px;
    padding-right: 18px;
  }

  .clients-track {
    animation-duration: 70s;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .clients-section {
    padding: 55px 14px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .client-card {
    min-width: 140px;
    height: 82px;
    padding: 16px;
  }

  .client-card img {
    max-height: 45px;
  }

  .clients-group {
    gap: 14px;
    padding-right: 14px;
  }

  .clients-track {
    animation-duration: 60s;
  }
}






/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}









.products-portfolio {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 30px 10px;
  background-color: #ffc107;
}

.container {
  width: 100%;
}

.header-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 1px;
  color: var(--p-color);
  margin-bottom: 10px;
  position: relative;
}

.header-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: -20px;
}

.main-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--p-color);
  font-family: 'Manrope', sans-serif;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab {
  background: transparent;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  font-family: 'Manrope', sans-serif;
  border-bottom: 3px solid transparent;
}

.tab:hover {
  color: var(--primary-color);
}

.tab.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

/* ── Carousel Wrapper ── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  transform: scale(1.1);
}

.carousel-arrow svg {
  width: 30px;
  height: 30px;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
}

/* ── Products Row ── */
.category-products {
  display: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 30px;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-products::-webkit-scrollbar {
  display: none;
}

.category-products.active {
  display: flex;
}

/* ── Product Card ── */
.product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(25% - 23px);
  min-width: 240px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ── Tablet ── */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(33.33% - 17px);
    min-width: 280px;
  }

  .main-title {
    font-size: 40px;
  }

  .tab {
    padding: 14px 30px;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .product-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 250px;
  }

  .main-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .category-tabs {
    margin-bottom: 40px;
  }

  .tab {
    padding: 12px 25px;
    font-size: 14px;
  }

  .product-image {
    height: 220px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Mobile — hide arrows, full width cards, swipe only ── */
@media (max-width: 600px) {
  .products-portfolio {
    padding: 40px 0;
  }

  /* Hide left/right arrow buttons on mobile */
  .carousel-arrow {
    display: none;
  }

  /* Container takes full width with no side gaps */
  .carousel-container {
    width: 100%;
  }

  .carousel-wrapper {
    gap: 0;
    padding: 0;
  }

  /* Each card = exactly 100% of screen width */
  .category-products {
    gap: 0;
    /* Snap scroll so each swipe lands on exactly one card */
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 100vw;
    min-width: unset;
    width: 100vw;
    border-radius: 0;
    border-left: none;
    border-right: none;
    /* Each card snaps into view */
    scroll-snap-align: start;
  }

  .product-image {
    height: 260px;
  }

  .main-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .header-text {
    font-size: 11px;
    padding: 0 15px;
  }

  .category-tabs {
    gap: 0;
    margin-bottom: 30px;
  }

  .tab {
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .tab {
    padding: 10px 15px;
    font-size: 12px;
  }

  .main-title {
    font-size: 24px;
  }

  .category-tabs {
    flex-wrap: nowrap;
  }

  .tab {
    /* background: transparent;
    border: none; */
    /* padding: 16px 40px; */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-family: 'Manrope', sans-serif;
    border-bottom: 3px solid transparent;
  }

  .header-text {
    font-size: 10px;
  }

  .product-image {
    height: 220px;
  }
}











/* ── Side Widget ── */
.support-widget {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 9999;
}

.support-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.support-btn {
  height: 56px;
  min-width: 56px;
  width: 56px;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* icon always on right edge */
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: -4px 4px 14px rgba(0, 0, 0, 0.15);
  padding-right: 16px;
}

.support-btn:hover {
  width: 160px;
  /* expands to the LEFT */
  box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.2);
}

.support-btn i {
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

/* Label sits to the LEFT of the icon */
.support-text {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  margin-right: 0;
  transition: opacity 0.25s ease 0.05s, max-width 0.3s ease, margin-right 0.3s ease;
}

.support-btn:hover .support-text {
  opacity: 1;
  max-width: 110px;
  margin-right: 10px;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #007bff;
}

.enquiry-btn {
  background: #ff6347;
}

/* ── Modal Overlay ── */
.enquiry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.enquiry-overlay.open {
  display: flex;
}

.enquiry-modal {
  background: #f5ede0;
  border-radius: 12px;
  max-width: 800px;
  width: 92%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  animation: popIn 0.25s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.93);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  z-index: 10;
}

.modal-close:hover {
  color: #222;
}

/* ── Left Panel ── */
.modal-left {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-left h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.modal-left>p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: #4caf50;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon i {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.brand-logo {
  margin-top: auto;
  padding-top: 20px;
}

.brand-logo img {
  max-height: 100px;
  width: 280px;
  object-fit: contain;
}

/* ── Right Panel ── */
.modal-right {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-right h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 4px;
}

.modal-sub {
  font-size: 13px;
  color: #888;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 10px;
}

.modal-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s;
}

.modal-input:focus {
  border-color: #aaa;
}

.register-btn {
  width: 100%;
  padding: 14px;
  background: #5bc1ac;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.register-btn:hover {
  background: #e6b800;
}

.privacy-note {
  font-size: 11.5px;
  color: #999;
  text-align: center;
  margin: 4px 0 0;
}

.privacy-note a {
  color: #666;
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .enquiry-modal {
    grid-template-columns: 1fr;
  }

  .modal-left {
    display: none;
    /* hide left panel on small screens */
  }

  .modal-right {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .support-btn {
    height: 48px;
    min-width: 48px;
    padding-right: 12px;
  }

  .support-btn i {
    font-size: 18px;
  }
}

















.mould-footer {
  width: 100%;
  background: #ffffff;
  padding: 20px 0 0;
  border-top: 1px solid #e8e8e8;
}

.mould-footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  /* 4 columns */
  gap: 34px;
  align-items: start;
}

.child-company-name {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  padding: 14px 0;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(91, 193, 172, 0.25);
  text-transform: uppercase;
}

.child-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.child-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5bc1ac, #4aaa97);
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 3px 10px rgba(91, 193, 172, 0.3);
}

.child-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(91, 193, 172, 0.45);
  background: linear-gradient(135deg, #4aaa97, #3d9585);
  color: #fff;
}

/* Common */
.mould-footer-col h3 {
  margin: 0 0 18px;
  color: #5bc1ac;
  font-size: 21px;
  line-height: 1.2;
  /* border: 2px solid red; */
  font-weight: 600;
  text-transform: uppercase;
}

/* About */
.mould-footer-logo {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.mould-footer-logo img {
  max-width: 280px;
  height: auto;
  display: block;
  margin-left: 0;
}

.mould-footer-logo h2 {
  font-size: 24px;
  color: #5bc1ac;
  font-weight: 600;
}

.mould-footer-logo span {
  display: block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.3px;
  font-family: 'Manrope', sans-serif;
  margin-top: -2px;
  padding-bottom: 4px;
}


.mould-footer-about p {
  margin: 0 0 14px;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* Useful links */
/* Useful links */
.mould-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mould-footer-links li {
  margin-bottom: 26px;
}

.mould-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.mould-footer-links a span {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.mould-footer-links a:hover {
  color: #33a9e3;
  transform: translateX(4px);
}

/* Image cards */
.mould-footer-image-card {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

.mould-footer-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}



/* Bottom */
.mould-footer-bottom {
  border-top: 1px solid #e7e7e7;
  padding: 24px 0 28px;
}

.mould-footer-bottom-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.3fr;
  gap: 34px;
}

.mould-contact-box h4 {
  margin: 0 0 18px;
  color: #5bc1ac;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.mould-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.mould-contact-item strong {
  color: #111111;
  font-size: 15px;
  font-weight: 700;
}

.mould-contact-item span {
  color: #33a9e3;
  font-size: 16px;
  line-height: 1.2;

  min-width: 18px;
  margin-top: 1px;
}


.mould-contact-item a,
.mould-contact-item p {
  margin: 0;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.mould-contact-item a:hover {
  color: #33a9e3;
}

.mould-address-item {
  align-items: flex-start;
}

/* Responsive */
@media (max-width: 1100px) {
  .mould-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mould-footer-bottom-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mould-footer-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mould-footer-bottom-container {
    gap: 22px;
  }

  .mould-footer-col h3 {
    font-size: 18px;
  }

  .mould-footer-links li {
    margin-bottom: 18px;
  }

  .mould-footer-image-card img {
    height: auto;
  }
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
/* .site-footer {
  background-color: white;
  padding-top: 70px;
} */

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-bottom a {
  color: black;
}

.site-footer-bottom a:hover {
  color: #FF6;
}

.site-footer-link {
  color: var(--white-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: black;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}



























/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }

  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .carousel:hover .carousel-control-next-icon,
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number,
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 580px) {

  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 520px;
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
}