 body {
     font-family: 'Poppins', sans-serif;
     background-color: #f4f7f6;
     color: #333;
 }


  .navbar {
      /* position: fixed; */
      /* top: 0;
      left: 0; */
      width: 100%;
      z-index: 1030;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      padding: 15px 0;
      transition: all 0.3s ease;
  }

 .navbar.scrolled {
     padding: 10px 0;
     background-color: rgba(255, 255, 255, 1) !important;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     display: flex;
     align-items: center;
     padding: 0;
 }

 .navbar-brand img {
     height: 55px;
     transition: transform 0.3s ease;
 }

 .navbar-brand img:hover {
     transform: scale(1.05);
 }

 .navbar-brand span {
     font-size: 1.5rem;
     font-weight: 600;
     background: linear-gradient(45deg, #2575fc, #6a11cb);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-item {
     margin: 0 5px;
     position: relative;
 }

 .nav-link {
     color: #fff !important;
     font-weight: 500;
     padding: 8px 15px !important;
     position: relative;
     transition: all 0.3s ease;
 }

 .nav-link::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: linear-gradient(45deg, #2575fc, #6a11cb);
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 .nav-link:hover::before {
     width: 80%;
 }

 .nav-link:hover {
     color: #2575fc !important;
 }

 .dropdown-menu {
     border: none;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     border-radius: 12px;
     padding: 10px;
 }

 .dropdown-item {
     padding: 8px 20px;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .dropdown-item:hover {
     background: linear-gradient(45deg, #2575fc20, #6a11cb20);
     transform: translateX(5px);
 }

 .btn-outline-primary {
     border: 2px solid #2575fc;
     border-radius: 50px;
     padding: 8px 25px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .btn-outline-primary:hover {
     background: linear-gradient(45deg, #2575fc, #6a11cb);
     border-color: transparent;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(37, 117, 252, 0.2);
 }

 .navbar-toggler {
     border: none;
     padding: 0;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }

 .navbar-toggler-icon {
     width: 24px;
     height: 24px;
     background-image: none;
     position: relative;
     transition: all 0.3s ease;
 }

 .navbar-toggler-icon::before,
 .navbar-toggler-icon::after {
     content: '';
     position: absolute;
     width: 24px;
     height: 2px;
     background: #2575fc;
     left: 0;
     transition: all 0.3s ease;
 }

 .navbar-toggler-icon::before {
     top: 8px;
 }

 .navbar-toggler-icon::after {
     bottom: 8px;
 }

 /* Hero Section Styling */
 .hero-section {
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
     color: white;
     padding: 100px 0 80px;
     position: relative;
     overflow: hidden;
 }

 .hero-badge {
     background-color: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 8px 16px;
     border-radius: 50px;
     font-size: 0.9rem;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 20px;
 }

 /* Content Card Styling */
 .content-card {
     background: #fff;
     border-radius: 16px;
     padding: 40px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     margin-top: -40px;
     /* Overlaps with hero section */
     position: relative;
     z-index: 10;
 }

 .list-icon {
     color: #00d2ff;
     font-size: 1.2rem;
     margin-right: 10px;
 }

 /* Job Cards Styling (Fullstack & Backend) */
 .job-card {
     background: #fff;
     border-radius: 16px;
     border: 1px solid #eef2f5;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .job-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     border-color: #00d2ff;
 }

 .icon-box {
     width: 60px;
     height: 60px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin-bottom: 20px;
 }

 .bg-icon-purple {
     background: #f3e8ff;
     color: #9333ea;
 }

 .bg-icon-orange {
     background: #ffedd5;
     color: #ea580c;
 }

 .job-tags span {
     background: #f1f5f9;
     color: #475569;
     padding: 5px 12px;
     border-radius: 6px;
     font-size: 0.8rem;
     font-weight: 500;
     margin-right: 8px;
     margin-bottom: 8px;
     display: inline-block;
 }

 .btn-custom {
     background: linear-gradient(to right, #3a7bd5, #3a6073);
     color: white;
     font-weight: 500;
     border: none;
     padding: 12px 24px;
     border-radius: 8px;
     transition: 0.3s;
 }

 .btn-custom:hover {
     opacity: 0.9;
     color: white;
     transform: translateY(-2px);
 }

 .btn-outline-custom {
     border: 2px solid #3a7bd5;
     color: #3a7bd5;
     font-weight: 500;
     border-radius: 8px;
     padding: 10px 20px;
     transition: 0.3s;
 }

 .btn-outline-custom:hover {
     background: #3a7bd5;
     color: white;
 }

 /* Footer Styles */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 150px;
  margin-bottom: 1rem;
}

.footer-links h5 {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #334155;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

.team-section {
  /* padding: 4rem 1rem; */
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.team-section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-member-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

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

.team-member-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.team-member-card:hover .team-member-image {
  transform: scale(1.05);
}

.team-member-details {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 0.5rem;
}

.team-member-position {
  font-size: 1rem;
  color: #ff7e5f;
  margin: 0 0 1rem;
  font-weight: 500;
}

.team-member-bio {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff7e5f;
}


@media (max-width: 768px) {
  .navbar-collapse {
    background: rgb(162, 157, 157);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-item {
    margin: 5px 0;
  }


  .dropdown-menu {
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .btn-group {
    margin-top: 15px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-container {
    flex-direction: column;
  }

  .recognition-content,
  .recognition-highlights {
    width: 100%;
  }

  .milestone-metrics {
    gap: 20px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .logo-container {
    max-width: 100px;
  }

  .contact-us {
    padding: 50px 10px;
  }

  .contact-card {
    padding: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .contact-image {
    max-width: 300px;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .team-section-title h2 {
    font-size: 2rem;
  }

  .team-member-card {
    max-width: 300px;
  }

  .team-member-image-container {
    height: 200px;
  }

  .swiper {
    padding: 1rem 0.5rem;
  }
}