* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top-marquee {
  background: #2563eb;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-content {
  display: inline-flex;
  gap: 60px;
  animation: marquee 15s linear infinite;
}

.marquee-content span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* animation */
@keyframes marquee {
  from {
    transform: translateX(80%);
  }
  to {
    transform: translateX(-80%);
  }
}


/* ===== Base Navbar (same as before) ===== */
.edu-navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;

}

.edu-container {
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.edu-logo img {
  height: 60px;
}

/* ===== Menu Desktop ===== */
.edu-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

.edu-menu li {
  position: relative;
}

.edu-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Underline */
.edu-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: width 0.3s ease;
}

.edu-menu a:hover::after,
.edu-menu a.active::after {
  width: 100%;
}

.edu-menu a:hover {
  color: #0d6efd;
}

/* ===== Dropdown Desktop ===== */
.edu-dropdown {
   position: absolute;
  background: #fff;
  min-width: 220px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
}
.level-1 {
  top: 120%;
  left: 0;
  transform: translateY(10px);
}

.has-dropdown:hover > .level-1 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu-parent {
  position: relative;
}

.level-2 {
  top: 0;
  left: 100%;
  transform: translateX(10px);
}

.submenu-parent:hover > .level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}




/* ===== Hamburger ===== */
.edu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.edu-toggle span {
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: 0.3s;
}


/* ===== HERO SECTION ===== */
.edu-hero {
  background: linear-gradient(120deg, #f4f7ff, #ffffff);
  padding: 20px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* LEFT TEXT */
.hero-text .hero-badge {
  display: inline-block;
  background: #e9efff;
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #0d6efd;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  max-width: 500px;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #0d6efd;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.btn-outline {
  border: 1.5px solid #0d6efd;
  color: #0d6efd;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}


/* STATS */
.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats h3 {
  font-size: 26px;
  color: #111;
}

.hero-stats p {
  font-size: 14px;
  color: #666;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  max-width: 620px;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== ABOUT US SECTION ===== */
.edu-about {
  padding: 40px 20px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}


/* IMAGE */
.about-image {
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* TEXT */
.about-text {
  padding: 0px 20px;
}

.about-text span {
  display: inline-block;
  color: #0d6efd;
  background: #e9efff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 26px;
  color: #111;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 11px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-points {
  list-style: disc inside;
  margin-bottom: 25px;
}

.about-points li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

/* BUTTON */
.about-text .btn-primary {
  background: #0d6efd;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}


/* ===== POPULAR COURSES ===== */
.edu-popular {
  padding: 30px 20px;
  background: #f6f9ff;
}

.popular-container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.popular-card {
  background: #fff;

  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.popular-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Image Area */
.card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}


.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.card-img:hover img {
  transform: scale(1.02);
}

/* Overlay */
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.55));
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0d6efd;
  color: #fff;
  padding: 6px 14px;
  z-index: 2;
}

/* Content */
.card-content {
  padding: 25px;
  text-align: left;
}

.card-content h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.course-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0d6efd;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.course-btn:hover {
  background: #084298;
  color: #fff;
}

/* ===== INFO SECTION ===== */
.edu-info-section {
  padding: 40px 20px;
  background: #f4f7ff;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left Image */
.info-image {
  height: 400px;

}

.info-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Right Content */
.info-content .small-title {
  display: inline-block;
  color: #0d6efd;
  background: #e9efff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.info-content h2 {
  font-size: 34px;
  margin-bottom: 18px;
  color: #111;
}

.info-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.info-list {
  list-style: disc inside;
  margin-bottom: 25px;
}

.info-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

/* Button */
.info-content .btn-primary {
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}







.placed-hover {
  padding: 40px 20px;
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 0px;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 700;
}

.section-heading p {
  color: #666;
}

/* Grid */
.hover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card */
.hover-card {
  position: relative;
  height: 400px;
  /* 🔥 height zyada */
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Image */
.hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 110, 253, 0.9),
      rgba(13, 110, 253, 0.2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hover-overlay h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.hover-overlay span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.hover-overlay p {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.95;
}

/* Hover Effects */
.hover-card:hover img {
  transform: scale(1.08);
}

.hover-card:hover .hover-overlay {
  opacity: 1;
}

.testimonials-section {
  padding: 30px 20px;
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 700;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding-top: 60px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(13, 110, 253, 0.12);
  margin: 40px 1px;
}

/* Image */
.testimonial-img {
  position: absolute;
  top: -45px;
  left: 30%;
  transform: translateX(-50%);
}

.testimonial-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  background: #fff;
}

/* Content */
.testimonial-content {
  padding: 30px;
  text-align: center;
}

.testimonial-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer .name {
  font-weight: 600;
  color: #111;
}

.stars i {
  color: #fbc02d;
  font-size: 16px;
  margin-left: 2px;
}



.asb-footer {
  background: #0d6efd;
  /* light background */
  color: #111;
  /* dark text */
  padding: 40px 0 0;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 20px;
  padding: 0 20px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #dce2ec;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #0a2540;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #0d6efd;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}



.newsletter-box {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.newsletter-box button {
  padding: 10px 16px;
  border: none;
  background: #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact i {
  color: #fff;
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}




/* pages section */

.about-hero {
  background: url('../images/hero-banner.webp') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* overlay for text visibility */
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: 78px;
  font-weight: 800;
}

.hero-content h4 {
  font-size: 20px;
}


/* ===== ABOUT SECTION ===== */
.about-expand {
  padding: 40px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-flex {
  display: flex;
  gap: 40px;
}

/* ===== LEFT TEXT ===== */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0a2540;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* ===== HIDDEN CONTENT ===== */
.about-more {
  display: none;
  margin-top: 10px;
}

.about-more p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===== INLINE SHOW MORE / LESS ===== */
.toggle-text {
  color: #0d6efd;
  /* Blue color */
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
  white-space: nowrap;
}

.toggle-text:hover {
  text-decoration: underline;
}

/* ===== RIGHT IMAGE ===== */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}


.why-asb {
  background: #f8fbff;
  padding: 30px 0;
}

.why-heading {
  text-align: center;
  margin-bottom: 60px;
}

.why-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b3c8c;
}

.why-heading p {
  color: #555;
  margin-top: 10px;
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 15px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 30px;
  color: #0b3c8c;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.why-footer-text {
  margin-top: 30px;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.why-footer-text p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}

.our-mission {
  background: #f7faff;
  /* very light blue / off-white */
  padding: 20px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.mission-label {
  color: #0d6efd;
  /* blue accent */
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.mission-heading {
  font-size: 28px;
  color: #0b3c8c;
  /* dark blue */
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.mission-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto 10px;
}



.csr-purpose {
  background: #eef3fc;
  /* very light blue */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.section-heading h2 {
  font-size: 32px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px;
}

.focus-item {
  text-align: center;
  padding: 10px 20px;
  background: #fff;
}

.focus-item i {
  font-size: 28px;
  color: #0b3c8c;
  display: inline-block;
}

.focus-item h4 {
  font-size: 20px;
  color: #0b3c8c;
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.paid-courses {
  background: #f7faff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 50px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}

.course-card:hover .course-img img {
  transform: scale(1.05);
  /* subtle zoom on hover */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 10px;
  background: rgba(11, 60, 140, 0.7);
  /* semi-transparent blue */
  color: #fff;
  text-align: center;
}

.overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Accordion Styles */
.accordion-item {
  margin: 10px 15px;
}

.accordion-btn {
  width: 100%;
  background: #e6f0ff;
  color: #0b3c8c;
  border: none;
  text-align: left;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-btn:hover {
  background: #d0e0ff;
}

.accordion-content {
  display: none;
  padding: 10px 15px;
  font-size: 15px;
  color: #555;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 8px;
}

.icon {
  font-weight: bold;
  font-size: 18px;
}

/* CTA Button */
.enroll-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  border-radius: 6px;
  margin: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #0b5ed7, #0949a8);
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}


.placement-program {
  background: #f7faff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.placement-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.placement-image{
  height: 300px;
  width: 200px;
}

.placement-image img {
  width: 200px;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.enroll-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  border-radius: 6px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #0b5ed7, #0949a8);
  transform: translateY(-2px);
}



.placement-features {
  background: #f7faff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.placement-features h3 {
  text-align: center;
  font-size: 28px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 900px;
}

.program-features {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
}

.program-features>li>strong {
  font-size: 25px;
}

.program-features>li {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.program-features li ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
  font-weight: 400;
  color: #555;
}

.program-features li ul li {
  margin-bottom: 6px;
}





.online-tuition {
  background: #f9faff;
  padding: 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.online-tuition .section-title {
  text-align: center;
  font-size: 28px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 50px;
}

.tuition-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tuition-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.tuition-logo {
  font-size: 50px;
  color: #0b3c8c;
  margin-bottom: 15px;
}

.tuition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tuition-card h3 {
  font-size: 20px;
  color: #0b3c8c;
  margin-bottom: 15px;
  font-weight: 600;
}

.tuition-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}


.project-section {
  background: #f9f9ff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.project-section .section-title {
  text-align: center;
  font-size: 38px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-section h3 {
  font-size: 22px;
  color: #0b3c8c;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.project-summary .summary-section {
  margin-bottom: 30px;
}

.project-summary h4 {
  font-size: 18px;
  color: #0b3c8c;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-summary ul {
  list-style: disc;
  padding-left: 25px;
  color: #555;
}

.project-summary ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}




.gallery-section {
  padding: 40px 0px;
  background: #f9f9ff;
  font-family: 'Poppins', sans-serif;
}

.gallery-section .section-title {
  text-align: center;
  font-size: 38px;
  color: #0b3c8c;
  font-weight: 700;
  margin-bottom: 30px;
  
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.gallery-item{
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.6); /* subtle blue overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  z-index: 2; /* overlap effect */
}
.gallery-item:hover::after {
  opacity: 1;
  z-index: 1;
}



.events-section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

.event-row {
  display: flex;
  align-items: center;
}

.event-image,
.event-content {
  width: 50%;
}

.event-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.event-content {
  padding: 0px 40px;
}

.event-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #555;
  font-weight: 800;
}

.event-content h5 {
  color: #555;
  font-size: 20px;
}
.event-content p{
  font-size: 16px;
  font-weight: 650;
  color: #555;
}
.bg-light {
  background: #fff;
}
.bg-blue {
  background: #dce2ec; /* light blue */
}




.blog-section {
  background: #f8f9fc;
  padding: 30px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.blog-header p {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.blog-card {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image */
.blog-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

/* Tag */
.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
}

/* Content */
.blog-content {
  padding: 15px 25px;
}

.blog-date {
  font-size: 13px;
  color: #888;
}

.blog-content h4 {
  margin: 12px 0;
  font-size: 20px;
  color: #111;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-content a {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  position: relative;
}

.blog-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.blog-content a:hover::after {
  width: 100%;
}




.contact-section {
  background: #f8f9fc;
  padding: 40px 0;
}

.contact-wrapper {
  display: flex;
  gap: 30px;
}

/* LEFT */
.contact-info {
  width: 45%;
  padding: 30px 0px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #2563eb;
  margin-top: 4px;
}

.info-item strong {
  display: block;
  color: #111;
}

.info-item span {
  color: #555;
  font-size: 15px;
}

/* RIGHT FORM */
.contact-form {
  width: 55%;
  background: #fff;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.submit-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1e4fd6;
}



.map-section {
  margin-top: 0px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
}




/* ===== Robotics Curriculum Section ===== */
.robotics-curriculum {
  padding:40px 0;
  background: #ffffff;
}

.robotics-curriculum .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.robotics-curriculum .section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Grid Layout */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card Design */
.curriculum-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top Accent Line */
.curriculum-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0d6efd, #00b4d8);
}

/* Hover Effect */
.curriculum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Card Headings */
.curriculum-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 12px;
}

/* Card Paragraph */
.curriculum-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* List Styling */
.curriculum-card ul {
  padding-left: 18px;
  margin: 0;
}

.curriculum-card ul li {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 8px;
  position: relative;
}

/* Bullet Customization */
.curriculum-card ul li::marker {
  color: #0d6efd;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .robotics-curriculum {
    padding: 30px 0;
  }

  .robotics-curriculum .section-title {
    font-size: 28px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-card {
    padding: 26px 22px;
  }
}


/* ===== Robotics Process Section ===== */
.robotics-process {
  padding: 40px 0;
  background: #f8fafc;
}

.robotics-process .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.robotics-process .section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 26px 30px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

/* Hover */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -18px;
  left: 26px;
  background: linear-gradient(135deg, #0d6efd, #00b4d8);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
}

/* Card Title */
.process-card h3 {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 12px;
}

/* Card Text */
.process-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .robotics-process {
    padding: 30px 0;
  }

  .robotics-process .section-title {
    font-size: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 36px 22px 28px;
  }
}



.our-courses {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Desktop Grid */
.courses-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.course-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.course-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.course-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.price {
  font-weight: 600;
  color: #0d6efd;
  margin: 12px 0;
}

.enquire-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.enquire-btn:hover {
  background: #0b5ed7;
}

/* 🔥 Mobile Horizontal Scroll */
@media (max-width: 1100px) {
  .courses-scroll {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .course-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .courses-scroll::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 992px) {
  .courses-scroll {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .course-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .courses-scroll::-webkit-scrollbar {
    display: none;
  }
}

/* Small Screens */
@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
}
