
/* Section */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}
.section-header .title {
  font-size: 2.5rem;
  color: #0668AB;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header .subtitle {
  font-size: 1.125rem;
  color: #475569;
}

/* Content Grid */
.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

/* Image Container */
.image-container {
  flex: 1 1 400px;
  position: relative;
}
.image-bg {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 75%;
  height: 100%;
  background-color: #F5D005;
  border-radius: 4px;
  z-index: 0;
}
.image-frame {
  position: relative;
  z-index: 1;
  border: 4px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.image-frame img:hover {
  transform: scale(1.05);
}

/* Text Content */
.text-content {
  flex: 1 1 400px;
}
.text-content p {
  margin-bottom: 1.5rem;
  color: #334155;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s, background-color 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: #0668AB;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #1e40af;
}
.btn-secondary {
  background-color: #fbbf24;
  color: #0668AB;
}
.btn-secondary:hover {
  background-color: #facc15;
}




/* HS Section */
.hs-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

/* Text Column */
.text-column {
  flex: 1 1 500px;
  z-index: 10;
}
.hs-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0668AB;
  margin-bottom: 2rem;
}
.hs-text p {
  margin-bottom: 1.5rem;
  color: #475569;
}

/* Button */
.cta-button {
  margin-top: 2rem;
}
.btn-consult {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid rgba(30,58,138,0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-consult:hover {
  background-color: #0668AB;
  color: #ffffff;
}
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: #F5D005;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.btn-consult:hover .icon-circle {
  transform: scale(1.1);
  color: #000;
}
.btn-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image Column */
.image-column {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}
.image-wrapper {
  position: relative;
  max-width: 450px;
  width: 100%;
}
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: #e0f2fe;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
}
.student-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Verified Badge */
.verified-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.badge-icon {
  background-color: #dcfce7;
  padding: 0.5rem;
  border-radius: 50%;
}
.badge-icon span {
  color: #16a34a;
}
.badge-text .badge-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
}
.badge-text .badge-value {
  font-size: 1rem;
  font-weight: 800;
  color: #0668AB;
}

/* Animation */
@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-bounce-subtle {
  animation: bounce-subtle 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    flex-direction: column;
  }
  .image-column {
    justify-content: center;
  }
}




/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section */
.ds-section {
  padding: 4rem 0;
}

/* Title */
.ds-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0668AB;
  margin-bottom: 1.5rem;
  position: relative;
}
.custom-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #facc15;
}

/* Subtitle */
.ds-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Feature Card */
.feature-card {
  display: flex;
  flex-direction: column;
  background-color: #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  gap: 2rem;
}
.feature-card .feature-image {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  opacity: 0.8;
}
.feature-icon {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  color: #0668AB;
  opacity: 0.2;
}
.feature-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0668AB;
  margin-bottom: 1rem;
}
.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) {
  .feature-card {
    flex-direction: row;
    align-items: center;
  }
  .feature-card .feature-image {
    flex: 1;
  }
  .feature-card .feature-content {
    flex: 2;
  }
}





  .cta-section {
    position: relative;
    min-height: 500px;
    height: 60vh;
    min-height: 300px;
    background-image: 
      url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    letter-spacing: 1px;
  }

  .cta-content h1 {
    font-size: clamp(2.1rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 2rem;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
  }

  .btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .btn.primary {
    background-color: #0668AB;
    color: white;
    border: 2px solid #0668AB;
  }

  .btn.primary:hover {
    background-color: #F5D005;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
  }

  .btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn.secondary:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
  }

  /* Mobile adjustments */
  @media (max-width: 576px) {
    .cta-section {
      min-height: 420px;
    }
    
    .cta-content h2 {
      font-size: 1.3rem;
    }
    
    .btn {
      padding: 0.9rem 1.8rem;
      font-size: 1rem;
    }
  }
