/* Section styling */
.steps-section {
  text-align: center;
  padding: 80px 20px;
}

.steps-subtitle {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.steps-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.steps-description {
  color: #7a8594;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Steps container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual step card */
.step-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.icon {
  font-size: 2rem;
  background-color: #fff3ed;
  color: #ff6a00;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text inside cards */
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2e3546;
}

.step-card p {
  color: #7a8594;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .steps-section h1 {
    font-size: 1.9rem;
  }
  .steps-description {
    font-size: 1rem;
  }
  .step-card {
    padding: 30px 15px;
  }
}
 .about-section {
      padding: 100px 0;
    }

    .about-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: #2e3546;
    }

    .about-subtitle {
      color: #ff6a00;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .about-text {
      color: #6c757d;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .check-list li {
      list-style: none;
      font-size: 1.1rem;
      color: #2e3546;
      margin-bottom: 5px;
    }

    .check-list li::before {
      content: "✔";
      color: #00b377;
      font-weight: bold;
      margin-right: 10px;
    }

    .img-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .img-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }



    
    @media (max-width: 992px) {
      .about-title {
        font-size: 2.2rem;
      }
      .about-text {
        font-size: 1rem;
      }
      .img-grid {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 30px;
      }
    }

    @media (max-width: 576px) {
      .img-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
 .about-section.container {
  max-width: 100%;
  padding: 0 20px;
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .about-section.container {
    max-width: 900px;
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .about-section.container {
    max-width: 1100px;
  }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  .about-section.container {
    max-width: 1400px;
  }
}

/* Ultra-wide screens (≥1400px) */
@media (min-width: 1400px) {
  .about-section.container {
    max-width: 1850px; /* 👈 yahan apne hisaab se badha lo */
  }
}

    /* experince */

      .stats-section {
      padding-bottom: 30px;
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: #1e57e5; /* bright blue color */
      margin-bottom: 10px;
    }

    .stat-line {
      width: 40px;
      height: 2px;
      background-color: #cdd8e8;
      margin: 0 auto 15px;
    }

    .stat-text {
      color: #7a8594;
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 260px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .stat-number {
        font-size: 2.4rem;
      }
      .stat-text {
        font-size: 1rem;
      }
    }
    p{
        font-size: 23px;
    }

    /* top bar */
    .topbar {
  background-color: #2f557b; /* Same as your image */
  color: #fff;
  font-size: 17px;
  padding: 8px 20px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-section-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 5px;
}

.contact-section-info a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
      text-decoration: none;
  background-color: #6f6b6d
  ;
  color: white;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff99c2;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .social-icons {
    margin-top: 5px;
  }

  .contact-info {
    font-size: 14px;
  }
}
html ,body{
   overflow-x: hidden;
    scroll-behavior: smooth;
}

.about-section.container {
  max-width: 1287px;
}

/* --- Advanced Fade + Slide + Zoom effect --- */
.fade-zoom {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-zoom.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* contact */

.contact-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  display: flex;
  max-width: 1200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  flex-wrap: wrap;
}

/* --- Left Side (Info) --- */
.contact-info {
  flex: 1;
  min-width: 320px;

  
}

.contact-info h5 {
  color: #1cb5e0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-info h1 {
  font-size: 38px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.contact-info p {
  color: #6f6f6f;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon {
  font-size: 22px;
  
  color: #ff6b35;
}

.info-item a {
  color: #1e1e1e;
  text-decoration: none;
}

.map iframe {
  margin-top: 10px;
  border-radius: 8px;
}

/* --- Right Side (Form) --- */
.contact-form {
  flex: 1;
  min-width: 350px;
  background-color: #fff;
  padding: 50px 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 30px;
 
  font-size: 15px;
  color: #333;
  outline: none;
}

textarea {
  border-radius: 15px;
  resize: none;
  height: 120px;
}

button {
  background-color: #155ef7;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #0a47d6;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-info h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .contact-info, .contact-form {
    padding: 30px 20px;
  }

  .contact-info h1 {
    font-size: 26px;
  }

  input, textarea, button {
    font-size: 14px;
  }
}



/* contact */


