body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #fefefe;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* section.innerBanner {
  background: linear-gradient(to right, #273c75, #192a56);
  padding: 80px 0;
  color: #fff;
  text-align: center;
} */

section.innerBanner {
  /* background: linear-gradient(to right, #f4e2d8, #ba5370);  */
  padding: 10px 0;
  color: #2c2c2c;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: lightgray;
  margin-top: 30px;
}

section.innerBanner::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: pulse 10s linear infinite;
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.flex_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

section.innerBanner h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 00px;
  font-family: 'Inter', sans-serif;
  color: #000;
}

 

.flex_container {
  flex-direction: column;
}

/* 
header {
  background: #ffffff;
  padding: 20px; 

} */

header {
  background: #ffffff;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  padding: 00px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: sticky;
  top: 0; */
  z-index: 1000;
}


.logo {
  font-size: 24px;
  font-weight: bold;
}

ul.breadcrumbs {
  padding: 0;
  margin: 0;
  margin-left: auto;
  list-style: none;
  display: flex;
  align-items: center;
}

/* #mute-button {
  position: absolute;
  top: 10px;
  left: 20px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
} */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

ul.breadcrumbs li {
  margin-right: 10px;
  color: #000;
}

ul.breadcrumbs li a {
  color: #000000;
}

.logo img {
  max-width: 180px;
  display: block;
  margin: 30px auto 0px;
    transition: all .3s;
}
.main-header.header-fixed .logo img {
    max-width: 100px;
    margin: 10px;
}
.videoWraper {
  width: 48%;
}

.phone-numbers p {
  margin: 5px 0;
  /* font-size: 18px; */
}

.info-boxes {
  padding: 40px 0;
  background: #f8f9fa;
  text-align: center;
}

.info-boxes .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.box {
  width: 40%;
  max-width: 320px;
  padding: 20px;
  background: #6c757d;
  color: white;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;



  background: #ffffff;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.box:hover {
  /* background: #343a40; */
  /* transform: scale(1.1); */
  background: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.box a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.box h3 {
  margin-bottom: 10px;
  color: #37559e;
}

.box p {
  font-size: 15px;
}
.videoWraper iframe {
    background: #000;
    border-radius: 4px;
}
.description {
  padding: 60px 40px;
  background: #ffffff;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}


.description p {
  margin-bottom: 0;
  margin-top: 0;
}
.description p + p{margin-top: 10px;}
.videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: #dee2e6;
}

.cta-button {
  display: inline-block;
  background: #37559e;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #2c3e70;
}



.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  box-sizing: border-box;
}


.flex_container {
  display: flex;
  align-items: center;
  width: 100%;
}

.flex_container h2 {
  color: #fff;
}

.video-box {
  width: 200px;
  height: 120px;
  background: #6c757d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 8px;
}

/* footer {
  background: #343a40;
  color: white;
  padding: 20px;
} */

footer {
  background: #1e272e;
  color: #d2dae2;
  padding: 10px 20px;
  text-align: center;
}

footer p {
  font-size: 14px;
}

.main-header {
  background: #ffffff;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  /* border-bottom: solid 1px  rgba(0, 0, 0, 0.05); */
  padding: 0;
  /* position: sticky;
  top: 0; */
  z-index: 1000;
}
.main-header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding:  0;  
  transition: padding 0.3s ease;
}
body.header-fixed-adjusted {
  padding-top: 80px; 
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container .left-section,
.header-container .center-section,
.header-container .right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-container .left-section {
  justify-content: flex-start;
}

.header-container .right-section {
  justify-content: flex-end;
  margin-bottom: auto;
}

.contact-link {
  font-size: 13px;
  font-weight: 600;
  color: #37559e;
  border-radius: 5px;
  transition: all 0.3s ease;
}

 .videoWraper.smallimage p + p {
    text-align: justify;
}

/* Improved Mute Button */
.mute-button {
  background: #37559e;
  border: none;
  padding: 7px;
  border-radius: 0 0 50% 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  /* position: absolute;
  top: 0; */
  margin-left: 10px;
}

.innerBanner .flex_container {
  flex-direction: row;
}

.mute-button:hover {
  background: #2b4582;
  transform: scale(1.1);
}

.mute-button svg {
  width: 18px;
  height: 18px;
}

#icon-muted,
#icon-unmuted {
  display: none;
}

.center-section.logo a {
  display: block;
  outline: none;
}

.team-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.team-members {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.member-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s;
  box-sizing: border-box;
}

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

.member-photo {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 280px;
}

.videoWraper img,
.videoWraper iframe {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center bottom;
}

.member-name {
  font-size: 1.25rem;
  margin-top: 15px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}

.member-role {
  font-size: 1rem;
  color: #666;
  margin-top: 5px;
}

.video-gallery {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.video-gallery .logo-wrapper {
  margin-bottom: 40px;
}

.video-gallery .logo-center {
  width: 160px;
  max-width: 100%;
}

.video-gallery .video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-gallery .video-item {
  width: 320px;
  max-width: 100%;
}

.video-gallery .video-item iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
    background: #010101;
}

.video-gallery .video-item h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}
/* Initiatives Section — Distinct Design */
.initiatives-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.initiatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 16px; /* Optional: add horizontal padding for mobile safety */
}

/* Base card styles */
.initiative-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  padding: 0;
  box-sizing: border-box;
  /* Default: 1 column (mobile-first) */
  flex: 0 0 100%;
  max-width: 100%;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .initiative-card {
    flex: 0 0 calc(50% - 12px); /* (100% - gap) / 2 → 50% - 12px */
    max-width: calc(50% - 12px);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .initiative-card {
    flex: 0 0 calc(33.333% - 16px); /* (100% - 2*24px) / 3 ≈ 33.333% - 16px */
    max-width: calc(33.333% - 16px);
  }
}

/* Hover effects */
.initiative-card:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.initiative-card:hover .card-image img {
  opacity: 0.92;
}

.card-content {
  padding: 20px;
}

.videoWrapper.smallimage img {
  height: auto;
  width: auto;
  border-radius: 8px;
}

.card-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #37559e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.initiative-card:hover h3::after {
  opacity: 1;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}




/* 📱 Responsive */
@media (max-width: 600px) {
  .header-container{
    flex-direction: column;
  }
  .header-container .right-section{
    padding: 10px;
  }
  .mute-button{
    border-radius: 4px;
  }
  .form-container h2 {
    font-size: 1.4rem;
  }
  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .member-card {
    width: 100%;
    max-width: 320px;
    
  }
  .popup-content{
    padding: 30px 15px;
  }
  .popup-photo {
    width: 160px;
    height: 160px;
    object-fit: contain;
  }
}


.member-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding-bottom: 50px;
}

.team-members .member-card {
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #000;
}

.popup-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.popup-text {
  text-align: center;
}

.popup-role {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;

}

.popup-bio {
  text-align: left;
  line-height: 1.6;
  white-space: pre-line;
  font-size: 15px;
}

.popup-text h2 {
  margin-bottom: 0;
}

.popup-text .popup-role {
  margin-top: 0;
}

/* Inquiry Form Section */
.inquiry-form-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.form-container p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label,
.form-group legend,
.form-group p {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.submit-btn {
  background: #37559e;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.error-msg {
    color: red;
    font-size: 12px;
}
.error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 6px;
  display: block;
}
.submit-btn:hover {
  background: #2b4582;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}




































@media (max-width: 1024px) {

  .info-boxes .container {
    gap: 20px;
  }

  .videoWraper img,
  .videoWraper iframe {
    width: 100%;
    height: 250px;
  }


}

@media (max-width: 768px) {
  .videoWraper {
    width: 100%;
  }
  ul.breadcrumbs li a{
    font-size: 14px;
  }

  .videoWraper img,
  .videoWraper iframe {
    width: 100%;
    height: 300px;
  }

  section.innerBanner h2 {
    font-size: 20px;
  }

 
  .box {
    width: 100%;
    max-width: 100%;
  }

  .description {
    padding: 60px 10px;
  }

  .member-popup {
    padding: 10px;
    box-sizing: border-box;
  }

  header {
    flex-direction: column;
    align-items: start;
  }

  /* #mute-button {
    position: static;
    margin-bottom: 10px;
  } */

  .innerBanner .flex_container {
    flex-direction: column;
    text-align: center;
  }
  ul.breadcrumbs{
    margin: 0;
    padding-top: 5px;
    padding-bottom: 10px;
     flex-wrap: wrap;
      justify-content: center;
  }
}

@media (max-width: 576px) {

  .videoWraper img,
  .videoWraper iframe {
    width: 100%;
    height: 210px;
    border-radius: 8px;
  }
}




@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}




@media (min-width: 768px) {
  .popup-body {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .popup-text {
    text-align: left;
  }

  .popup-photo {
    margin: 0;
  }
}