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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(135deg,
  rgba(179, 229, 252, 0.15),  /* very light blue */
  rgba(129, 212, 250, 0.15),  /* light blue */
  rgba(79, 195, 247, 0.15),   /* medium light blue */
  rgba(129, 212, 250, 0.15),  /* light blue */
  rgba(179, 229, 252, 0.15)   /* very light blue */
);

  background-attachment: fixed;
  background-size: cover;
  margin: 0;
}


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

    /* NAVBAR */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: white;
      padding: 15px 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: #333;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: #333;
      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: 0;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.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: rgba(33, 150, 243, 0.85); /* 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: rgba(25, 118, 210, 1); /* 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: #2196f3;
  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 {
  height: 80px; /* increase height */
  padding: 10px 20px; /* add vertical padding */
  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 {
  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: #333;
  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;
  left: 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: #222;
  margin: 0;
}

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

.card-price {
  display: flex;
}

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

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

/* Buttons */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.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: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
  gap: 10px;
}

/* Orange Button */
.btn.enquire-btn {
  background-color: #ff6600;  /* 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: #ff6600;
  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: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}

/* Orange Button */
.btn.enquire-btn {
  background-color: #ff6600;  /* 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: #ff6600;
  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-bottom: 40px;
  position: relative;
}

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

/* 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;
  }
}


.swiper-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}



.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;
}
