/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f7fcfd;
  margin: 0;
  overflow-x: hidden;
}


/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #f5feff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #263238;
}

.logo span {
  color: #ff5722;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #263238;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff5722;
}

/* ── NAVBAR "Call Us Now" button — specific override ── */
.navbar .btn-enroll {
  background: #b2f0f5;
  color: #263238;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.navbar .btn-enroll:hover {
  background: #7ae3eb;
}

/* ── HAMBURGER — hidden on desktop by default ── */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  order: 2; /* sits between logo and nav on mobile */
}

/* ── MOBILE MENU ── */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* show only on mobile */
  }

  .nav-links {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    background: #e3f9fb;
    padding: 20px 0;
    gap: 15px;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Keep Call Us button styled nicely in mobile menu too */
  .navbar .btn-enroll {
    display: inline-block;
    margin: 0 auto;
  }
}


/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  background: #e6f9fb;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 100px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 500px;
}

.tagline {
  color: #37474f;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.desc {
  font-size: 16px;
  color: #546e7a;
  margin-bottom: 30px;
}

/* Hero buttons row */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Hero "Check Clients' Rating" button — dark style */
.btn-enroll {
  background: #263238;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn-enroll:hover {
  background: #37474f;
}

.rating {
  font-size: 14px;
  color: #546e7a;
}

/* Contact row */
.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-top: 10px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.phone-icon {
  background: #ff7043;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Hero Images */
.hero-images {
  position: relative;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.hero-images img {
  border-radius: 20px;
  width: 220px;
  object-fit: cover;
}

.img1 { z-index: 2; }

.img2 {
  position: relative;
  top: 40px;
}

/* Hero responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    border-radius: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-images {
    justify-content: center;
  }

  .img2 { top: 0; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .desc    { font-size: 14px; }

  .btn-enroll {
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-images img { width: 150px; }

  .contact {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}


/* ── ABOUT SECTION ───────────────────────────────────────── */
.about {
  background: #f5fcfd;
  padding: 80px 8%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
}

.about-content {
  max-width: 550px;
}

.section-label {
  font-size: 14px;
  font-weight: bold;
  color: #37474f;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  color: #263238;
}

.btn-about {
  display: inline-block;
  background: #263238;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 10px;
}

.btn-about:hover { background: #37474f; }

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content  { max-width: 100%; }
  .about-image img { max-width: 100%; }
}

@media (max-width: 600px) {
  .about-content h2 { font-size: 28px; }
  .desc             { font-size: 14px; }
  .btn-about        { padding: 10px 20px; font-size: 14px; }
}


/* ── TESTIMONIAL (first / hero style) ───────────────────── */
.testimonial {
  padding: 60px 20px;
  background-color: #f3fbfd;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

.testimonial-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
  min-width: 280px;
}

.quote-mark {
  font-size: 40px;
  color: #f97316;
  display: block;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #2c3e50;
}

.author {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.designation {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-content { padding-top: 20px; }
  .testimonial-text    { font-size: 18px; }
}


/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2.2rem;
  color: #1a1e2e;
  margin-bottom: 40px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0f7fa;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  margin: 0 0 10px;
  color: #1a1e2e;
  font-size: 1.2rem;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.card-content a {
  color: #ff6a2a;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.card-content a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .services-section h2 { font-size: 1.8rem; }
  .card-content        { padding: 15px; }
}


/* ── HOW IT WORKS (tuition) SECTION ─────────────────────── */
.tuition-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem 1rem;
}

.main-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #25365b;
  line-height: 1.1;
}

.tuition-card-container {
  display: flex;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 6px #cdebe6;
  border: 1px solid #cdebe6;
  background: #fff;
}

.tuition-card {
  flex: 1;
  padding: 2rem 2rem 1rem 2rem;
  border-left: 1px solid #cdebe6;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}

.tuition-card:first-child { border-left: none; }

.tuition-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.tuition-card-number {
  font-weight: 600;
  font-size: 1.2rem;
  color: #25365b;
}

.tuition-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ee895d;
}

.tuition-card-desc {
  font-size: 1.15rem;
  color: #25365bc0;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.tuition-divider {
  border: none;
  border-top: 1px solid #cdebe6;
  margin: 0 0 1.2rem 0;
}

.tuition-details {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1.13rem;
  color: #25365b;
}

.detail-icon { font-size: 1.15rem; }

.tuition-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.footer-note {
  margin-bottom: 1.7rem;
  color: #25365bb0;
  font-size: 1.19rem;
}

.enroll-btn {
  background: #25365b;
  color: #fff;
  padding: 0.95rem 2.25rem;
  border-radius: 28px;
  border: none;
  font-size: 1.17rem;
  font-weight: 600;
  box-shadow: 0 2px 18px #cdebe64f;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.enroll-btn:hover {
  background: #ee895d;
  color: #fff;
}

@media (max-width: 980px) {
  .main-title { font-size: 2.1rem; }

  .tuition-card-container {
    flex-direction: column;
    box-shadow: 0 0 3px #cdebe6;
  }

  .tuition-card {
    border-left: none;
    border-top: 1px solid #cdebe6;
    padding: 1.5rem 1rem 1rem 1rem;
    min-width: 0;
  }

  .tuition-card:first-child { border-top: none; }

  .tuition-card-title { font-size: 1.5rem; }
}


/* ── WHY US SECTION ──────────────────────────────────────── */
.why-us-section {
  display: flex;
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 3rem;
  background: #f3fbfd;
  justify-content: space-between;
}

.why-us-left {
  flex: 1 1 350px;
  max-width: 500px;
  min-width: 280px;
  margin-bottom: 2.5rem;
}

.why-us-title {
  font-size: 3rem;
  font-weight: 700;
  color: #25365b;
  margin-bottom: 1.8rem;
  line-height: 1.1;
}

.why-us-desc {
  color: #25365bb0;
  font-size: 1.14rem;
  margin-bottom: 1.7rem;
}

.why-us-list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.why-us-list li {
  color: #25365b;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 2.2rem;
}

.why-us-list li::before {
  content: '✔';
  color: #ee895d;
  position: absolute;
  left: 0;
  font-size: 1.25rem;
  top: 0.04rem;
}

.know-more-btn {
  border: 1.5px solid #25365b;
  border-radius: 2.2rem;
  padding: 1rem 2.5rem;
  font-size: 1.18rem;
  font-weight: 600;
  background: #fff;
  color: #25365b;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}

.know-more-btn:hover {
  background: #25365b;
  color: #fff;
}

.why-us-right {
  flex: 1 1 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}

.why-us-card {
  background: #fff;
  border: 1.5px solid #bee5e6;
  border-radius: 17px;
  padding: 1.55rem 1.25rem;
  min-width: 220px;
  box-shadow: 0 0 4px #cdebe6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px #cdebe6;
}

.why-us-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: #ee895d;
}

.why-us-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #25365b;
}

.why-us-card p {
  color: #25365bb0;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .why-us-section {
    flex-direction: column;
    align-items: stretch;
    padding: 2.5rem 1rem;
  }
  .why-us-right {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

@media (max-width: 700px) {
  .why-us-title { font-size: 2rem; }
  .why-us-grid  { grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); }
  .why-us-section { padding: 1.5rem 0.4rem; }
}


/* ── GALLERY SECTION ─────────────────────────────────────── */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.gallery-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #25365b;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 2px 12px #cdebe65c;
  background: #fff;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.25s;
}

.gallery-item img:hover { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .gallery-heading  { font-size: 2rem; }
}

@media (max-width: 600px) {
  .gallery-grid    { grid-template-columns: 1fr; grid-template-rows: none; gap: 1rem; }
  .gallery-section { padding: 1rem 0.25rem; }
  .gallery-heading { font-size: 1.45rem; }
}


/* ── TESTIMONIAL SECTION (second / cards style) ──────────── */
.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 3.5rem 1rem;
}

.testimonial-label {
  text-align: center;
  color: #25365b;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.testimonial-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  justify-content: center;
}

.testimonial-image {
  flex: 0 1 340px;
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px #cdebe65a;
  display: flex;
  align-items: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  flex: 1 1 540px;
  background: #fff;
  border-radius: 18px;
  border: 1.4px solid #bee5e6;
  box-shadow: 0 0 4px #cdebe634;
  padding: 2.3rem 2rem 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote {
  color: #ee895d;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  color: #25365b;
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.testimonial-author {
  color: #25365bb0;
  font-size: 1.19rem;
  font-weight: 700;
  margin-top: auto;
}

@media (max-width: 900px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .testimonial-image   { max-width: 98vw; margin-bottom: 0.5rem; }
  .testimonial-content { padding: 1.7rem 1.1rem 1.5rem 1.1rem; }
  .testimonial-text    { font-size: 1.05rem; }
  .testimonial-quote   { font-size: 2rem; }
}


/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: 40px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form button {
  background: #ee895d;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form button:hover   { background: #d9734a; }
.contact-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-info p { margin-bottom: 15px; }

.contact-info a {
  color: #333;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ee895d;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-icons a:hover { background: #d9734a; }

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info { margin-top: 30px; }
  .social-icons { justify-content: center; }
}


/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #fff;
  padding: 3.5rem 1.5rem 0.2rem 1.5rem;
  border-top: 1.5px solid #f2f2f2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 2rem;
  color: #25365b;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.footer-desc {
  font-size: 1.14rem;
  color: #263147c7;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 1.45rem;
  margin-top: 0.2rem;
}

.footer-icon {
  font-size: 1.4rem;
  color: #25365b;
  transition: color 0.2s;
}

.footer-icon:hover { color: #ee895d; }

.footer-heading {
  font-size: 1.45rem;
  color: #25365b;
  font-weight: 700;
  margin-bottom: 1.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 1.07rem; }

.footer-links a {
  text-decoration: none;
  color: #25365b;        /* fixed: was orange, now dark */
  font-size: 1.09rem;
  font-weight: 500;
  transition: color 0.16s;
}

.footer-links a:hover { color: #ee895d; } /* orange only on hover */

.footer-contact {
  font-style: normal;
  color: #263147c7;
  font-size: 1.12rem;
  line-height: 1.8;
}

.footer-contact a {
  color: #25365b;
  text-decoration: none;
  font-size: 1.11rem;
}

.footer-brand { max-width: 350px; }

.footer-copyright {
  width: 100%;
  text-align: center;
  color: #25365b;
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-section {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 400px;
  }
  .footer-social  { justify-content: center; }
  .footer-links   { display: flex; flex-direction: column; align-items: center; }
  .footer-contact { text-align: center; }
}