/* General Section Styling */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #9bb4b9;
  margin-bottom: 2rem;
  text-align: center;
}

/* 
navbar hover */


/* Card Styling */
.card-custom {
  border: 2px solid #9bb4b9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(51, 58, 59, 0.2);
  background-color: #ffffff;
}


/* Card Title and Text */
.card-custom h5,
.card-custom ul,
.card-custom p {
  color: #01454e;
}

.card-custom h5 {
  font-weight: bold;
}

/* Hero Section */
.hero {
  background-color: #e3fcef;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #01454e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.3rem;
  color: #444;
  max-width: 600px;
  margin: auto;
}

/* Icon Circle */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #01454e;
  border-radius: 50%;
  padding: 8px;
}


/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p.lead {
    font-size: 1.1rem;
  }

  .navbar-brand {
    font-size: 1.8rem;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
  }
}


.hero {
  background: linear-gradient(135deg, #01454e, #9bb4b9);
  min-height: 300px;
  color: #ffffff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero h1,
.hero p {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero p {
  color: #ffffff !important;
}

/* 
    section added for make page responsive  */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/*  Keep images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 
responsiveness code end  */

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #9bb4b9;
  /* Updated */
  border-radius: 50%;
  padding: 8px;
}




.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(134, 155, 159, 0.2);
  background-color: #01454e;
  /* Card background on hover */
  color: white;
  /* Text color on hover */
}

/* Make sure all texts inside card also turn white on hover */
.card-custom:hover h5,
.card-custom:hover p,
.card-custom:hover ul,
.card-custom:hover li {
  color: white !important;
}

/* Also for any icons inside card */
.card-custom:hover .icon-circle {
  background-color: #9bb4b9;
  /* Keep icon circle background consistent */
}

.card-custom:hover .icon-circle img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(178deg) brightness(100%) contrast(101%);
}


#mission .card-custom {
  background-color: #01454e !important;
  color: white !important;
  border: none;
}

#mission .card-custom h4,
#mission .card-custom p,
#mission .card-custom span,
#mission .card-custom .fw-semibold {
  color: white !important;
}



#mission .icon-circle {
  background-color: #9bb4b9 !important;
}


#mission .card-custom .alert,
#mission .card-custom .alert p,
#mission .card-custom .alert span,
#mission .card-custom .alert strong,
#mission .card-custom .alert b {
  background-color: #9bb4b9 !important;
  color: black !important;
  border: none !important;
}