/*speciality*/

  /*  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f0f4f8;
      color: #333;
    }*/

    section {
      background-color: #f9fbff;
    /*  padding: 60px 0;*/
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1 {
      text-align: center;
      font-size: 36px;
      color: #1d3557;
      margin-bottom: 10px;
    }

    .subtitle {
      text-align: center;
      color: #555;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 16px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .card img {
      height: 50px;
      width: 50px;
      margin-bottom: 20px;
    }

    .card h3 {
      font-size: 18px;
      color: #e63946;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      color: #444;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .button {
      display: inline-block;
      background-color: #1d3557;
      color: #fff;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 14px;
      transition: background-color 0.3s;
      text-align: center;
    }

    .button:hover {
      background-color: #457b9d;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 28px;
      }
    }

    /*speciality*/



    /*testimonials*/


       /* body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f8fafc;
    }*/

    .testimonial-section {
    background:rgb(255, 255, 255);
      padding: 60px 20px;
    }

    .container2 {
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-heading {
      text-align: center;
      font-size: 36px;
      font-weight: bold;
      color: #1d3557;
      margin-bottom: 50px;
      position: relative;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .testimonial-box {
      background: #ffffff;
      display: flex;
      align-items: center;
      border-radius: 16px;
      padding: 30px 25px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      gap: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .testimonial-box img {
      width: 80px;
      height: 80px;
      /*border-radius: 50%;*/
      object-fit: cover;
      border: -1px solid #1d3557;
    }

    .testimonial-text h5 {
      margin-top: 12px;
      font-size: 16px;
      font-weight: 600;
      color: #1d3557;
    }

    .testimonial-text p {
      margin: 0;
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      position: relative;
    }

    .testimonial-text p::before {
      content: "“";
      font-size: 32px;
      color: #a8dadc;
      position: absolute;
      top: -20px;
      left: -15px;
    }

    .swiper-pagination {
      margin-top: 30px;
    }

    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }

    @media (max-width: 768px) {
      .testimonial-box {
        flex-direction: column;
        text-align: center;
      }

      .testimonial-box img {
        margin-bottom: 10px;
      }

      .testimonial-text p::before {
        top: -10px;
        left: 0;
      }
    }

    /*testimonials*/


  /*Why*/


.why-choose-section {
  background: #f0f4f8;
  padding: 60px 20px;
}

.why-choose-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 28px;
  color: #1d3557;
  margin-bottom: 30px;
}

.why-choose-section h2 span {
  color: #e63946;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  font-size: 16px;
  color: #333;
}

.features-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.features-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #2a9d8f;
}

.cta-button {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #1d3557;
}

.book-btn {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #d62839;
}

@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
  }

  .why-choose-section h2 {
    font-size: 24px;
  }
}

/*Why*/


/* youtube*/

  /*  body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #1d3557;
    }*/

    .video-testimonial-section {
      padding: 60px 20px;
      text-align: center;
    }

    .video-testimonial-section h2 {
      font-size: 30px;
      margin-bottom: 30px;
    }

    .video-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .video-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      max-width: 500px;
      flex: 1 1 400px;
    }

    .video-box h4 {
      margin: 10px 0 5px;
      font-size: 16px;
      color: #222;
    }

    .video-box p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 */
      height: 0;
      overflow: hidden;
      border-radius: 8px;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .video-box {
        max-width: 100%;
      }

      .video-testimonial-section h2 {
        font-size: 24px;
      }
    }

/*youtube*/



/*FQA*/


   /*body {
      font-family: 'Segoe UI', sans-serif;
      background: #f8fafc;
      color: #333;
      margin: 0;
      padding: 0;
    }*/

    section.faq-section {
      padding: 60px 20px;
    }



    .container1 {
     max-width: 1200px;
      margin: 0 auto;
  display: flex;
  align-items: stretch; /* ⬅ This is important */
  gap: 40px;
  
}

.faq-image {
  flex: 1 1 45%;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/*.faq-image {
  flex: 1 1 45%;
  display: flex;
  align-items: stretch;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
   /* .faq-image {
      flex: 1 1 45%;
     /* min-width: 300px;
     width:500px;
    }

    .faq-image img {
      max-width: 100%;
      border-radius: 15px;
    }*/

    .faq-content {
      flex: 1 1 50%;
    }

    .faq-content h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #1d3557;
    }

    details {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 15px 20px;
      margin-bottom: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    summary {
      font-weight: bold;
      font-size: 16px;
      color: #e63946;
      list-style: none;
      position: relative;
    }

    summary::marker {
      display: none;
    }

    details[open] summary::after {
      content: "−";
      position: absolute;
      right: 0;
      font-weight: bold;
    }

    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      font-weight: bold;
    }

    details p {
      margin-top: 10px;
      font-size: 14px;
      color: #444;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .container1 {
        flex-direction: column;
      }

      .faq-content h2 {
        font-size: 24px;
        text-align: center;
      }
    }



/*banner*/




	* {box-sizing: border-box;}

	body {font-family: Verdana, sans-serif;}

	.mySlides {display: none;}

	img {vertical-align: middle;}



	/* Slideshow container */

	.slideshow-container {

	  max-width: 100%;

	  position: relative;

	  margin: auto;

	}



	/* Caption text */

	.text {

	  color: #f2f2f2;

	  font-size: 15px;

	  padding: 8px 12px;

	  position: absolute;

	  bottom: 8px;

	  width: 100%;

	  text-align: center;

	}



	/* Number text (1/4 etc) */

	.numbertext {

	  color: #f2f2f2;

	  font-size: 12px;

	  padding: 8px 12px;

	  position: absolute;

	  top: 0;

	}



	/* The dots/bullets/indicators */

	.dot {

	  height: 15px;

	  width: 15px;

	  margin: 0 2px;

	  background-color: #717171;

	  border-radius: 50%;

	  display: inline-block;

	  transition: background-color 0.6s ease;

	}



	.active {

	  background-color: white;

	}



	/* Fading animation */

	.fade {

	  animation-name: fade;

	  animation-duration: 5.0s;

	}



	@keyframes fade {

	  from {opacity: .4} 

	  to {opacity: 1}

	}



	/* On smaller screens, decrease text size */

	@media only screen and (max-width: 300px) {

	  .text {font-size: 11px}

	}


  .hero-section {
    background-color: #fff;
    padding: 60px 20px 80px; /* Extra bottom space added */
    position: relative;
    z-index: 1;
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-text {
    flex: 1 1 500px;
    min-width: 300px;
  }

  .tagline {
    color: #d6336c;
    text-transform: uppercase;
    font-weight: 600;
  margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .hero-text {
  text-align: left; /* ✅ aligns all text left */
}



  .hero-text h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #212529; 
    alignment:left;
    text-align: left; /* ✅ aligns all text left */
  }

  .description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
  }

  .hero-image {
    flex: 1 1 400px;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 30px 15px 50px;
  }

  .hero-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 20px;
  }

  .hero-text {
    flex: 1 1 100%;
    padding: 10px;
    text-align: left;
  }

  .tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d6336c;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .hero-text h1 {
    font-size: 1.1rem;           /* 👈 Smaller size for mobile */
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 200;
    color: #212529;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
  }

  .hero-image {
    flex: 1 1 100%;
    padding: 10px;
    text-align: left;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
}



  .info-cards {
  background-color:rgb(255, 255, 255);
  padding: 60px 20px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  flex: 1 1 300px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/*.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
*/
.card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 5px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d2a5c;
  margin-bottom: 15px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #162d59;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0f1f3d;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 500px;
  }
}

.icon {
  font-size: 40px;
  color: #162d59;
  margin-bottom: 20px;
  display: inline-block;
}











/*banner*/
/* ============ LAYOUT ============ */
.hero{
  position:relative; overflow:hidden;
  height:var(--hero-h);
  background:#000;
 /* border-radius:20px;*/
 
}
.hero__viewport{ height:100%; position:relative }
.hero__track{
  display:flex; height:100%;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.hero__slide{
  position:relative; min-width:100%; height:100%;
}
.hero__media{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
}
/*.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}*/

/* ============ CONTENT ============ */
.hero__content{
  position:absolute;
  inset:0;                  /* पूरे banner को cover */
  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertical center */
  align-items:center;       /* horizontal center */
  text-align:center;

  max-width:100%;
  margin:auto;
  color:#fff;
  z-index:2;
  gap:1rem;

  /*background:rgba(0,0,0,0.35); /* हल्का overlay */
  padding:20px;
  /*border-radius:16px;
  backdrop-filter: blur(3px);*/
}

/* Title, subtitle, button styling */
.hero__title{
  margin:0;
  font-size:clamp(24px,4vw,46px);
  font-weight:800;
}
.hero__subtitle{
  margin:0;
  font-size:clamp(14px,2.2vw,20px);
  opacity:.95;
}
.hero__btn{
  display:inline-block;
  background:#e63946; /* button color change कर सकते हैं */
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:12px 20px;
  border-radius:12px;
  transition:all .2s ease;
}
.hero__btn:hover{ background:#d62828; transform:translateY(-2px); }



/* Center */
.hero__content.center{
  justify-content:center;
  align-items:center;
  text-align:center;
}

/* Left */
.hero__content.left{
  justify-content:center;
  align-items:flex-start;
  text-align:left;
  padding-left:40px;
}

/* Right */
.hero__content.right{
  justify-content:center;
  align-items:flex-end;
  text-align:right;
  padding-right:40px;
}

/* Bottom center */
.hero__content.bottom{
  justify-content:flex-end;
  align-items:center;
  text-align:center;
  padding-bottom:40px;
}



/* ============ NAV & DOTS ============ */
.hero__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:42px; height:42px; border-radius:50%;
  border:0; cursor:pointer; z-index:3;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(2px);
  font-size:26px; line-height:42px; text-align:center;
}
.hero__nav--prev{ left:10px } .hero__nav--next{ right:10px }
.hero__nav:hover{ background:#fff }

.hero__dots{
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:10px; display:flex; gap:8px; z-index:3;
}
.hero__dots button{
  width:10px; height:10px; border-radius:999px; border:0;
  background:rgba(255,255,255,.55); cursor:pointer;
}
.hero__dots button[aria-selected="true"]{ background:#fff; width:22px }



/* ===== MOBILE (≤720px) CLEAN & CONTROLLABLE ===== */
@media (max-width: 720px){

  /* 1) Control yahi 2 variables se:
     --hero-ar-mobile: aspect ratio (width:height)
     --hero-fit: cover = full-bleed (light crop), contain = no-crop
  */
  .hero{
    --hero-ar-mobile: 16/9;      /* ← change to 4/3, 3/2, 9/16, etc. */
    --hero-fit: cover;           /* cover | contain */
    width: 100%;
    aspect-ratio: var(--hero-ar-mobile);
    height: auto;                /* aspect-ratio will control height */
  /*  border-radius: 14px;
    overflow: hidden;
    background: #0000;   */        /* transparent */
  }
  
  
  .hero__media{ object-position: center top; }

  /* make inner fill parent */
  .hero__viewport,
  .hero__track,
  .hero__slide{ height: 100%; }

  /* IMG responsive according to container */
  .hero__media{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: var(--hero-fit); /* cover = fill, contain = no-crop */
    object-position: center;     /* change to 'center top' if needed */
    display: block;
  }

  /* gradient only at bottom (optional) */
 /* .hero__overlay{
    position: absolute; left:0; right:0; bottom:0; height:40%;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
    pointer-events: none;
  }*/

  /* content center & compact */
  .hero__content{
    position:absolute; inset:0;
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    text-align:center; gap:.5rem; max-width:92%; margin:auto;
  /*  padding:12px; border-radius:12px; background: rgba(0,0,0,.28);
    backdrop-filter: blur(2px);*/
  }
  .hero__title{ font-size: clamp(18px,5vw,24px); line-height:1.25; margin:0 }
  .hero__subtitle{ font-size: clamp(13px,3.6vw,16px); margin:0; opacity:.95 }
  .hero__btn{ padding:10px 16px; border-radius:10px; font-weight:700 }

  /* smaller controls */
  .hero__nav{ width:34px; height:34px; font-size:20px }
  .hero__dots button{ width:8px; height:8px }
}

.hero{ --hero-ar-mobile: 4/3; }     /* taller */
.hero{ --hero-ar-mobile: 3/2; }     /* medium */
.hero{ --hero-ar-mobile: 16/9; }    /* standard widescreen */
















