:root {
  --crimson: #B22222;
  --crimson-dark: #7c1717;
  --white: #fff;
  --gray: #f5f5f5;
  --shadow: rgba(40,0,0,0.07);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* ===== Hero Section Base ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(11, 165, 165, 0.6), rgba(176, 22, 203, 0.6));
  min-height: 70vh; /* reduced from 100vh */
  display: flex;
  align-items: flex-start; /* push content down */
  justify-content: center;
  padding: 5rem 1rem 2rem 1rem; /* top padding added */
}

/* ===== Hero Grid ===== */
.hero-grid {
  z-index: 2;
  position: relative;
  gap: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start; /* align content to top within grid */
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* ===== Wavy Background ===== */
.hero-bg svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ===== Hero Content ===== */
.hero-content {
  color: var(--white);
  text-shadow: 0 2px 12px var(--shadow); /* lighter shadow */
}

.hero-content h1 {
  font-size: 2.4rem; /* slightly bigger */
  font-weight: bold;
  margin-bottom: 0.5rem; /* reduced margin */
  min-height: 50px; 
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem; 
  display: grid;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 500;
}

.features-list i {
  margin-right: 0.5em;
  font-size: 1.1em;
  color: var(--white);
  background: var(--crimson-dark);
  border-radius: 50%;
  padding: 0.25em;
  box-shadow: 0 2px 5px 0 var(--crimson-dark);
}

/* ===== CTA Button ===== */
.cta-btn {
  background: var(--white);
  color: var(--crimson);
  padding: 0.7rem 2rem;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 3px 20px -8px var(--crimson-dark);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  will-change: filter, transform;
}

.cta-btn:hover {
  background: var(--crimson-dark);
  color: var(--white);
  filter: brightness(1.05) drop-shadow(0 1.5px 6px var(--crimson-dark));
  transform: scale(1.03);
}

/* ===== Hero Visual / Image ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem; /* pushes image down */
}

.hero-visual img {
  max-width: 550px; /* bigger image */
  width: 90%; 
  border-radius: 15px;
  box-shadow: 0 4px 32px -8px var(--crimson-dark);
  animation: floaty 6s ease-in-out infinite;
  margin-top: 1.5rem; /* extra push for image itself */
}

/* ===== Floating Animation ===== */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== Responsive Design ===== */
@media (max-width: 950px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
  }
  .hero-visual { 
    margin-top: 4rem; 
  }
  .hero-visual img {
    max-width: 300px;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 950px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
  }
  .hero-visual { 
    margin-top: 4rem; 
  }
  .hero-visual img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p, .features-list li { font-size: 0.95rem; }

  /* Hide image on small screens */
  .hero-visual {
    display: none;
  }
}

.highlights-section {
  background: #fff;
  padding: 60px 0 40px 0;
}

.highlights-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.highlights-section h2 {
  color: #B22222;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.7rem;
  letter-spacing: 0.02em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.1rem;
}

.highlight-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px -10px #b2222221;
  padding: 2.2rem 1rem 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 12px 38px -4px #b222223d;
  border-color: #B22222;
}

.highlight-card i {
  font-size: 2.4rem;
  color: #B22222;
  margin-bottom: 0.8rem;
  padding: 0.6rem;
  background: #fff9f9;
  border-radius: 50%;
  box-shadow: 0 2px 14px -4px #b222222e;
}

.highlight-card h3 {
  font-size: 1.21rem;
  color: #B22222;
  margin: 0.7rem 0 0.5rem;
  font-weight: 600;
}

.highlight-card p {
  font-size: 1.03rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 990px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .highlights-section h2 {
    font-size: 1.37rem;
    margin-bottom: 1.5rem;
  }
}

/* Curriculum Section */
.curriculum-section {
  background: #fff;
  padding: 60px 0 50px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.curriculum-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.curriculum-section h2 {
  color: #B22222;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  text-align: left;
}

.curriculum-card {
  background: #fafafa;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 30px -15px #b222221a;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px -10px #b2222234;
}

.curriculum-card h3 {
  color: #B22222;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.curriculum-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.curriculum-card ul li {
  margin-bottom: 0.4rem;
}

/* Responsive */
@media (max-width: 960px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  .curriculum-section h2 {
    font-size: 1.6rem;
  }
}

/* Instructors Section */

     .instructors-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }

  .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color:crimson;
  }

  .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }

  /* === Fixed 3 cards per row === */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
  gap: 30px;
  justify-items: center; /* centers last row cards */
}


.instructor-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px; /* added a bit more padding */
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;          /* take full grid width */
  max-width: 440px;     /* increased from 280px → now wider */
}


  .instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .instructor-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e63946;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }

  .instructor-card:hover .instructor-img img {
    transform: scale(1.05);
  }

  .instructor-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
  }

  .instructor-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
  }

  .instructor-details {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

.instructor-details li {
  font-size: 0.95rem;       /* slightly larger, matches card size */
  color: #444;
  margin: 8px 0;
  display: flex;
  align-items: center;      /* 🔑 vertically align icon and text */
  gap: 10px;                /* space between icon and text */
  line-height: 1.4;
}

.material-icons {
  font-size: 20px;          /* balanced with text */
  color: #e63946;
  vertical-align: middle;   /* ensures baseline alignment */
  line-height: 1;           /* keeps height consistent */
  display: flex;            /* extra centering for safety */
  align-items: center;
  justify-content: center;
}


  /* Fade-in Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
  }

  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .instructors-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
    }
  }

  @media (max-width: 600px) {
    .instructors-grid {
      grid-template-columns: 1fr; /* 1 per row on small screens */
    }
  }



/* .success-metrics-section */
.success-metrics-section {
  background: #fff5f5;
  padding: 70px 1rem 80px 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-align: center;
}

.success-metrics-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.success-metrics-section h2 {
  color: #B22222;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.metrics-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.metric {
  flex: 1 1 180px;
  background: white;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 26px -8px #b2222240;
  transition: box-shadow 0.3s ease;
}

.metric:hover {
  box-shadow: 0 18px 45px -10px #b222227f;
}

.metric-number {
  font-size: 3.5rem;
  color: #B22222;
  font-weight: 900;
  display: block;
  margin-bottom: 0.6rem;
}

.metric p {
  font-size: 1.15rem;
  color: #444;
  font-weight: 600;
  margin: 0;
}

/* .master-programs-section  */
/* Master Programs Section */
.master-programs {
  width: 100%;
  padding: 4rem 1.5rem;
  background: #f9fafc;
  font-family: "Segoe UI", Arial, sans-serif;
}

.mp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mp-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
}

.mp-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Program Blocks */
.mp-block {
  padding: 2rem;
  margin-bottom: 2rem;
  background: #ffffff;
  border-left: 6px solid #c62828; /* crimson accent */
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.mp-block:hover {
  transform: translateX(5px);
}

.mp-block.alt {
  background: #f2f5f9; /* alternate background */
  border-left: 6px solid #1565c0; /* blue accent */
}

.mp-block h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #111;
}

.mp-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .mp-title {
    font-size: 2rem;
  }
  .mp-block {
    padding: 1.5rem;
  }
  .mp-block h2 {
    font-size: 1.4rem;
  }
}


.testimonials {
  background: linear-gradient(135deg, #6a0f1c, #b3193c, #d43f5c);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: fade 1s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.testimonial h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffd9d9;
}

/* Navigation Arrows */
.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav span {
  cursor: pointer;
  font-size: 2rem;
  margin: 0 15px;
  color: #fff;
  transition: 0.3s;
}

.testimonial-nav span:hover {
  color: #ffd9d9;
  transform: scale(1.2);
}

/* Dots */
.dots {
  margin-top: 15px;
}

.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #fff;
  transform: scale(1.3);
}

/* Testimonial Photos */
.testimonial img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.testimonial img:hover {
  transform: scale(1.1);
}


/* Animation */
@keyframes fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* ========================= */
/* Base Styles (Your Code)   */
/* ========================= */
.testimonials {
  background: linear-gradient(135deg, #6a0f1c, #b3193c, #d43f5c);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: fade 1s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.testimonial h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffd9d9;
}

/* Navigation Arrows */
.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav span {
  cursor: pointer;
  font-size: 2rem;
  margin: 0 15px;
  color: #fff;
  transition: 0.3s;
}

.testimonial-nav span:hover {
  color: #ffd9d9;
  transform: scale(1.2);
}

/* Dots */
.dots {
  margin-top: 15px;
}

.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #fff;
  transform: scale(1.3);
}

/* Testimonial Photos */
.testimonial img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.testimonial img:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* ========================= */
/* Responsive Styles         */
/* ========================= */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .testimonials h2 {
    font-size: 2rem;
  }
  .testimonial {
    padding: 30px;
    margin: 15px;
  }
  .testimonial p {
    font-size: 1.1rem;
  }
  .testimonial img {
    width: 90px;
    height: 90px;
  }
}

/* Mobiles (<= 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 15px;
  }
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .testimonial {
    padding: 25px;
    margin: 10px;
  }
  .testimonial p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .testimonial h3 {
    font-size: 0.9rem;
  }
  .testimonial img {
    width: 80px;
    height: 80px;
  }
  .testimonial-nav span {
    font-size: 1.6rem;
    margin: 0 10px;
  }
}

/* Small Mobiles (<= 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 50px 10px;
  }
  .testimonials h2 {
    font-size: 1.5rem;
  }
  .testimonial {
    padding: 20px;
    margin: 8px;
    border-radius: 15px;
  }
  .testimonial p {
    font-size: 0.95rem;
  }
  .testimonial img {
    width: 70px;
    height: 70px;
  }
  .testimonial-nav span {
    font-size: 1.4rem;
    margin: 0 8px;
  }
  .dots span {
    height: 10px;
    width: 10px;
  }
}
/* FAQ Section - Base */
.faq-section-twoway {
  background: #fff;
  padding: 60px 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.faq-section-twoway h2 {
  color: #B22222;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-wrapper {
  display: flex;
  gap: 3rem;
}

/* Questions list */
.faq-questions {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border-right: 2px solid #eee;
}

.faq-questions li {
  padding: 1rem 1.5rem;
  cursor: pointer;
  color: #B22222;
  border-left: 4px solid transparent;
  font-weight: 600;
  transition: border-left 0.3s, background-color 0.3s;
}

.faq-questions li:hover,
.faq-questions li.active {
  border-left: 4px solid #B22222;
  background-color: #fdf0f0;
}

/* Answers container */
.faq-answers {
  flex: 2;
  padding-left: 1rem;
  color: #444;
}

.faq-answer {
  display: none;
  font-size: 1.1rem;
  line-height: 1.5;
}

.faq-answer.active {
  display: block;
}

/* ------------------ Responsive Styles ------------------ */

/* Tablets */
@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-questions {
    border-right: none;
    border-bottom: 2px solid #eee;
  }

  .faq-questions li {
    padding: 0.8rem 1rem;
  }

  .faq-answers {
    padding-left: 0;
  }

  .faq-section-twoway h2 {
    font-size: 2.2rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .faq-section-twoway {
    padding: 40px 0.5rem;
  }

  .faq-section-twoway h2 {
    font-size: 1.8rem;
  }

  .faq-questions li {
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}








/* footer */

.footer {
  background-color: #1c1c22;
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Fix logo spacing */
.footer-logo-img {
  width: 100px;
  margin: -25px 0; /* adds top and bottom spacing */
  margin-bottom: 3px;
}

/* Make the paragraph justified */
.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;  /* <-- this makes it align full */
}


.footer-logo-text {
  font-size: 20px;
  color: crimson;
  margin-bottom: 15px; /* increased from 10px */
}


.footer-col h3 {
  color: crimson;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: crimson;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}
.location-link {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
}

.location-link:hover {
  color: crimson;
  text-decoration: underline;
}


.social-icons a {
  display: inline-flex;                  /* Centers icon in circle */
  align-items: center;
  justify-content: center;
  width: 36px;                           /* Fixed width */
  height: 36px;                          /* Same height = circle */
  border-radius: 50%;                   /* Makes it a circle */
  border: 1px solid crimson;
  background-color: transparent;
  color: white;
  font-size: 16px;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: crimson;
  color: white;
}


.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}
/* Normal-looking link */
.plain-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.plain-link:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
  gap: 0px !important;
}

.footer-col {
  margin-bottom: 10px !important;
}


  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-logo-img {
    width: 80px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: left;
    margin-top: 20px;
  }
}


/* WhatsApp Floating Button with Font Icon */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
}


/* Scroll to Top Button Bottom Right */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn:hover {
  background-color: #0056b3;
}




/* Enroll Button */
.enroll-btn {
  background-color: crimson;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: darkred;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 5px 20px;         /* 🔻 Reduced padding */
  border-radius: 12px;
  width: 90%;
  max-width: 400px;           /* 🔻 Reduced width too */
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.form-container h2 {
  margin-bottom: 20px;
  color: crimson;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: crimson;
  cursor: pointer;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: crimson;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 7px;
}

.submit-btn:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .enroll-btn {
    width: 100%;
  }
}