/* Base Navbar - transparent background */
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  height: auto;

  min-height: 48px; /* tighter height */
}

.navbar-brand img {
  height: 28px; /* smaller logo for compact nav */
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 10px;
  line-height: 1.2;
  color: #002645 !important;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  /* -webkit-backdrop-filter: blur(10px); */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
  color: #002645 !important;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s ease-in-out;
}

.nav-link:hover::before {
  width: 100%;
}
.custom-navbar-height {
  height: 10%;
}

.btn-danger {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
}

.gradient-text {
  background: #F0F7FF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.culture-section {
      background-color: #ffffff;
      padding: 5rem 1rem;
    }

    .culture-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #0D3B66;
      text-align: center;
    }

    .culture-subtext {
      font-size: 1.125rem;
      color: #6c757d;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .value-card {
      background-color: #f9f9f9;
      padding: 1.5rem;
      border-radius: 1.25rem;
      box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      text-align: left;
    }

    .value-card:hover {
      transform: scale(1.05);
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      background-color: #0D3B66;
      color: #ffffff;
    }

    .value-card:hover h5,
    .value-card:hover p {
      color: #ffffff;
    }

    .icon {
      color: #dc3545;
      width: 40px;
      height: 40px;
      margin-bottom: 1rem;
    }

    .value-title {
      color: #0D3B66;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .value-description {
      color: #6c757d;
    }

    @media (min-width: 768px) {
      .culture-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 992px) {
      .culture-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

.container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  h2 {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  p.subtitle {
    text-align: center;
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  #loadingText {
    text-align: center;
    color: #0D3B66;
    font-weight: 600;
    margin: 3rem 0;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 1.5rem;
  }
  .team-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.15);
  }
  .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0D3B66;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    user-select: none;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-info {
    margin-left: 1rem;
    flex-grow: 1;
  }
  .team-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
  }
  .team-position {
    margin: 0;
    color: #dc3545;
    font-weight: 600;
  }
  .review {
    background: #e9f1ff;
    border-radius: 8px;
    padding: 1rem;
    font-style: italic;
    color: #2c3e50;
  }
  .rating {
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.25rem;
  }


   .team-card {
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .team-overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      background-color: #dc3545;
      opacity: 0.1;
      transition: all 0.5s ease;
      z-index: 0;
      border-radius: 0.5rem;
    }

    .team-card:hover .team-overlay {
      width: 100%;
      height: 100%;
    }

    .team-content {
      position: relative;
      z-index: 1;
    }

    .avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    }

    .initials-fallback {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background-color: #0D3B66;
      color: white;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

 /* Step Icon */
/* .step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #002645;
  color: white;
  font-size: 24px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 1;
} */

/* Animated Vertical Line */
/* .progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  background-color: #11B5E4;
  transform: translateX(-50%);
  animation: growLine 5s linear forwards;
  z-index: 0;
} */

@keyframes growLine {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

/* Hide timeline steps initially */
/* .timeline-step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
} */

 .progress-line {
      width: 4px;
      background-color: #dc3545;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      height: 0;
      transition: height 1s ease;
    }

    .step-icon {
      width: 64px;
      height: 64px;
      background-color: #002645;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 1;
    }

    .timeline-step {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease;
    }

    .timeline-step.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (min-width: 768px) {
      .step-row {
        display: flex;
        align-items: center;
      }

      .step-text-left {
        text-align: right;
        padding-right: 3rem;
      }

      .step-text-right {
        text-align: left;
        padding-left: 3rem;
      }

      .step-space {
        flex: 1;
      }
    }

.benefit-card {
      transition: all 0.3s ease;
      border: 1px solid #dee2e6;
    }
    .benefit-card:hover {
      border-color: #11B5E4;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transform: scale(1.02);
    }
    .benefit-card h3 {
      transition: color 0.3s ease;
    }
    .benefit-card:hover h3 {
      color: #dc3545;
    }
    .icon-bg {
      background-color: rgba(17, 181, 228, 0.1);
      padding: 1rem;
      border-radius: 50%;
      display: inline-flex;
      margin-bottom: 1rem;
    }
    .highlight-section {
      background: linear-gradient(to right, #0D3B66, #11B5E4);
    }

/* .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: #0D6EFD;
}

.footer-contact li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-contact .icon {
  color: #0D6EFD;
  margin-right: 8px;
}

.google-map {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 7px;
  border: 1px solid #ccc;
}

.footer-bottom p,
.footer-legal a {
  color: #aaa;
}

.footer-legal a:hover {
  color: #0D6EFD;
} */

    
.footer-custom {
   background-color: #002645;
  color: white;
  
  width: 100vw; /* Ensure it spans full screen width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 20px 30px;
}

.footer-custom a {
  color: white;
  text-decoration: none;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 4;
  min-width: 220px;
}
.footer-custom a:hover {
  text-decoration: underline;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  /* background-color: white; */
  color: #002645;
  transition: all 0.3s ease;
}

/* Social-specific hover colors */
.social-icon.twitter:hover { color: #1DA1F2; background-color: white; }
.social-icon.linkedin:hover { color: #0077B5; background-color: white; }
.social-icon.facebook:hover { color: #1877F2; background-color: white; }
.social-icon.instagram:hover { color: #E1306C; background-color: white; }
.social-icon.youtube:hover { color: #FF0000; background-color: white; }
.social-icon.medium:hover { color: #12100E; background-color: white; }
.social-icon.quora:hover { color: #B92B27; background-color: white; }

.footer-links li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #0D6EFD;
}

.footer-contact li {
  /* margin-bottom: 8px; */
  color: #ccc;
  /* line-height: 2px; */
}
.footer-custom .row {
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
  padding: 0 15px;
}

.footer-custom .col-md-2,
.footer-custom .col-md-5 {
  flex: 0 0 auto;
  width: auto;
  max-width: 292px;
}

.footer-contact .icon {
  color: #0D6EFD;
  margin-right: 8px;
}

.google-map {
  width: 260px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  /* margin-top: 7px; */
  border: 1px solid #ccc;
}

.footer-bottom p,
.footer-legal a {
  color: #aaa;
}

.footer-legal a:hover {
  color: #0D6EFD;
}

