/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');
/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Assistant", sans-serif;
}

body {  
  color: #333;
  font-size:19px;
}

ul {
  list-style-type: none; /* Remove bullet points */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}


.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;  
}
.flexcontain{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Navbar */
.navbar {
  background-color: whitesmoke;
  background-image: linear-gradient(0deg, dodgerblue, royalblue);
  padding: 1rem 0;
  position: relative;
}

.logo {
  color: ivory;
  font-size: 1.5rem;
  position: relative;
}

.features ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.join-today-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #fff5f5;
  flex-wrap: wrap;
}

.join-today-section .image img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

.whothis ,.features,.trusted-by
 {
  background-color: #fdfdfd;
  
 }

 .mobnav{
  display: none;
 }
 .mobnav img{
    width: 30px;
 }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.nav-links a {
  color: ivory;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
  font-weight: bold;
}

/* Hero */
.hero-section {
  /* background: linear-gradient(to right, #001f3f, #0074d9); */
  margin: 2px auto;
  max-width: 1400px;
  background-color: dodgerblue;
  background-image: linear-gradient(0deg, dodgerblue, royalblue);
  color: #fff;
  padding: 4rem 0;
  text-align: left;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}

.hero-section h1 {
  font-size: 3.5rem;
}

.hero-section p {
  margin-bottom: 25px;
}
.hero-section .rating{
  margin-bottom: 5px;
}




/* Button */
.btn-primary {
  background-color: #ff4136;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e62e2e;
}

.container .flexcont{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.flexcont a{
  margin-top: 0px;
}
.flexcont p{
  margin-bottom: 0px;
  font-weight: bold;
}

.infographics{
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 10px;
  background-color: white;
  width: max-content;
  border-radius: 20px;
  display: flex;
  color: dodgerblue;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 0 5px grey;
}
.indiinfo{
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  width: 200px;
}
.indiinfo img{
  width: 50px;
  height: 50px;
}
.topdown{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.topdown p{
  margin: 0px;
  font-weight: bold;
}

.aboutsec{
  display: grid;
  grid-template-columns: 60% 40%;
  margin: 10px auto;
  max-width: 1300px;
  gap: 20px;
  margin-top: 90px;
}
.aboutsec .abt p{
  text-indent: 50px;
  padding-right: 50px;
  font-size: 1rem;
}
.aboutsec div li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px;
  font-size: 1rem;
}
.aboutsec div img{
  width: 25px;
}

/* About */
.about-section {
  padding: 3rem 0;
  text-align: left;
}

.sylbus{
  display: grid;
  grid-template-columns: 70% 30%;
  margin: 10px auto;
  max-width: 1400px;
}



/* Syllabus */
.syllabus-section {
  padding: 2rem 0;
}

.collapsible {
  background-color: #0074d9;
  background-image: linear-gradient(180deg, dodgerblue, royalblue);
  color: white;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  margin-top: 10px;
  border-radius: 5px;
}

.content {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #e9f0f7;
  margin-bottom: 10px;
  border-radius: 5px;

}

.content ul {
  padding: 1rem;
}
.content li{
  list-style-type: circle;
}

/* Offer Section */
.offer-section {
  background-color: #fff3cd;
  padding: 4rem 0;
  text-align: center;
}

.offer_btn
{
margin-top:30px;
}

.offercont{
  margin-top: 35px;
  text-align: center;
}
.offer-box {
  background-color: #ffeeba;
  /* border: 2px dashed #ffc107; */
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 5px grey;
}
.offer-box a{
  display: inline-block;
  margin-bottom: 25px;
}

.sidecont{
  text-align: left;
}
.sidecont h2{
  text-align: center;
  margin-bottom: 8px;
}
.sidecont p{
  text-indent: 25px;
  font-size: 0.95rem;
}
.sidecont li{
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.nostyle li{
  list-style-type: none;
  display: flex;
  gap: 10px;
  margin-left: 50px;
  margin-top: 10px;
}
.nostyle li img{
  width: 25px;
}
.nostyle li p{
  text-indent: 0px;
}


/* Testimonials */
.testimonial-section {
  padding: 1.5rem 0;
  text-align: center;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.testimonial-item {
  min-width: 250px;
  padding: 3rem;
  margin: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px grey;
  position: relative;
}
.testimonial-item p:first-child{
  margin-bottom: 20px;
}
.testimonial-item p:last-child{
  text-align: right;
}
.testimonial-item img{
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 50px;
  border-radius: 20px;
}

.testimonial-prev, .testimonial-next {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0074d9;
}

.ratings{
  margin-bottom: 20px;
}
.rating img{
  width: 15px;
}

/* Contact Form */
.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  margin: 5px auto;
  max-width: 50vw;
}

form {
  flex: 1 1 300px;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

form h2 {
  margin-bottom: 1rem;
}

form input,
form button {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-image {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 10px;
}

/* FAQ */
.faq-section {
  padding: 3rem 0;
}

/* Footer */
.footer {
  background-color: #001f3f;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* @media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }
  .form-container {
    flex-direction: column;
  }
  .testimonial-wrapper {
    flex-direction: column;
  }
} */



.course-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 10px;
}
.course-cards a{
  color: black;
  font-size: 0.9rem;
}

.course-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px lightgrey;
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
  text-align: center;
}

.course-card:hover {
  transform: translateY(-5px);
}



















@media only screen and (max-width: 900px)
{
    .mobnav{
      display: block;
    }
    .nav-links{
      position: absolute;
      top: 75%;
      right: 5px;
      display: none;
      z-index: 5;
      background-color: white;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 5px grey;
      width: 120px;
    }
    .nav-links li{
      padding: 5px;
    }    
    .mobnav:hover + .nav-links{
      display: flex;
      flex-direction: column;
      width: 200px;
    }
    .nav-links:hover{
      display: flex;
      flex-direction: column;
      width: 200px;
    }
    .nav-links a{
      display: block;
    }

    .hero-section{
      padding: 1.5rem 0;
    }
    .infographics{
      flex-wrap: wrap;
      display: grid;
      grid-template-columns: 50% 50%;
      width: 90%;
      justify-content: space-around;
      position: relative;
      left: 0%;
      margin: 10px auto;
      transform: none;
    }
    .indiinfo{
      width: 100%;
      justify-content: flex-start;
    }
    .aboutsec{
      display: block;
    }
    .aboutsec div{
      padding: 8px 30px;
      margin-bottom: 8px;
    }
    .sylbus{
      display: block;
    }
    .offercont .sidecont{
      padding: 20px;
      border-radius: 10px;
      border: 0.5px solid grey;
      max-width: 80%;
      margin: 5px auto;
    }
    .form-container{
      max-width: 75vw;
    }
}



@media only screen and (max-width: 450px)
{
  .infographics{
    display: flex;
    justify-content: center;
  }
  .course-cards{
    justify-content: center;
  }
}