  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Open Sans', sans-serif;
  color: #111827;
  line-height: 1.6;
background: #F9FAFB;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}



     h1, h2, h3, .logo {
      font-family: 'Poppins', sans-serif;
    }

    /* NAVBAR */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: white;
      padding: 0px 30px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      color: #111827;
      text-decoration: none;

    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #111827;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #4CAF50;
    }

    /* Main content sections */
    section {
       padding: 60px 30px; /* Match navbar's horizontal padding */
  /* max-width: 900px; */

    }

    footer {
      text-align: center;
      padding: 20px;
      background-color: #eee;
      color: #666;
    }

    @media (max-width: 600px) {
      .nav-links {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
      }
    }


    /* Batches Section */

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

.batch-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.batch-card img {
  width: 100%;
  object-fit: cover;
}

.batch-card h3 {
  font-size: 18px;
  margin: 15px;
}

.batch-card p {
  font-size: 14px;
  margin: 0 15px 15px;
  flex-grow: 1;
  color: #555;
}


.batch-card .btn {
  display: inline-block;
  margin: 0 15px 15px;
  padding: 10px 20px;
  background: rgba(255, 152, 0, 0.8); /* orange background */
  color: white;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
  transition: all 0.4s ease;
  animation: glassPulse 3s infinite ease-in-out;
}

.batch-card .btn:hover {
  background: rgba(33, 150, 243, 0.9); /* blue background */
  color: white;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6), 0 0 30px rgba(33, 150, 243, 0.4);
  transform: scale(1.05);
}

/* Glowing animation */
@keyframes glassPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.7);
  }
}


.info-contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Table styles */
.table-container {
  flex: 0 0 65%;
  overflow-x: auto;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.table-container th,
.table-container td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.table-container thead {
  background-color: #ff9800; /* orange header */
  color: white;
  font-weight: 600;
}

.table-container tbody tr:hover {
  background-color: #fff3e0; /* light orange hover */
}

/* Form styles */
.form-container {
  flex: 0 0 30%;
  background: white;
  /* padding: 25px 20px; */
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.form-container h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111827;
}

.form-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
}

.form-container button.btn {
  background: rgba(255, 152, 0, 0.9);
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
  width: 100%;
  font-size: 16px;
}

.form-container button.btn:hover {
  background: #2196f3; /* blue hover */
}

.table-container .btn {
  display: inline-block;
  padding: 8px 18px;
  background: #FBBF24; /* blue background */
  color: white;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(33, 150, 243, 0.6);
  transition: all 0.3s ease;
  animation: pulseGlowBlue 3s infinite ease-in-out;
  cursor: pointer;
}

.table-container .btn:hover {
  background: #6D28D9; /* darker blue on hover */
  box-shadow: 0 0 20px rgba(25, 118, 210, 0.8), 0 0 30px rgba(25, 118, 210, 0.5);
  transform: scale(1.05);
  color: white;
}

/* Pulse glowing animation for blue */
@keyframes pulseGlowBlue {
  0%, 100% {
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(33, 150, 243, 1);
  }
}

.form-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

.form-container .submit-btn {
  background: rgba(33, 150, 243, 0.9);
  color: white;
  font-weight: 700;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  animation: pulseGlowBlue 3s infinite ease-in-out;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-container .submit-btn:hover {
  background: rgba(25, 118, 210, 1);
  box-shadow: 0 0 20px rgba(25, 118, 210, 0.8), 0 0 30px rgba(25, 118, 210, 0.5);
  transform: scale(1.05);
  color: white;
}

/* Pulse glowing animation for blue */
@keyframes pulseGlowBlue {
  0%, 100% {
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(33, 150, 243, 1);
  }
}


.animated-border {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  z-index: 0;
  background: white; /* Ensure card background */
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* existing styles like border-radius, padding, background, etc. */
}

.card:hover {
  box-shadow: 0 12px 24px rgba(33, 150, 243, 0.3);
  transform: translateY(-6px);
  cursor: pointer;
}


.contact-cta {
  background-color: #2196f3; /* Blue */
  color: white;
  padding: 30px 20px;
  display: flex;
  align-items: center;     /* vertically center */
  justify-content: space-between; /* space between text & button */
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  gap: 20px;               /* space between items */
}

.contact-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap; /* prevent wrapping */
}


.contact-cta {
  background-color: #2196f3; /* Blue */
  color: white;
  padding: 30px 20px;
  display: flex;
  align-items: center;     /* vertically center */
  justify-content: space-between; /* space between text & button */
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  gap: 20px;               /* space between items */
}

.contact-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap; /* prevent wrapping */
}

.cta-btn {
  background: orange;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255 255 255 / 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  animation: pulseGlowWhite 3s infinite ease-in-out;
  white-space: nowrap; /* prevent button text wrapping */
  flex-shrink: 0;      /* don't shrink the button */
}

/* Hover effect for button */
.cta-btn:hover {
  background: white;
  color: #2196f3;
  box-shadow: 0 0 30px rgba(255 255 255 / 0.7);
  transform: scale(1.05);
}

/* Glowing pulse for white button */
@keyframes pulseGlowWhite {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255 255 255 / 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255 255 255 / 1);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .contact-cta {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
  }
}

.table-form-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.table-container {
  flex: 1 1 70%;
  min-width: 280px; /* minimum width for usability */
  overflow-x: auto; /* horizontal scroll on small screens */
}

.form-container {
  flex: 1 1 30%;
  min-width: 280px;
}

/* Responsive: stack vertically on smaller devices */
@media (max-width: 900px) {
  .table-container,
  .form-container {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .table-container {
    margin-bottom: 30px;
  }
}


.table-responsive {
  width: 100%;
  overflow-x: auto; /* allows horizontal scroll if needed */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.1);
}

/* Optional: Make table full width */
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* ensures table is wide enough, adjust if needed */
}

/* Basic styling */
.table-responsive th,
.table-responsive td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  white-space: nowrap; /* prevent breaking cells */
}

.table-responsive th {
  background-color: #6D28D9;
  color: white;
  font-weight: 600;
}

/* Optional: Zebra striping */
.table-responsive tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive font size */
@media (max-width: 600px) {
  .table-responsive th,
  .table-responsive td {
    padding: 8px 10px;
    font-size: 14px;
  }
}


/* Navbar container */
.navbar {
  
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo {
  padding-top: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2196f3;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2196f3;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #2196f3;
  border-radius: 2px;
  transition: all 0.3s linear;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.2);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .nav-links.open {
    max-height: 200px; /* enough to show the links */
  }

  .hamburger {
    display: flex;
  }
}


.table-form-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 20px;
  flex-wrap: wrap;
}

.table-container {
  flex: 0 0 65%;   /* fixed 70% width */
  min-width: 280px; /* minimum width for usability */
  overflow-x: auto;
}

.form-container {
  flex: 0 0 30%;   /* fixed 30% width */
  min-width: 280px;
}

/* Responsive: stack vertically on smaller devices */
@media (max-width: 900px) {
  .table-container,
  .form-container {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .table-container {
    margin-bottom: 30px;
  }
}


.card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

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

.card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Popular Tag */
.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #ff5722;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1;
}

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6D28D9;
  margin: 0;
}

/* Price & Duration */
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #F59E0B;
}

.card-price {
  display: flex;
  align-items: center;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.discounted-price {
  color: #FBBF24;
  font-size: 1.6rem;
  font-weight: bold;
}

/* Buttons */
.card-actions {
  display: flex;
justify-content: center;
}

.btn.enquire-btn {
  background-color: #007bff;
  color: white;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}

.btn.enquire-btn:hover {
  background-color: #0056b3;
}

.syllabus-link {
  text-align: center;
  color: #007bff;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.syllabus-link:hover {
  text-decoration: underline;
}

.card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
  gap: 10px;
}

/* Orange Button */
.btn.enquire-btn {
  background-color: #FBBF24;  /* Bright orange */
  color: white;
  padding: 10px 16px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.btn.enquire-btn:hover {
  background-color: #e65c00; /* Darker on hover */
}

/* View Syllabus Link styled like button text */
.syllabus-link {
  color: #FBBF24;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
}

.syllabus-link:hover {
  color: #e65c00;
}


.card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}

/* Orange Button */
.btn.enquire-btn {
 background-color: #FFFFFF;
    color: #6D28D9;
    padding: 10px 16px;
    border: 1px solid #FBBF24;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background 0.5s;
    flex-shrink: 0;
}

.btn.enquire-btn {
color: #6D28D9;
text-decoration: none;
}

.btn.enquire-btn:hover {
color: #fff;
}

.btn.enquire-btn:hover {
  background-color: #8B5CF6;
  color: #fff; /* Darker on hover */
  border: none;
}

/* View Syllabus Link styled like button text */
.syllabus-link {
  color: #FBBF24;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
}

.syllabus-link:hover {
  color: #e65c00;
}


/* Section Heading Wrapper */
.section-heading {
  text-align: center;
  margin:40px 0px;
  position: relative;
}

/* Heading */
.section-heading h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #6D28D9;
}

/* Animated Line */
.animated-line {
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(to right, #005ce6 0%, #d65017 50%, #005ce6 0%);
  background-size: 200% auto;
  animation: slideLine 2s linear infinite;
  border-radius: 2px;
}

/* Animation Keyframes */
@keyframes slideLine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}




.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  cursor: pointer;
}

.whatsapp-float svg {
  fill: white; /* If you want the icon white inside the green circle */
  width: 28px;
  height: 28px;
}



/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111827;
}









/* CTA Section */
.cta-section {
  /* 🔥 Attractive Gradient Background */
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-item {
  font-size: 1.25rem;
}

.cta-label {
  font-weight: 600;
  color: #FBBF24; /* Gold label */
  margin-right: 6px;
}

.cta-link {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Lightened colors for visibility on dark background */
.cta-link[href^="mailto"] {
  color: #E0E7FF; /* Light Purple-White */
}

.cta-link[href^="tel"] {
  color: #FEF3C7; /* Soft Gold-Yellow */
}

.cta-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Responsive layout */
@media (min-width: 600px) {
  .cta-contact {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}



/* Section Background */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}


.info-cards-section {
  background-color: #F9FAFB;
  padding: 60px 20px;
}

/* Grid Container */
.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.info-card {
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Icon */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #6D28D9; /* Deep Purple */
}

/* Title */
.card-title {
  font-size: 1.25rem;
  color: #6D28D9;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.card-text {
  font-size: 1rem;
  color: #4B5563; /* Cool Gray */
  line-height: 1.5;
}

/* Responsive: 2 columns on tablet, 4 on desktop */
@media (min-width: 600px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
