* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* TOP BAR */
.topbar {
  background: #df7715;
  color: white;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.topbar a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.topbar a:hover {
  color: #ffd000;
}
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .menu li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .menu.active {
    display: flex;
  }
}

nav {
  height: 70px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0; /* sticks to top */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: white;
  color: #1f3c88;
  z-index: 1000; /* very important */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.navbar a {
  text-decoration: none; /* REMOVE UNDERLINE */
  color: #1e293b; /* DARK TEXT */
  font-weight: 600;
}

.navbar a:hover {
  color: #1e40af; /* BLUE ON HOVER */
}
.navbar a:visited {
  color: #1e293b;
}
.navbar a.active {
  color: #1e40af;
  border-bottom: 2px solid #1e40af;
}
.logo-img {
  height: 45px; /* reduce from 45 → 32 */
  width: auto;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.35),
    rgba(223, 119, 21, 0.25)
  );
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 800px;
  margin-top: 0;
}
.hero h1 {
  color: #ffffff; /* pure white */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-size: 64px;
  font-weight: 800; /* thicker like template */
  line-height: 1.1;
}
.hero h1 span {
  color: #e29231; /* template blue */
}
.hero-sub {
  margin-top: 20px;
  font-size: 20px;
  color: #f1f5f9;
}

.hero-btn {
  font-weight: 600;
  margin-top: 25px;
  background: #ff7a00;
  color: #ffffff !important; /* white text */
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none; /* if using <a> */
  display: inline-block;
}

.hero-btn:hover {
  background: #ea580c;
  color: #ffffff; /* keep white on hover */
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 16px;
  }
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li {
  cursor: pointer;
  font-weight: 500;
  color: #1f3c88;
}

.menu li:hover {
  color: #ff7a00;
}

.enquire-btn {
  background: #1f3c88; /* logo blue */
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.enquire-btn:hover {
  background: #ff7a00; /* orange hover */
}

.features {
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 90%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  z-index: 3;
}
.card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}
.card i {
  font-size: 22px;
  color: #ff7a00; /* orange icons */
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  /* Hide menu + button */
  .menu,
  .enquire-btn {
    display: none;
  }
  .hero {
    min-height: 100vh;
    padding: 60px 5% 40px;
  }

  .hero-center {
    width: 95%;
  }

  /* Reduce hero text size */
  .hero h1 {
    font-size: 32px;
  }

  /* Cards become vertical */
  .features {
    grid-template-columns: 1fr;
    position: static;
    margin-top: 40px;
  }

  .card {
    padding: 18px;
  }
  .topbar {
    flex-direction: column;
    padding: 6px 3%;
    text-align: center;
    gap: 6px;
  }

  .top-left {
    font-size: 13px;
    line-height: 1.4;
  }

  .top-right {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
  }
}
.top-right i {
  font-size: 18px;
  margin-left: 15px;
  cursor: pointer;
}

.top-right i:hover {
  color: #ffd000;
}
/* --------------------------/ */
.different {
  background: #e9eef3;
  padding: 80px 5%;
  text-align: center;
}

.different h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
}

.underline {
  width: 80px;
  height: 4px;
  background: #ff7a00;
  margin: 12px auto 25px;
  border-radius: 10px;
}

.different-sub {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.diff-card {
  background: #f3f4f6;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  transition: 0.3s;
}

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

.icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.menu {
  display: flex;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu.active {
    display: flex;
  }
}

.icon i {
  color: white;
  font-size: 24px;
}

.blue {
  background: #3b82f6;
}
.orange {
  background: #f97316;
}
.green {
  background: #22c55e;
}
.purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.pink {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.teal {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.diff-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f172a;
}

.diff-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .diff-cards {
    grid-template-columns: 1fr;
  }

  .different h2 {
    font-size: 32px;
  }
}
/* MAIN ABOUT LAYOUT */
.about {
  display: grid;
  grid-template-columns: 1fr; /* single column so text centers */
  gap: 50px;
  padding: 80px 5%;
  background: #f3f4f6;
  text-align: center;
}

/* LEFT CONTENT */
.about-left {
  max-width: 750px;
  margin: auto;
}

.about-tag {
  color: #f97316;
  font-weight: 600;
  letter-spacing: 1px;
}

.about h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.about h2 span {
  color: #3b82f6;
}

.about p {
  margin-top: 20px;
  color: #64748b;
  font-size: 18px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* VIEW GALLERY BUTTON */
.gallery-btn {
  margin-top: 25px;
  padding: 12px 24px;
  border: 2px solid #1e40af;
  background: transparent;
  border-radius: 10px;
  color: #1e40af;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none; /* important */
  display: inline-block;
}

/* RIGHT CARDS GRID */
.about-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* all 4 side-by-side */
  gap: 25px;
  align-items: stretch;
}

/* CARD STYLE */
.stat-card {
  background: #e5e7eb;
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stat-card i {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.stat-card p {
  font-size: 15px;
  color: #64748b;
}

/* HOVER FLOAT EFFECT */
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

/* TABLET */
@media (max-width: 1024px) {
  .about-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-right {
    grid-template-columns: 1fr;
  }

  .about h2 {
    font-size: 32px;
  }
}
.courses {
  background: linear-gradient(#f3ecd2, #efe7c6);
  padding: 80px 5%;
  text-align: center;
}

.courses h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.course-sub {
  max-width: 700px;
  margin: 20px auto 50px;
  color: #64748b;
  font-size: 18px;
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background: #f3f4f6;
  border-radius: 20px;
  padding: 35px;
  text-align: left;
  position: relative;
}

/* TOP BORDERS */
.blue-top {
  border-top: 6px solid #2563eb;
}
.green-top {
  border-top: 6px solid #16a34a;
}
.orange-top {
  border-top: 6px solid #f97316;
}

.course-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.course-icon i {
  font-size: 26px;
  color: #0f172a;
}

/* ICON BACKGROUNDS */
.blue-bg {
  background: #dbeafe;
}
.green-bg {
  background: #d1fae5;
}
.orange-bg {
  background: #ffedd5;
}

.course-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #0f172a;
}

.course-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.course-card a {
  display: inline-block;
  margin-top: 18px;
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 768px) {
  .course-cards {
    grid-template-columns: 1fr;
  }
}
.cta {
  background: #efe7c6;
  padding: 60px 5%;
}

.cta-box {
  background: #2f4593;
  border-radius: 25px;
  text-align: center;
  padding: 70px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

/* SMALL DOT PATTERN */
.cta-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  top: 0;
  left: 0;
  opacity: 0.4;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.cta-box p {
  margin-top: 15px;
  font-size: 18px;
  color: #dbeafe;
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: #ff7a00;
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-btn:hover {
  background: #ea580c;
}
@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 28px;
  }
}
.testimonials {
  background: #f3f4f6;
  padding: 80px 5%;
  text-align: center;
}

.testimonials h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
}

.test-sub {
  margin: 20px auto 50px;
  max-width: 700px;
  color: #64748b;
}

.test-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.test-card {
  background: #e5e7eb;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  text-align: left;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.test-card:hover {
  transform: translateY(-10px); /* LIFT UP */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Bigger shadow */
}
.test-card:hover .quote {
  transform: scale(1.05);
}

.quote {
  position: absolute;
  top: -18px;
  left: 25px;
  width: 45px;
  height: 45px;
  background: #ff7a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.stars {
  color: #f97316;
  font-size: 20px;
  margin-top: 10px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .test-cards {
    grid-template-columns: 1fr;
  }
}
.enquiry {
  background: linear-gradient(#e6edf6, #d9e3f0);
  padding: 80px 5%;
  text-align: center;
}

.enquiry h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.enq-sub {
  margin: 20px auto 50px;
  max-width: 650px;
  color: #64748b;
}

.enquiry-box {
  max-width: 900px;
  margin: auto;
  background: #f9fafb;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  text-align: left;
}

.input-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

textarea {
  height: 120px;
  resize: none;
}

.full {
  grid-column: span 2;
}

.submit-btn {
  grid-column: span 2;
  background: #ff7a00;
  color: white;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #ea580c;
}
@media (max-width: 768px) {
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .full,
  .submit-btn {
    grid-column: span 1;
  }
}
.footer {
  background: #0b1a3a;
  color: #cbd5f5;
  padding: 70px 5% 20px;
  position: relative;
}

/* DOT PATTERN */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.25;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  z-index: 2;
}

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  color: #cbd5f5;
  text-decoration: none;
}

.footer-logo img {
  height: 90px; /* desktop size */
  width: auto;
  object-fit: contain;
}

.tagline {
  font-size: 14px;
  color: #94a3b8;
}

.social-icons i {
  background: #1e2f5e;
  padding: 12px;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e2f5e;
  margin-top: 40px;
  padding-top: 15px;
  color: #94a3b8;
}

/* SCROLL BUTTON */
#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ff7a00;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
  }

  .hero-center {
    width: 90%;
  }

  .features {
    position: static !important; /* remove floating */
    width: 100%;
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .card {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    background-position: center top;
    flex-direction: column;
  }

  .hero-center {
    width: 95%;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 16px;
  }
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px; /* space between icons */
}

.social-icons a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
}

.social-icons i {
  background: #1e2f5e;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}
.gallery {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .footer-logo img {
    height: 70px;
  }
}
.enquire-btn {
  background: #ff7a00;
  color: #ffffff !important; /* makes text white */
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.enquire-btn:hover {
  background: #1f3c88;
  color: #ffffff; /* keep white on hover too */
}
@media (max-width: 768px) {
  .enquire-btn {
    display: none;
  }
}
