/* Import Google Fonts */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
    color: #333;
  overflow-x: hidden;

}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:#fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}

/* Ensure logo, scroller, and buttons fit equally */
.logo,
.scrolling-wrapper,
.buttons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0; /* Prevent flex children from overflowing */
}

/* Logo Image */
.logo-img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* Scroller */
.scrolling-wrapper {
  overflow: hidden;
  height: 30px;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
}

.scrolling-text span {
  display: inline-block;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  padding-left: 100%;
  animation: scroll-text 10s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Buttons */
.buttons {
  gap: 10px;
}

.btn {
  padding: 1px 10px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-register {
  background: #6a11cb;
  color: #fff;
}

.btn-register:hover {
  background: #2575fc;
}

.btn-login {
  background: #ff4b5c;
  color: #fff;
  padding: 5px 15px;
}

.btn-login:hover {
  background: #ff758c;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .logo,
  .scrolling-wrapper,
  .buttons {
    width: 100%;
    justify-content: center;
  }

  .scrolling-text span {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 14px;
  }

  .logo-img {
    height: 35px;
  }
}





/* Hero Section */
/* Hero Section */
/* Responsive Flex Adjustments */
@media (max-width: 768px) {
    .hero-section .row {
        flex-direction: column;
    }

    .hero-content {
        padding: 20px 10px;
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-footer {
        font-size: 0.9rem;
    }

    .d-flex.flex-wrap {
        justify-content: center;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
    }

    .mentor-img {
        width: 120px;
        height: 120px;
    }

    .mentor-name {
        font-size: 1.2rem;
    }

    .mentor-description {
        font-size: 0.95rem;
    }

  /* Adjust control buttons */
    .carousel-control-prev,
    .carousel-control-next {
        top: 40%;
        width: 10%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 70% 70%;
        background-color: #2193f5;
        border-radius: 50%;
    }
}

   .carousel-inner {
        display: block !important; /* Override flex if applied */
    }

    /* Center the mentor-card */
    .carousel-item {
        display: flex !important;
        justify-content: center;
    }

    .mentor-card {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
    }

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .mentor-name {
        font-size: 1rem;
    }

    .mentor-description {
        font-size: 0.85rem;
    }
}

.hero-section {
    position: relative;
    _background-image: url(/../images/indian-teacher.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 60px 15px;
    min-height: 600px;
    _background-color: #fafafa;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    _background-color: #fafafa;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.highlight-text {
    color: #2193f5;
}

.hero-footer {
    margin-top: 30px;
    font-size: 1rem;
    color: #000;
}

/* Mentor section */
.mentors {
  text-align: center;
  padding: 60px 20px;
  _background: #fafafa;
}

.mentors-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.mentors-heading::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background-color: #3b82f6;
  margin: 10px auto 0;
  border-radius: 2px;
}
.mentors-subheading {
  font-size: 1.25rem;
  color: #4b5563;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
 .mentors-section {
    padding: 40px;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subheading {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 40px;
}

.mentors-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.mentor-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 15px;
}

.mentor-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #e74c3c;
}

.mentor-name {
    color: #2c3e50;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.mentor-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 60px;
    font-family: poppins;
}

.social-links {
    margin: 10px 0;
}

.social-links a {
    color: #3498db;
    margin: 0 5px;
    font-size: 1.2rem;
}

.read-more-btnm {
    background-color: #e42427;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    color: #fff;
    text-decoration: none;
}

.read-more-btnm:hover {
    background-color: #25446a;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .mentors-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .mentors-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 20px;
    }

    .mentor-image {
        height: 250px;
    }
}

/* banner section -2*/
.banner-section {
  position: relative;
  color: #ffffff;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px 20px;
  _background-color: #fff;
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
}

.banner-content {
  flex: 1;
  padding-right: 40px;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  
}

/* Background layer */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  _background-image: url(/../images/exam-tension.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}


/* Banner Box Styling */
.banner-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 40px 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 600px;
  margin: auto;
  height:auto;
}

.banner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Optional: Add smooth transition for nested content */
.banner-box .banner-content h1,
.banner-box .button-group,
.banner-box p {
  transition: all 0.4s ease;
  color:#000;
}

.banner-box:hover .highlight-text {
  color: #ffffff;
  background-color: #ff4d4d;
  padding: 2px 8px;
  border-radius: 6px;
}


/* Headings */
.banner-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.highlight-text {
  color: #ff4d4d;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content:center;
}

.primary-btn,
.secondary-btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background-color: #ff4d4d;
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #e63d3d;
}

.secondary-btn {
  border: 2px solid #ff4d4d;
  background-color: transparent;
  color: #ff4d4d;
}

.secondary-btn:hover {
  background-color: #ff4d4d;
  color: #ffffff;
}

/* Link */
.link-text {
  color: #3fa9f5;
  font-weight: 600;
  text-decoration: none;
}

.link-text:hover {
  color: #1c78c0;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .banner-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    padding: 0;
  }

  .banner-image {
    margin-top: 30px;
  }
}

/* White background instead of image */
.page-container.white-bg {
    background-color: #ffffff;
    color: #000000;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.section-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}

/* Feature box with attractive shadow */
.feature-box {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 14px;
    color: #2196f3;
}

.feature-title {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Hover effect with elevation */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
}

/* Responsive for tablets */
@media (max-width: 992px) {
    .section-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box {
        padding: 24px;
    }
}

/* Responsive for mobile */
@media (max-width: 576px) {
    .section-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }
}
.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


 /* resgistration table */
.page-container2 {
    position: relative;
    color: #ffffff;
     height: auto;
  min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #fafafa;
    background-size: cover;
    background-position: center;
  
}

.page-container2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: -1;
      background-color: rgba(0, 0, 0, 0.8);
}

/* Section three styling */
.section-three {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
   
    padding: 40px;
    border-radius: 16px;
    
    width: 100%;
    max-width: 1000px;
}

/* Left side image */
.section-three-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-three-image img {
    width: 520px;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Right side content */
.section-three-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
        border-radius: 15px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.section-three-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin: 0;
}

.section-three-subtitle {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

.section-three-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

/* Button styling */
.section-three-button {
    background-color: #3b82f6;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.section-three-button:hover {
    background-color: #2563eb;
}

/* Register sign styling */
.section-three-badge {
    width: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .section-three {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .section-three-title {
        font-size: 2rem;
    }

    .section-three-subtitle {
        font-size: 1rem;
    }

    .section-three-description {
        font-size: 0.95rem;
    }

    .section-three-image img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .section-three {
        padding: 20px;
        gap: 16px;
    }

    .section-three-title {
        font-size: 1.75rem;
    }

    .section-three-subtitle {
        font-size: 1rem;
    }

    .section-three-description {
        font-size: 0.9rem;
    }

    .section-three-image img {
        max-width: 220px;
    }

    .section-three-badge {
        width: 80px;
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .section-three {
        padding: 16px;
        gap: 12px;
    }

    .section-three-title {
        font-size: 1.5rem;
    }

    .section-three-subtitle {
        font-size: 0.9rem;
    }

    .section-three-description {
        font-size: 0.85rem;
    }

    .section-three-button {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .section-three-image img {
        max-width: 180px;
    }

    .section-three-badge {
        width: 70px;
        top: 5px;
        right: 5px;
    }
}




/* Section Styling */
/* pricing table */
/* Popup modal */
/* Popup modal */
/* Overlay container */
.pricing-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* will be flex when shown */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
}
.test-text{margin:0 auto;}
/* Popup box */
.pricing-popup .popup-content {
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
    margin-top: 5vh; /* prevents overlap with top header */
    
}

.pricing-popup .popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-popup .popup-header h2 {
font-size: 24px;
    margin-bottom: 10px;
    background: #cdcd;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px;
}

.pricing-popup .popup-header p {
    font-size: 20px;
    color: #2c3e50;
}

.pricing-popup .popup-body {
    padding: 20px;
}

.feature-box {
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 30px;
    margin-right: 10px;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
}

.feature-description {
    font-size: 16px;
}

/* Mobile and tablet responsiveness */
@media (max-width: 768px) {
    /* Adjust the popup content width for smaller screens */
    .pricing-popup .popup-content {
        width: 90%; /* Take up more width on small screens */
        max-width: none; /* Remove the max-width constraint */
        padding: 15px; /* Reduce padding */
        max-height: 90vh; /* limit height on all screens */
    overflow-y: auto; /* enable scrolling */
    }

    .pricing-popup .popup-header h2 {
        font-size: 20px; /* Smaller font for smaller screens */
    }

    .pricing-popup .popup-header p {
        font-size: 16px; /* Smaller font for smaller screens */
    }

    .feature-box {
        flex-direction: column;
        text-align: center; /* Stack icon and text vertically */
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 10px; /* Add some space between icon and title */
    }

    .feature-title {
        font-size: 16px; /* Smaller font for titles on mobile */
    }

    .feature-description {
        font-size: 14px; /* Smaller font for descriptions on mobile */
    }
}

/* Small mobile responsiveness */
@media (max-width: 480px) {
   .pricing-popup .popup-content {
        padding: 16px;
        max-height: 85vh;
        margin-top: 10vh; /* adds more top space */
    overflow-y: auto; /* enable scrolling */
    }
    .pricing-popup .popup-header h2 {
        font-size: 18px; /* Even smaller font */
    }

    .pricing-popup .popup-header p {
        font-size: 14px; /* Smaller font for descriptions on small screens */
    }

    .feature-icon {
        font-size: 25px; /* Reduce icon size */
    }

    .feature-title {
        font-size: 14px; /* Smaller title font */
    }

    .feature-description {
        font-size: 12px; /* Even smaller description font */
    }
}
/* Pricing Section */
.pricing-table {
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  _background-color: #ffffff;
  flex-direction: column;
}
/* Cards Layout */
.test-series {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card Design */


.card-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 16px;
}

.read-more-btn {
  background-color: #ffeb3b;
  color: #333;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background-color: #fff176;
  transform: scale(1.05);
}

.test-card {
  width: 320px;
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.test-card .features li i {
  margin-right: 14px; /* or try 12px for slightly smaller spacing */
  color: #ffeb3b;
}

/* Card Variants */
.test-card.short-term {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
}
.test-card.mid-term {
  background: linear-gradient(135deg, #1e90ff, #4a69bb);
}
.test-card.long-term {
  background: linear-gradient(135deg, #28a745, #218838);
}

/* Icon */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffeb3b;
}

/* Title and Tests */
.test-card h2 {
  font-size: 22px;
  margin: 0;
}
.tests {
  
  font-weight: bold;
    color: #ffeb3b;
    margin: 8px 0;
    background: #519234;
    padding: 10px;
}
.description {
  font-size: 14px;
  margin-bottom: 16px;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  height: 200px;
}
.features li {
  font-size: 14px;
  margin: 6px 0;
  display: flex;
  align-items: center;
}
.features li i {
  margin-right: 8px;
  color: #ffeb3b;
}

/* New: Price Top Styling */
.price-top {
  background-color: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  margin: 12px auto 10px;
  font-size: 18px;
}

/* Button */
.read-more {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.read-more:hover {
  background-color: #ffeb3b;
}

/* Hover */
.test-card:hover {
  transform: translateY(-10px);
}
.card-header {
  text-align: center;
  margin-bottom: 12px;
}

.icon-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 0 12px rgba(255, 235, 59, 0.6);
}

.icon-wrapper .icon {
  font-size: 28px;
  color: #ffeb3b;
}

.card-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.icon-wrapper .icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .test-card {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .test-card {
    width: 100%;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
 
  text-align: center;
}
.modal-content h2 {
  margin-bottom: 10px;
}
.modal-content p {
  margin: 10px 0;
}
.close {
  color: #aaa;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #1a7d32;
    background-color: #ffffff91;
    padding: 10px 20px;
    border-radius: 8px;
    margin-right: 10px;
}
/* Section Intro Styles */
.section-intro {
    text-align: center;
    margin-bottom: 40px;
    
}

.section-intro h1 {
    font-size: 36px;
    font-weight: 600;
    color: #25446a;
    margin-bottom: 10px;
}
 .section-intro h1:after   {content: '';
    display: block;
    width: 60%;
    height: 4px;
    background-color: #3b82f6;
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-intro p {
    font-size: 18px;
    color: #27a143;
    margin-top: 0;
}



/* Title Styling */
/* Section 4 Styling */
.section-4 {
  position: relative;
  padding: 60px;
  
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  _background:#fff; 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

/* Black Overlay with subtle tone */
.section-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 16px;
}

/* Hover effect on section */


/* Title Styling */
.section-4 .title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
 
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-4 .title:after
  {  content: '';
    display: block;
    width: 60%;
    height: 4px;
    background-color: #3b82f6;
    margin: 10px auto 0;
    border-radius: 2px;}
/* Timeline Styling */
.timeline {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: flex-start; /* Align to the start of the container */
}

/* Individual Item Styling */
.timeline-item {
  width: 22%;
  min-width: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Flexbox alignment to allow content height variation */
}

.timeline-content {
  background: linear-gradient(135deg, #e0f7fa, #e3f2fd);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  flex-grow: 1; /* Allow items to grow with content */
  height: 270px; /* Prevent too small items */
}

.timeline-content:hover {
  background: linear-gradient(135deg, #bbdefb, #90caf9);
  transform: translateY(-8px);
  border-color: #1a73e8;
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}
@media (max-width: 768px) {
  .timeline-content {
    height: auto; /* Let it grow naturally on mobile */
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
/* Number Styling */
.number {
  display: inline-block;
  background: #1a73e8;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.timeline-content:hover .number {
  background: #1565c0;
  transform: scale(1.1);
}

/* Line Between Items */
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -70px;
  width: 3px;
  height: 80px;
  background-color: #1a73e8;
  z-index: -1;
  transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-item {
    width: 90%;
    max-width: 500px;
  }

  .timeline-item:not(:last-child)::after {
    width: 3px;
    height: 40px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-4 {
    padding: 30px;
  }

  .section-4 .title {
    font-size: 28px;
  }

  .timeline-content {
    padding: 20px;
  }

  .number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
  }
}

/* Section 5 Styling */
.section5 {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 20px; /* Added top padding to prevent overlap */
  _background-color: #f9f9f9;
  box-sizing: border-box;
}

/* Container Styling */
.section5-container {
  max-width: 1200px;
  width: 100%;
}

/* Title Styling */
.section5-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

/* Content Styling */
.section5-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section5-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 280px;
}

.section5-item:hover {
  transform: translateY(-8px);
}

/* Number Styling */
.section5-number {
  font-size: 24px;
  font-weight: bold;
  color: #2a7fd4;
  background-color: #e3f2fd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(42, 127, 212, 0.3);
  transition: background-color 0.3s ease;
}

.section5-item:hover .section5-number {
  background-color: #2a7fd4;
  color: #fff;
}

/* Heading and Description */
.section5-heading {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.section5-description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* CTA Button */
.cta-buttonh {
  margin-top: 30px;
  text-align: center;
}

.join-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2a7fd4;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #1b5fa3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section5-content {
    flex-direction: column;
    gap: 20px;
  }

  .section5-item {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section5 {
    padding: 80px 16px 16px;
  }

  .section5-title {
    font-size: 28px;
  }

  .section5-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .section5-heading {
    font-size: 18px;
  }

  .section5-description {
    font-size: 14px;
  }
}



/* General Styling */
.support-section {
    text-align: center;
    padding: 50px 20px;
    _background: #fff;
    color: #25446a;
}
.support-section h2:after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background-color: #3b82f6;
    margin: 10px auto 0;
    border-radius: 2px;
}
/* Heading Styling */
.support-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.support-section h2 span {
    color: #ffb703;
}

/* Grid Layout */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Individual Item Styling */
.support-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.support-item h3 {
    font-size: 1.3rem;
    margin-top: 10px;
    color: #1e3c72;
}

.support-item p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 8px;
}

/* Icon Styling */
.icon {
    font-size: 2.5rem;
    color: #ffb703;
}

.chat-icon::before { content: '💬'; }
.video-icon::before { content: '▶️'; }
.mentor-icon::before { content: '🤝'; }
.trophy-icon::before { content: '🏆'; }
.calendar-icon::before { content: '📅'; }
.community-icon::before { content: '🌍'; }

/* Button Styling */
.cta-buttonh {
    margin-top: 30px;
    display: flow;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.join-btn {
    background-color: #e42427;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.join-btn:hover {
    background-color: #ffaa00;
}

/* ✅ Responsive Styling */
@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 15px;
    }

    .support-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
    }

    .support-section h2 {
        font-size: 1.8rem;
    }

    .support-item {
        padding: 18px;
    }

    .icon {
        font-size: 2rem;
    }

    .join-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-section h2 {
        font-size: 1.5rem;
    }

    .support-item h3 {
        font-size: 1.1rem;
    }

    .support-item p {
        font-size: 0.9rem;
    }

    .icon {
        font-size: 1.8rem;
    }

    .join-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}



.doubt-section {
    _background: #fafafa;
    color: #23446b;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
    max-width: 100%;
    margin: 40px auto;
    text-align: center;}
.doubt-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.doubt-section h2 span {
    color: #ffd700;
}

.doubt-section ul {
    list-style: none;
    padding: 0;
}

.doubt-section ul li {
    font-size: 18px;
    padding: 10px;
    
    transition: background 0.3s ease;
}

.doubt-section ul li:last-child {
    border-bottom: none;
}

.doubt-section ul li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.register-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffd700;
    color: #1e3c72;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.register-btn:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
}


/* Footer Styling */
.footer {
    background-image: url('https://source.unsplash.com/1600x900/?nature,landscape'); /* Example image */
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    padding: 60px 20px;
    width:100%;
}

.footer-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    padding: 40px;
    border-radius: 12px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.about-section,
.social-icons {
    flex: 1;
    min-width: 300px;
}

.about-section h2,
.social-icons h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #e42427;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}
@media (max-width: 480px) {
    .about-section h2,
    .social-icons h2 {
        font-size: 20px;
    }

    .about-section p {
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}



/* Testimonial Section Styling */
.testimonial-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    overflow: hidden;
   
}

/* Wrapper to Hide Overflow */
.testimonial-wrapper {
    display: flex;
    overflow: hidden;
}

/* Container for Testimonials */
.testimonial-container {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

/* Individual Testimonial Styling */
.testimonial {
    flex: 0 0 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Client Image */
.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffd700;
}

/* Content and Name */
.testimonial-content {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Animation for auto-scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 4)); /* 320px = testimonial width + gap */
    }
}

/* Pause animation on hover */
.testimonial-container:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        gap: 10px;
        animation-duration: 15s;
    }

    .testimonial {
        flex: 0 0 250px;
        padding: 16px;
    }

    .testimonial-content {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 30px 10px;
    }

    .testimonial-container {
        gap: 8px;
        animation-duration: 12s;
    }

    .testimonial {
        flex: 0 0 220px;
        padding: 14px;
    }
}


/* Push content down to avoid overlap */
.hero-section {
    margin-top: 60px;
}

.auto-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.auto-modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 15px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.auto-modal-content h2 {
  color: #1f4c73;
  font-size: 1.8rem;
}

.auto-modal-content p {
  font-size: 1rem;
  color: #444;
}

.auto-modal-content input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.auto-modal-content .submit-btn {
  background-color: #ffc107;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auto-modal-content .submit-btn:hover {
  background-color: #e6b800;
}

.close-auto-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 23px;
    cursor: pointer;
    color: #ffffff;
    background: #191e19dd;
    /* padding: 2px; */
    /* border-radius: 100px; */
    height: 30px;
    width: 30px;
}

.close-btn
{
    float: right;
    background: #000;
    color: #fff;
    height: 30px;
    width: 30px;
    padding: 2px;
    cursor:pointer;
}
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .auto-modal-content h2 {
    font-size: 1.5rem;
  }
}
.mentor-carousel-section {
  _height: 100vh;
  background-image: url(/your-background.jpg); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mentor-carousel-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  _background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.mentor-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1f2937;
}

.mentor-carousel {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.mentor-slide {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.5s ease;
}

.mentor-left {
  flex: 1 1 300px;
  padding: 20px;
  text-align: center;
}

.mentor-left img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}


.mentor-position {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 15px;
}

.mentor-socials a {
  margin: 0 8px;
  font-size: 1.2rem;
  color: #1d4ed8;
  transition: 0.3s;
}

.mentor-socials a:hover {
  color: #f59e0b;
}

.mentor-right {
  flex: 2 1 400px;
  padding: 20px;
  font-size: 1rem;
  color: #111827;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .mentor-slide {
    flex-direction: column;
    text-align: center;
  }

  .mentor-left,
  .mentor-right {
    padding: 10px;
  }

  .mentor-left img {
    width: 150px;
    height: 150px;
  }
}



/* Custom Slider CSS */
.custom-slider-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.custom-slider {
  position: relative;
  height: 400px; /* Adjust height as needed */
}

.custom-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.custom-slide.active {
  opacity: 1;
}

.custom-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
    backdrop-filter: blur(10px);
    
}

.custom-slider-dots {
  text-align: center;
  padding: 15px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}
/* Mobile View Adjustments */
@media (max-width: 768px) {
  .custom-slider {
    height: auto; /* Let content determine height */
    min-height: 250px; /* Minimum mobile height */
  }
  
  .custom-slide {
    position: relative; /* Change from absolute for natural image flow */
    opacity: 1;
    display: none;
  }
  
  .custom-slide.active {
    display: block;
  }
  
  .custom-slide img {
    height: auto; /* Maintain image aspect ratio */
    max-width: 100%;
  }
}

