/* Parallax Zoom Effect for Carousel Slides */
.carousel-item {
  overflow: hidden;
}
.carousel-item img.parallax-zoom {
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.carousel-item.active img.parallax-zoom {
  transform: scale(1.08);
}
.carousel-caption {
  border-radius: 10px;
  padding: 1.5rem;
  animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Welcome Section Modern Styles */
.welcome-section {
  background: linear-gradient(135deg, #f8fafc 60%, #e3f0ff 100%);
}
.welcome-illustration {
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.07));
  max-width: 90%;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.welcome-illustration:hover {
  transform: scale(1.04) rotate(-2deg);
}
.welcome-card {
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
  background: transparent;
  transition: box-shadow 0.3s;
}
.welcome-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.welcome-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.welcome-section p.lead {
  font-size: 1.25rem;
  color: #3a3a3a;
}
.welcome-section .btn-primary {
  background: linear-gradient(90deg, #2563eb, #38b6ff);
  border: none;
  box-shadow: 0 2px 12px rgba(56,182,255,0.13);
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.welcome-section .btn-primary:hover {
  background: linear-gradient(90deg, #38b6ff, #2563eb);
  transform: translateY(-2px) scale(1.04);
}

/* Achievements Section Modern Styles */
.achievements-section {
  background: #f8fafc;
}
.achievements-svg-wrapper {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.achievements-bg-blob {
  filter: blur(1px);
  opacity: 0.9;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.achievements-svg {
  max-width: 95%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.stat-card {
  border-radius: 1.2rem;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.18s;
  box-shadow: 0 2px 16px rgba(56,182,255,0.07);
  border: none;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  box-shadow: 0 6px 32px rgba(37,99,235,0.13);
  transform: translateY(-3px) scale(1.03);
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.stat-number {
  font-size: 2.2rem;
  color: #2563eb;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  color: #222;
}
.stat-desc {
  color: #6b7280;
  margin-top: 0.2rem;
}
@media (max-width: 991.98px) {
  .achievements-section .row {
    flex-direction: column;
  }
  .achievements-svg {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .stat-card {
    padding: 1.2rem 0.7rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .achievements-svg {
    max-width: 180px;
  }
  .stat-card {
    padding: 1rem 0.5rem;
  }
}

/* Partners Section Styles */
.partners-section {
  background: #fff;
  border-top: 1px solid #e3f0ff;
  border-bottom: 1px solid #e3f0ff;
}
.partners-section h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #2563eb;
}
.partner-logo {
  max-height: 64px;
  min-width: 100px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0.5) brightness(0.9) drop-shadow(0 2px 10px rgba(56,182,255,0.06));
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s, transform 0.2s;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 0.5rem 1.3rem;
  margin: 0 0.5rem;
}
.partner-logo:hover {
  filter: grayscale(0) brightness(1) drop-shadow(0 4px 24px rgba(56,182,255,0.12));
  opacity: 1;
  transform: scale(1.06) translateY(-2px);
  background: #e3f0ff;
}
@media (max-width: 991.98px) {
  .partner-logo {
    max-height: 48px;
    min-width: 72px;
    padding: 0.3rem 0.7rem;
  }
  .partners-section h2 {
    font-size: 1.4rem;
  }
  .contact-section .card {
    padding: 1.2rem !important;
  }
  .contact-section .map-card iframe {
    height: 200px;
    min-height: 120px;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(120deg, #f8fafc 70%, #e3f0ff 100%);
  position: relative;
}
.contact-section .card {
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 8px 32px rgba(56,182,255,0.10);
  background: #fff;
}
.contact-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.contact-section .form-label {
  font-weight: 500;
  color: #2563eb;
}
.contact-section .form-control:focus {
  border-color: #38b6ff;
  box-shadow: 0 0 0 0.15rem rgba(56,182,255,0.13);
}
.contact-section .btn-primary {
  background: linear-gradient(90deg, #2563eb, #38b6ff);
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(56,182,255,0.13);
  transition: background 0.3s, transform 0.2s;
}
.contact-section .btn-primary:hover {
  background: linear-gradient(90deg, #38b6ff, #2563eb);
  transform: translateY(-2px) scale(1.04);
}
.map-card {
  background: #e3f0ff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(56,182,255,0.10);
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: stretch;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 240px;
  border-radius: 1.2rem;
}
@media (max-width: 767.98px) {
  .contact-section .row.g-4 > div {
    margin-bottom: 1.5rem;
  }
  .contact-section .map-card iframe {
    height: 180px;
    min-height: 100px;
  }
}
.about-hero-svg {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem auto;
  transition: transform 0.3s ease;
}
.about-hero-svg:hover {
  transform: translateY(-5px);
}
.about-section {
  background: linear-gradient(120deg, #f8fafc 70%, #e3f0ff 100%);
  min-height: 100vh;
  padding: 80px 0;
}
.about-content {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4b5563;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 2.5rem;
}
.about-content p {
  margin-bottom: 1.5rem;
}
.about-feature {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(56, 182, 255, 0.1);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(56, 182, 255, 0.15);
}
.about-feature svg {
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.about-feature:hover svg {
  transform: scale(1.1);
}
.about-feature h5 {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.about-feature p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.section-title {
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3b82f6;
  bottom: -10px;
  left: 0;
  border-radius: 3px;
}


/* Footer Styles */
.footer {
  background: #1a1a2e;
  position: relative;
  overflow: hidden;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer h5:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #38b6ff;
}

.footer p.small {
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer ul li:hover {
  transform: translateX(5px);
}

.footer ul li a {
  color: #b3b3b3;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: #38b6ff;
  padding-left: 5px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: #38b6ff;
  transform: translateY(-3px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

@media (max-width: 991.98px) {
  .footer {
    text-align: center;
  }
  
  .footer h5:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer ul {
    margin-bottom: 2rem;
  }
  
  .footer .social-links {
    justify-content: center !important;
    margin-top: 1.5rem;
  }
}