@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  background: linear-gradient(rgba(3, 102, 231, 0.685), rgba(13, 149, 190, 0.685));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stats {
  font-size: 1.2rem;
  font-weight: 400;
}

.main-content {
  flex: 1;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: -3rem auto 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.left-column {
  flex: 1;
  padding: 2rem;
  background-color: #f0f7ff;
}

.left-column h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: white;
}

.analysis {
  background-color: #4e73df;
}

.schools {
  background-color: #1cc88a;
}

.gmat {
  background-color: #36b9cc;
}

.improve {
  background-color: #f6c23e;
}

.admit {
  background-color: #e74a3b;
}

.feature-item p {
  font-size: 0.95rem;
}

.right-column {
  flex: 1;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: #333;
}

input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.submit-btn {
  background-color: #e74a3b;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #d13022;
}

@media (max-width: 992px) {
  .card {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .stats {
    font-size: 0.9rem;
  }

  .left-column,
  .right-column {
    padding: 1.5rem;
  }
}

/* css for client testimonial  */
.testimonials {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.testimonials h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.highlight {
  color: #e63946;
  font-weight: bold;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.client-role {
  font-weight: bold;
  color: #222;
  margin: 10px 0;
}

.stars {
  font-size: 18px;
  color: gold;
  margin-top: 10px;
}


/* why chouse us start  */
.why-choose-us {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.why-choose-us h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.why-choose-us .highlight {
  color: #e63946;
  font-weight: bold;
}

.why-choose-us p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.academy-name {
  color: #e63946;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.feature-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.feature-content {
  text-align: left;
}

.feature-content h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
}
/* Popup Message */
.popup-message {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  z-index: 9999;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 1s ease-in-out;
  max-width: 350px;
  border: 2px solid #e63946;
}

.popup-message h2 {
  font-size: 20px;
  color: #e63946;
  margin-bottom: 10px;
}

.popup-message p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Floating Flowers */
.flower {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: pink;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
}
/* CSS for Styling (Centered Small Form) */

.consultation-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.consultation-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.consultation-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.consultation-container {
    max-width: 400px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.consultation-container .form-group {
    margin-bottom: 12px;
}

.consultation-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.submit-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c53030;
}
.consultation-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    min-height: 80vh; /* Ensures it's centered vertically */
}

.consultation-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}

.consultation-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.consultation-container {
    max-width: 400px;
    width: 100%;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultation-container .form-group {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

.consultation-container label {
    font-weight: 600;
    color: #333;
}

.consultation-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.submit-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #c53030;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultation-container {
        max-width: 90%;
    }
}
/* ########################################### */