* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  background: rgba(11, 28, 45, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left side */
.top-bar-left a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  margin-right: 8px;
  transition: color 0.3s ease;
}

.top-bar-left a:hover {
  color: #FBC531;
}

.divider {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

/* Right side */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.top-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #FBC531;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.top-link:hover::after {
  width: 100%;
}

/* CTA Button */
.top-btn {
  background: #FBC531;
  color: #0A3D62;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(251, 197, 49, 0.6);
}

.top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(251, 197, 49, 0.8);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-bar-left {
    font-size: 13px;
  }

  .top-bar-right {
    gap: 10px;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 42px; /* height of top bar */
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: 72px; /* ✅ ADD THIS */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;        /* ❌ no vertical padding */
  height: 100%;           /* ✅ match navbar height */
  display: flex;
  align-items: center;    /* vertical center */
  justify-content: space-between;
}


/* Logo */
.nav-logo img {
  height: 80px;
  object-fit: contain;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #0B1C2D;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #FBC531;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background: url("Home\ Page\ 1.jpg.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
  overflow: hidden;
}

/* Blue transparent overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
     rgba(4, 88, 161, 0.8),
     rgba(9, 84, 150, 0.6)
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #ffffff;
  animation: fadeUp 1.1s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #FBC531;
}

.hero-content p {
  margin-top: 16px;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Buttons */
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #FBC531;
  color: #0B1C2D;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 0 rgba(251, 197, 49, 0.7);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(251, 197, 49, 0.9);
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0B1C2D;
}

/* Stats */
.hero-stats {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat h3 {
  color: #FBC531;
  font-size: 1.8rem;
}

.stat span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 25px;
  }
}


/* ===== ABOUT US SECTION ===== */
.about-yuva {
  padding: 100px 20px;
  background: linear-gradient(
    to bottom,
    rgba(10, 102, 194, 0.04),
    #ffffff
  );
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.about-content .about-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 2.6rem;
  color: #0B1C2D;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #0A66C2;
}

.about-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-box h3 {
  font-size: 1.8rem;
  color: #0A66C2;
}

.stat-box span {
  font-size: 0.9rem;
  color: #666;
}

/* Image */
.about-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(10, 102, 194, 0.35),
    rgba(10, 102, 194, 0.05)
  );
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 1.9rem;
  }
}


/* ===== NEW SERVICES DESIGN ===== */
.services-new {
  padding: 90px 20px;
  background: #f8fafc;
}

.services-title {
  text-align: center;
  margin-bottom: 50px;
}

.services-title h2 {
  font-size: 2.5rem;
  color: #0B1C2D;
}

.services-title h2 span {
  color: #0A66C2; /* brand blue */
}

.services-title p {
  margin-top: 10px;
  color: #555;
}

/* Cards layout */
.services-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* FORCE 3 cards on top */
  gap: 30px;
}

/* Card */
.service-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient hover layer */
.service-card-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 102, 194, 0.08),
    rgba(10, 102, 194, 0)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.service-card-new:hover::before {
  opacity: 1;
}

.service-card-new:hover {
  transform: translateY(-10px);
}

/* Icon */
.service-card-new .icon {
  width: 56px;
  height: 56px;
  background: #FBC531;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}


/* Text */
.service-card-new h3 {
  font-size: 1.15rem;
  color: #0B1C2D;
  margin-bottom: 10px;
}

.service-card-new p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/* Center last 2 cards */
@media (min-width: 992px) {
  .services-cards .service-card-new:nth-child(4) {
    grid-column: 2 / 3;
  }

  .services-cards .service-card-new:nth-child(5) {
    grid-column: 3 / 4;
  }
}



@media (max-width: 768px) {
  .services-cards {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .service-card-new {
    min-width: 260px;
    flex-shrink: 0;
  }

  .services-cards::-webkit-scrollbar {
    height: 6px;
  }

  .services-cards::-webkit-scrollbar-thumb {
    background: #0A66C2;
    border-radius: 10px;
  }
}

/* ===== COURSES SECTION ===== */
.courses-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #0A66C2, #FBC531);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #0B1C2D;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #0A66C2, #FBC531);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header h2 span {
  color: #0A66C2;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Course Card */
.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.course-card.featured {
  border: 2px solid #FBC531;
  box-shadow: 0 20px 50px rgba(251, 197, 49, 0.15);
}

/* Course Badge */
.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FBC531 0%, #F9A825 100%);
  color: #0B1C2D;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(251, 197, 49, 0.3);
}

/* Course Icon */
.course-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0A66C2 0%, #0B1C2D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 30px auto 25px;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
}

.course-card.featured .course-icon {
  background: linear-gradient(135deg, #FBC531 0%, #F9A825 100%);
}

/* Course Content */
.course-content {
  padding: 0 30px 25px;
  flex-grow: 1;
}

.course-content h3 {
  font-size: 1.5rem;
  color: #0B1C2D;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}

/* Course Boards */
.course-boards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.board-tag {
  background: #e6f0ff;
  color: #0A66C2;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.board-tag.all-boards {
  background: #FBC531;
  color: #0B1C2D;
  padding: 6px 20px;
}

/* Course Tags for Science */
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.exam-tag {
  background: #ffe6e6;
  color: #e63946;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Course Subjects */
.course-subjects {
  list-style: none;
  margin: 20px 0;
}

.course-subjects li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.95rem;
}

.course-subjects li:last-child {
  border-bottom: none;
}

.course-subjects li i {
  color: #0A66C2;
  width: 20px;
  text-align: center;
}

/* Course Footer */
.course-footer {
  padding: 25px 30px;
  background: #f8fafc;
  border-top: 1px solid #e1e8f0;
  text-align: center;
}

/* Enroll Button */
.enroll-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0A66C2 0%, #0B1C2D 100%);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
  background: linear-gradient(135deg, #0B1C2D 0%, #0A66C2 100%);
  color: white;
}

.course-card.featured .enroll-btn {
  background: linear-gradient(135deg, #FBC531 0%, #F9A825 100%);
  color: #0B1C2D;
  box-shadow: 0 4px 15px rgba(251, 197, 49, 0.3);
}

.course-card.featured .enroll-btn:hover {
  box-shadow: 0 8px 20px rgba(251, 197, 49, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .course-content {
    padding: 0 20px 20px;
  }
  
  .course-footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .courses-section {
    padding: 80px 15px;
  }
  
  .course-boards,
  .course-tags {
    justify-content: center;
  }
  
  .enroll-btn {
    width: 100%;
    padding: 12px 24px;
  }
}

/* Animation for course cards */
@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card {
  animation: cardAppear 0.6s ease forwards;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }

/* Course Badges */
.course-badge.popular {
  background: linear-gradient(135deg, #0A66C2, #0B1C2D);
  color: #fff;
  box-shadow: 0 4px 15px rgba(10,102,194,0.4);
}
.course-badge.foundation {
  background: linear-gradient(135deg, #FBC531, #F9A825);
  color: #0B1C2D;
  box-shadow: 0 4px 15px rgba(251,197,49,0.4);
}
.course-badge.featured-badge {
  background: linear-gradient(135deg, #F9A825, #FFB300);
  color: #0B1C2D;
  box-shadow: 0 4px 15px rgba(251,197,49,0.5);
}

/* Glow hover effect */
.course-card:hover {
  box-shadow: 0 25px 60px rgba(10, 102, 194, 0.25), 0 0 15px rgba(251,197,49,0.2);
}

/* Enroll Button */
.enroll-btn i {
  transition: transform 0.3s ease;
}
.enroll-btn:hover i {
  transform: translateX(5px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #0A66C2, #FBC531);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #0B1C2D;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #0A66C2, #FBC531);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header h2 span {
  color: #0A66C2;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Main Container */
.why-choose-container {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #0A66C2;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0A66C2 0%, #0B1C2D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #FBC531 0%, #F9A825 100%);
}

.feature-content h3 {
  font-size: 1.3rem;
  color: #0B1C2D;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Right Column */
.stats-cta-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Stats Container */
.stats-container {
  background: linear-gradient(135deg, #0B1C2D 0%, #1a365d 100%);
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-shadow: 0 15px 40px rgba(11, 28, 45, 0.2);
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FBC531;
  margin-bottom: 5px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.stat-text {
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* CTA Card */
.cta-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #FBC531;
  text-align: center;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FBC531 0%, #F9A825 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0B1C2D;
  margin: 0 auto 20px;
}

.cta-card h3 {
  font-size: 1.5rem;
  color: #0B1C2D;
  margin-bottom: 15px;
}

.cta-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0A66C2 0%, #0B1C2D 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
}

.btn-secondary {
  border: 2px solid #0A66C2;
  color: #0A66C2;
  background: transparent;
}

.btn-secondary:hover {
  background: #0A66C2;
  color: white;
  transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateX(5px);
  border-color: #0A66C2;
}

.badge i {
  width: 40px;
  height: 40px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A66C2;
  font-size: 18px;
}

.badge span {
  font-weight: 600;
  color: #0B1C2D;
}

/* Process Flow */
.process-flow {
  max-width: 1200px;
  margin: 60px auto 0;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-flow h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #0B1C2D;
  margin-bottom: 40px;
  font-weight: 700;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(to right, #0A66C2, #FBC531);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0A66C2 0%, #0B1C2D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(10, 102, 194, 0.3);
}

.step-content h4 {
  font-size: 1.2rem;
  color: #0B1C2D;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-arrow {
  color: #0A66C2;
  font-size: 1.5rem;
  margin: 0 -10px;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-cta-container {
    order: -1;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .step-arrow {
    display: none;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .step {
    width: 100%;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 15px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .process-flow {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .cta-card {
    padding: 25px 20px;
  }
  
  .badge {
    padding: 12px 15px;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.stat-item, .cta-card, .badge, .step {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.7s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }
.stat-item:nth-child(4) { animation-delay: 1s; }
.cta-card { animation-delay: 1.1s; }
.badge:nth-child(1) { animation-delay: 1.2s; }
.badge:nth-child(2) { animation-delay: 1.3s; }
.badge:nth-child(3) { animation-delay: 1.4s; }
.step:nth-child(1) { animation-delay: 1.5s; }
.step:nth-child(2) { animation-delay: 1.6s; }
.step:nth-child(3) { animation-delay: 1.7s; }
.step:nth-child(4) { animation-delay: 1.8s; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-yuva {
  padding: 100px 20px;
  background: linear-gradient(
    to bottom,
    #ffffff,
    rgba(10, 102, 194, 0.05)
  );
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title span {
  display: inline-block;
  background: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.testimonials-title h2 {
  font-size: 2.5rem;
  color: #0B1C2D;
}

.testimonials-title h2 span {
  color: #0A66C2;
}

/* Slider */
.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: slide 28s linear infinite;
}

/* Card */
.testimonial-card {
  min-width: 340px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: #FBC531;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* User */
.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0A66C2;
}

.user-info h4 {
  font-size: 1rem;
  color: #0B1C2D;
}

.user-info span {
  font-size: 0.85rem;
  color: #777;
}

/* Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.testimonial-track:hover {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    scroll-snap-align: start;
    min-width: 280px;
  }
}

/* ===== CONTACT US SECTION ===== */
.contact-yuva {
  padding: 100px 20px;
  background: linear-gradient(
    to bottom,
    rgba(10, 102, 194, 0.06),
    #ffffff
  );
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Card */
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-tag {
  display: inline-block;
  background: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.contact-card h2 {
  font-size: 2.4rem;
  color: #0B1C2D;
  margin-bottom: 10px;
}

.contact-card h2 span {
  color: #0A66C2;
}

.contact-card p {
  color: #555;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Form */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  margin-bottom: 16px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0A66C2;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
}

.form-group {
  display: flex;
  gap: 14px;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(
    to right,
    #0A66C2,
    #FBC531
  );
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.35);
}

/* Map */
.map-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .form-group {
    flex-direction: column;
  }

  .contact-card h2 {
    font-size: 2rem;
  }
}

/* ===== FOOTER ===== */
.footer-yuva {
  background: linear-gradient(
    to right,
    #0B1C2D,
    #0A2A4A
  );
  color: #ffffff;
  padding-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand */
.footer-logo-box {
  height: 60px;              /* fixed height */
  display: flex;
  align-items: center;
}

.footer-logo {
  max-height: 90px;          /* logo grows only inside this */
  width: auto;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Headings */
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: #FBC531;
  border-radius: 4px;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FBC531;
  padding-left: 5px;
}

/* Social */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #FBC531;
  color: #0B1C2D;
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}
