/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



.container-fluid:first-of-type {
    margin-bottom: 20px;
}
.container-fluid:nth-of-type(2) {
    margin-bottom: 20px;
    
}
.container-fluid:nth-of-type(4) {
    margin-top: 40px;
    
}
.container-fluid:nth-of-type(5) {
    margin-top: 40px;
    
}

.navbar{
    background-color: #e1dcdc;
}


.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    background-color: #45a049;
}

/* css for pricing plan */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}
 
/* .container {
    width: 100%;
    min-height: 100vh;
    background: #565df3;
} */
 
.container h2 {
    color: #000000;
    font-size: 32px;
    padding: 50px 0;
    text-align: center;
}
 
.price-row {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 25px;
}
 
.price-col {
    background: #1cb81f;
    padding: 10% 15%;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}
 
.price-col p {
    font-size: 22px;
}
 
.price-col h3 {
    font-size: 44px;
    margin: 20px 0 40px;
    font-weight: 500;
}
 
.price-col h3 span {
    font-size: 16px;
}
 
.price-col ul {
    text-align: left;
    margin: 20px 0;
    color: #ddd;
}
 
.price-col ul li {
    margin: 15px 0;
    size: 20px;
}
 
.price-col button {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.5s;
}
 
.price-col button:hover {
    background: #008000;
}

#footer{
    background-color: #e1dcdc;
    
}
.footer-links{
    li{color: #fff;}
}

/* bullet points */
.custom-bullets {
    list-style-type: none; /* Hide default bullet points */
    padding-left: 0; /* Remove default indentation */
  }
  
  .custom-bullets li:before {
    content: "\2022"; /* Unicode for the bullet character (•) */
    color: #ff0000; /* Customize the bullet color */
    font-size: 18px; /* Customize the bullet size */
    margin-right: 8px; /* Add spacing between bullet and text */
  }

  .highlight{
    margin-top: 30px;
  }

 


/* batch timings css */
.upcoming-batches {
    background-color: #f9f9f9;
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  
  .upcoming-batches h2 {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .batch-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .batch-card h3 {
    margin-top: 0;
  }
  
  .batch-card p {
    margin: 10px 0;
  }
  
  .batch-card .btn {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .batch-card .btn:hover {
    background-color: #f57c00;
  }
  
  .space{
    margin-top: 30px;
    margin-left: 10px;
  }
  /* css for form and image */
  .image-container {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .form-container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .form-group {
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .image-container {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .form-container {
        max-width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }
  }


  .response-image{
    max-width: 100%;
    height: auto;
  }



 /* form css */

 .form{
    background-color: #f1f4f9;
    border: #e2dfdf;
 }

 .circle-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .circle-image {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 480px) {
    .circle-image {
      width: 30px;
      height: 30px;
    }
  }

  /* mentor */

  #mentor{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

  }

  .hell{
    align-items: center;
    font-size: larger;
  }


     
    








  