/* Order */
@layer reset, primereact;

@layer reset {

  *,
  *::after,
  *::before,
  *::placeholder {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
    border-collapse: separate;
    scroll-margin-top: 170px;
  }

  html {
    scroll-behavior: smooth;
  }

  /* ✅ Import local Gilroy font */
  /* @font-face {
    font-family: "Gilroy";
    src: url("fonts/Gilroy-Regular.woff2") format("woff2"),
      url("fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  } */

  @font-face {
    font-family: "Gilroy";
    src: url("fonts/Gilroy-Bold.woff2") format("woff2"),
      url("fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }

  /* ✅ Poppins from Google Fonts */
  body {
    font-family: "Poppins", sans-serif;
  }

  /* ✅ Apply Gilroy to headings */
  h1,
  h2,
  h3 {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    /* bold version */
    color: #222;
    margin-bottom: 10px;
  }

  /* ✅ Paragraphs in Poppins */
  p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
  }

  :root {
    --primary1: #01acf0;
    --primary: rgba(1, 172, 240, 0.1);
    --primary2: #e93629;
    --primaryred: rgba(255, 22, 5, 0.2);
    --secondary1: #0587a5;
    --secondary2: #055e80;
    /* white */
    --white: #ffff;
    /* text */
    --text: #4a4a49;
    /* black */
    --black: #000;
    --black-1: #fafafa;

    /* width  */
    --mx_width: 1600px;

    /* height */
    --m_height: 20px;

    --width: 90%;

    --margin: 70px;
    --margin-2x: calc(var(--margin) * 2);
    --margin-3x: calc(var(--margin) * 3);
  }

  /*custom classes*/
  .margin {
    margin: var(--margin) 0px;
  }

  .full-height {
    height: 100%;
  }

  .max-width {
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1px solid red; */
  }

  .width {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    height: 100%;
  }

  @media (max-width: 650px) {
    .mobile_full_width {
      width: 100% !important;
    }
  }

  @media (max-width: 700px) {
    .width {
      width: 95%;
    }

    .margin {
      margin: 40px 0px;
    }

    .marginTop {
      margin-top: 40px;
    }

    .marginBottom {
      margin-bottom: 40px;
    }
  }

  /* /// css animation:  ; */
}

/* header start */
.container {
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  padding: 10px 0;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.offer-bar {
  background-color: var(--secondary1);
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 15px;
}

.offer-bar marquee {
  font-size: 15px;
  font-weight: 600;
  width: 80%;
}

#countdown {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.blink-text {
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

/* Navbar Base */
.navbar {
  width: 100%;
  background: var(--bg-white, #fff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo img {
  width: 100px;
  height: auto;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark, #333);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: green;
}

/* Toggle Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: var(--text-dark, #333);
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease forwards;
    height:100%
  }

  nav ul {
    flex-direction: column;
    gap: 50px;
  }

  nav.active {
    display: flex;
  }
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 9999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 12px 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* header end */

/* banner start */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("./assets/images/banner.jpg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
}


/* CONTAINER */
.hero-container {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

/* LEFT CONTENT */
.hero-content {
  color:white;
}

.badge {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: white;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.9;
  color: white;
}

/* RIGHT FORM */
.hero-form {
  background: #ffffff;
  border-radius: 18px;

  width: 360px;         
  padding: 32px 28px;    
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  margin-left: auto; 
}

.hero-form h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  color: black;
    line-height: 1.35;
  text-align: center;
}

.hero-form input {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: none;
  background: #f1f1f1;
  padding: 0 14px;
  margin-bottom: 14px;
  font-size: 14px;
}

.hero-form button {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.hero-form button:hover {
  background: #256528;
}

/* MOBILE VIEW */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-form {
    padding: 26px;
  }
}
/* ======================
   MOBILE HERO FIX
====================== */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  /* SOFTER OVERLAY ON MOBILE */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.25) 100%
    );
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 15px;
  }


  .hero-form {
    width: 100%;
    margin-left: 0;
    padding: 28px 24px;
    border-radius: 16px;
  }

  .hero-form h3 {
    font-size: 20px;
  }
}


/* banner end */

/* card start */
.achievements {
  background: #fbfdfb;
  padding: 80px 20px 100px;
}

/* TITLE */
.achievements-title {
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  color: #0b3d2e;
  margin-bottom: 60px;
}

/* GRID */
.achievements-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.achievement-card {
  border-radius: 20px;
  padding: 34px 26px 38px;
  text-align: center;
  
}
.achievement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}
.achievement-card > * {
  position: relative;
  z-index: 2;
}


/* ICON (100x100 PLACEHOLDER) */
.icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* HEADING */
.achievement-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0b3d2e;
  margin-bottom: 14px;
}

/* TEXT */
.achievement-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #344c43;
}


.yellow {
  background: linear-gradient(
    180deg,
    #fffaf0 0%,
    #fff2d9 100%
  );
}

.blue {
  background: linear-gradient(
    180deg,
    #f4fbff 0%,
    #eaf6fb 100%
  );
}

.purple {
  background: linear-gradient(
    180deg,
    #fbf5ff 0%,
    #f1e7ff 100%
  );
}

.pink {
  background: linear-gradient(
    180deg,
    #fff5f5 0%,
    #ffeaea 100%
  );
}

/* TABLET */
@media (max-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 520px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievements-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {

  .achievements {
    padding: 60px 16px 80px;
  }

  .achievements-grid {
    gap: 22px;
  }

  .achievement-card {
    padding: 28px 22px 32px;
    border-radius: 18px;
  }

  .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
  }

  .achievement-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .achievement-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.footer {
  background: #dcecdc;
}

/* SAME LEFT & RIGHT SPACING */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.footer-left img {
  height: 42px;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.follow-text {
  font-size: 14px;
  color: #1f4f2f;
}

.icons {
  display: flex;
  gap: 16px;
}

.icons svg {
  width: 18px;
  height: 18px;
  fill: #1f4f2f;
  cursor: pointer;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(0,0,0,0.2);
  margin: 0 40px;
}

/* BOTTOM TEXT */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #000;
  padding: 10px 0 12px;
}
/* footer end */

@media (max-width: 768px) {
 
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
    gap: 16px;
  }

  /* LOGO CENTER */
  .footer-left img {
    height: 38px;
  }

  /* RIGHT SECTION CENTERED */
  .footer-right {
    align-items: center;
    gap: 10px;
  }

  .follow-text {
    font-size: 13px;
  }

  .icons {
    justify-content: center;
    gap: 18px;
  }

  .icons svg {
    width: 20px;
    height: 20px;
  }

  /* DIVIDER FULL WIDTH */
  .divider {
    margin: 16px 0;
  }

  /* BOTTOM TEXT */
  .footer-bottom {
    font-size: 12px;
    padding: 10px 12px 14px;
  }
}
.footer-left {
  display: flex;
  flex-direction: column;  
  align-items: flex-start; 
}
.footer-url {
  margin-top: 4px;
  font-size: 13px;
  color: #1f4f2f;
  font-weight: 500;
  pointer-events: none; /* NOT clickable */
  user-select: none;
}
@media (max-width: 768px) {
  .footer-left {
    align-items: center;
  }
}


/* thank you :start */
.thanku-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa, #ffeaea);
}

.thanku-container {
  text-align: center;
  background: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 58%;
  animation: fadeIn 0.8s ease-in-out;
}

/* Heading style */
.thanku-container h1 {
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 30px;
}

.thanku-container h1 span {
  color: var(--primary1);
}

/* Link styled as button */
.thanku-container a {
  /* display: inline-block; */
  background: var(--primary2);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.thanku-container a:hover {
  background: #b00000;
  transform: translateY(-3px);
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  .thanku-container {
    width: 85%;
  }

  .thanku-container h1 {
    font-size: 25px;
  }
}

/* thank you :end */

/* sidebar */
#mysidenavassam {
  position: fixed;
  top: 95%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.call-btn {
  bottom: 90px;

  background-color: #ff9500;

}

.whatsapp-btn img {
  width: 60%;
  height: 60%;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.call-btn {
  position: fixed;
  bottom: 90px;

  right: 20px;
  width: 55px;

  height: 55px;

  background-color: #F43F5E;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: #F43F5E;

  z-index: 999;
  transition: transform 0.3s ease;

}

.call-btn img {
  width: 50%;

  height: 50%;
  filter: brightness(0) invert(1);
}

.call-btn:hover {
  transform: scale(1.08);
}


/* Optional: subtle bounce animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-52%) scale(1.05);
  }
}

#mysidenavassam a {
  animation: bounce 2.5s infinite ease-in-out;
}

/* Mobile optimization */
@media (max-width: 600px) {
  #mysidenavassam {
    right: 15px;
  }

  #mysidenavassam a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}




.courses {
  background: #f6f7f8;
  padding: 80px 20px 90px;
}

.courses-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}


.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden; 
  overflow-y: visible;
  padding-top: 32px;
}


.slider {
  display: flex;
  justify-content: flex-start;   
  gap: 24px;                 
  width: max-content;
  transition: transform 0.4s ease;
}

/* ===== COURSE CARD ===== */
.course-card {
  position: relative;
  width: 380px;                  
  background: #e9edef;
  border-radius: 18px;
  padding: 70px 26px 32px;
  overflow: visible;
  flex-shrink: 0;             
}

/* ===== LOGO BOX ===== */
.logo-box {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 56px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.logo-box img {
  max-width: 160px;
  height: 100%;
}

/* ===== META ===== */
.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
}

/* ===== DESCRIPTION ===== */
.course-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
}

/* ===== BUTTON ===== */
.enroll-btn {
background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== ARROWS WRAPPER ===== */
.swiper-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
}

/* ===== ARROW BUTTONS ===== */
.custom-prev,
.custom-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #000;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background: #000;
  color: #fff;
}


@media (max-width: 1024px) {
  .courses-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .slider-wrapper {
    max-width: 100%;
    padding: 24px 10px 0;
  }

  .course-card {
    width: 320px;
    padding: 60px 22px 28px;
  }

  .logo-box {
    width: 200px;
    height: 52px;
  }

  .logo-box img {
    max-width: 140px;
  }
}


@media (max-width: 768px) {
  .slider-wrapper {
    max-width: 280px;      
    overflow-x: hidden;
  }

  .slider {
    gap: 24px;           
  }

  .course-card {
    width: 280px;
    min-width: 280px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
    .course-card {
        width: 246px;
        min-width: 235px;
    }
}



/* .callback-btn {
  display: inline-block;
  background: #f53b57;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
} */




/* ---------------- Navbar Base ---------------- */
.navbar {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

/* Desktop Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color:green;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  z-index: 1101;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 25px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1102;
  }

  .nav-links li a {
    font-size: 18px;
    color: #333;
  }

  .nav-links.active {
    right: 0;
  }


}



.thankyou-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  height: 83vh;
}

.thankyou-container {
  background: var(--bg-white);
  text-align: center;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 480px;
  width: 90%;
  animation: fadeIn 0.8s ease-in-out;
}

.thankyou-logo {
  width: 100px;
  margin-bottom: 20px;
}

/* Text */
.thankyou-container h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.thankyou-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 5px;
}

.btn-yellow {
  display: inline-block;
  background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 0.75rem;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
   background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  transform: translateY(-2px);
}
.exam-process {
  padding: 90px 40px;
  background: #f9fbf8;
}

.process-title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 70px;
  color: #1f3d2b;
}

.exam-steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

/* STEP CARD */
.exam-step {
  width: 200px;
  text-align: center;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* STEP LABEL */
.step-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #1f3d2b;
  display: block;
  margin-bottom: 8px;
}

/* TITLE */
.exam-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b3d2e;
}

/* DESCRIPTION */
.exam-step p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
}

/* ARROW */
.arrow {
  font-size: 28px;
  color: #7aa78a;
  margin-top: 40px;
}


.bg-yellow { background: #fdecc8; }
.bg-blue   { background: #d8ecff; }
.bg-purple { background: #eadcff; }
.bg-peach  { background: #ffe4d6; }
.bg-green  { background: #dff3e6; }
.bg-teal   { background: #d8f0ec; }

@media (max-width: 768px) {

  .exam-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .exam-step {
    width: 100%;
    max-width: 320px;
  }


  .arrow {
    transform: rotate(90deg);
    margin: 0;
    font-size: 26px;
    line-height: 1;
  }
}


.testimonials {
  background: #f4f6f8;
  padding: 80px 20px;
}

.testimonials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
}

/* VIEWPORT */
.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  min-width: 380px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  position: relative;
}

/* QUOTE */
.quote-icon {
  font-size: 64px;
  color: #9fc2a6;
  line-height: 1;
  margin-bottom: 16px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.user h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.user span {
  font-size: 12px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }

  .testimonial-wrapper {
    max-width: 280px;
  }
}
.enroll-btn {
  text-decoration: none;
}

.cta-section {

  max-width: 1400px;
  height: 550px;
  margin: 80px auto;

  background-image: url("./assets/images/student.png");
  background-repeat: no-repeat;
  background-size: cover;


  background-position: right center;

  border-radius: 18px;


  display: flex;
  align-items: center;
  padding-left: 80px;
}

.cta-content {
  margin-top: 190px;
}

.cta-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 18px;
  color: white;
}

.cta-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
  color: white;
}


.cta-btn {
  background: #ffffff;
  color: #1a9c8b;
  border: none;
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}


@media (max-width: 768px) {
  .cta-section {
    height: auto;
    padding: 40px 24px;
    margin: 16px 16px;  
    background-position: left center;
background-image:hidden;
  }

  .cta-content h2 {
    font-size: 26px;
  }
}

.experts-section {
  /* background: #f9fbf6; */
  padding: 80px 20px 90px;
}


.experts-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}

.experts-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.expert-card {
  text-align: center;
}


.expert-img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expert-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b3d2e;
  margin-bottom: 6px;
}

.expert-card p {
  font-size: 14px;
  color: #000;
}


@media (max-width: 900px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .experts-title {
    font-size: 26px;
  }
}


/* SECTION */
.batches-section {
  background: #f9fbf6;
  padding: 80px 20px 90px;
}

/* TITLE */
.batches-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}

/* GRID */
.batches-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


.batches-section {
  text-align: center;
  padding: 80px 0 90px;
  background-color: #f9fbf6;
}


.batches-section h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}

/* GRID */
.batches-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;

  padding: 0 16px;
}
.batches-section {
  background: #f9fbf6;
}

.batch-card {
  background: #faecc7; 
  border-radius: 14px;
  padding: 28px 30px;
  text-align: left;
  width: 100%;
  max-width: 340px;
}


.batch-card.alternate {
  background: #e7cfe4;
}


.batch-card:nth-child(3) {
  background: #ead3ce;
}

/* TYPE */
.batch-type {
  font-size: 14px;
  color: #000;
  margin-bottom: 14px;
}


.batch-title {
  font-size: 26px;
  font-weight: 600;
  color: #0b3d2e;
  margin-bottom: 4px;
}


.batch-day {
  font-size: 14px;
  font-weight: 600;
  color: #0b3d2e;
  margin-bottom: 20px;
}


.batch-info {
  margin-bottom: 22px;
}


.batch-item {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  line-height: 1.4;
  color: #000;

  margin-bottom: 12px;
}


.batch-item i {
  font-size: 15px;
  color: #000;
  flex-shrink: 0;
}

/* BUTTON */
.callback-btn {
  display: inline-block;
background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}


@media (max-width: 900px) {
  .batches-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {
  .batches-container {
    grid-template-columns: 1fr;
  }

  .batches-section h2 {
    font-size: 26px;
  }
}


/* SECTION */
.contact-section {
  padding: 6px 20px;
  background: #f6f8f6;
  align-items: center;
}

/* WRAPPER */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
  padding-top: 40px;
}

/* LEFT CARD */
.contact-card {
  position: absolute;
  left: -2px;          
  top: 150px;
  width: 315px;
  background: #0f7e9c;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  z-index: 2;
}

/* LEFT TITLE */
.contact-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}
.info-item svg path {
  stroke: inherit;
}
/* INFO ROWS */
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 10px;
}

/* WHITE SVG ICONS */
.info-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

/* RIGHT FORM */
.contact-form {
  width: 720px;             
  margin-left: 269px;      
  background: #ffffff;
  padding: 55px 80px;       
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FORM HEADING */
.contact-form h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #000;
}

/* SUBTEXT */
.contact-form p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #000;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #eeeeee;
  border: none;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  outline: none;
}


.contact-form textarea {
  height: 90px;
  resize: none;
}

/* BUTTON */
.contact-form button {
background: linear-gradient(
  90deg,
  rgba(11, 59, 46, 1),
  rgba(76, 175, 80, 1)
);
  color: #ffffff;
  border: none;
  padding: 12px 36px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 768px) {

  .contact-wrapper {
    padding-top: 0;
  }

  /* LEFT CARD */
  .contact-card {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 24px;
    border-radius: 14px;
  }

  /* RIGHT FORM */
  .contact-form {
    width: 100%;
    margin-left: 0;
    padding: 36px 24px;
    border-radius: 14px;
  }

  /* TEXT ADJUSTMENTS */
  .contact-form h2 {
    font-size: 24px;
  }

  .contact-form p {
    font-size: 14px;
  }

  /* BUTTON CENTER */
  .contact-form button {
    padding: 12px 28px;
  }
}
/* SECTION */
.experts-section {
  background: #f9fbf7;
  padding: 90px 20px 100px;
  text-align: center;
}

/* TITLE */
.experts-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}

/* GRID */
.experts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.expert-card {
  text-align: center;
}

/* IMAGE */
.expert-img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAME */
.expert-name {
  font-size: 20px;
  font-weight: 600;
  color: #0b3d2e;
  margin-bottom: 6px;
}

/* ROLE */
.expert-role {
  font-size: 15px;
  color: #000;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 992px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .expert-img {
    height: 260px;
  }

  .experts-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
