
body {
      margin: 0;
       /* space for sticky header */
    }

    .header {
      background: #f5f5f5;
      padding: 10px 20px;
      transition: 0.3s;
      z-index: 999;
    }

    /* Sticky */
    .header.sticky {
      position: fixed;
      top: 0;
      width: 100%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .logo img {
      height: 60px;
    }

    .social-icons a {
      width: 35px;
      height: 35px;
      background: #0d3b82;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 5px;
      text-decoration: none;
    }

    .contact-text {
      font-size: 14px;
      margin-left: 15px;
    }

    .btn-enroll {
      background: #0d3b82;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 500;
    }

    .btn-enroll:hover {
      background: #092c63;
      color: #fff;
    }

    /* Mobile */
    @media (max-width: 991px) {
      .center-section {
        text-align: center;
      }

      .contact-text {
        margin-left: 0;
        margin-top: 8px;
      }
    }










/*banner css*/
.hero {
      background: linear-gradient(to right, #000000 30%, #0d47a1 100%);
      color: #fff;
      
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;

    }

    /* Brick pattern overlay (optional) */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://www.transparenttextures.com/patterns/brick-wall.png');
      opacity: 0.1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .hero h1 span {
      color: #4da3ff;
    }

    .hero p {
      color: #ccc;
      max-width: 500px;
      margin-top: 15px;
    }

    .btn-custom {
      margin-top: 25px;
      background: #fff;
      color: #000;
      padding: 10px 11px 10px 25px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      text-decoration: none;
    }

    .btn-custom .arrow {
      background: #0d47a1;
      color: #fff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-img {
      position: relative;
      z-index: 2;
      max-width: 100%;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero {
        text-align: center;
        padding: 50px 20px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        margin: 10px auto;
      }

      .btn-custom {
        justify-content: center;
      }
    }






    .why-choose-section {
  padding: 50px 0;
}

/* LEFT BOX */
.left-box {
  background: #eaeaea;
  border-radius: 20px;
  padding: 30px;
}

.left-box h3 {
  font-weight: 500;
  margin-bottom: 25px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  white-space: nowrap;
}

/* Tag styles */
.tag.filled {
  background: #0d3b82;
  color: #fff;
}

.tag.outline {
  border: 1px solid #0d3b82;
  color: #0d3b82;
  background: transparent;
}

/* MIDDLE BOX */
.info-box {
  border-radius: 20px;
  padding: 30px;
}

.info-box h2 {
  font-size: 40px;
  font-weight: 700;
}

.info-box p {
  margin-top: 10px;
  font-size: 14px;
}

.info-box.blue {
  background: linear-gradient(to right, #0d3b82, #0a2c5e);
  color: #fff;
}

.info-box.light {
  background: #eaeaea;
  color: #333;
}

/* RIGHT IMAGE */
.image-box {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .left-box,
  .info-box {
    text-align: center;
  }

  .tags {
    justify-content: center;
  }
}


.contact-section {
  padding: 70px 0;
  background: linear-gradient(to right, #0a2c5e, #0d3b82);
}

/* LEFT */
.sub-text {
  letter-spacing: 1px;
  opacity: 0.8;
}

.heading {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.2;
}

.heading span {
  color: #6ea8ff;
}

.desc {
  max-width: 500px;
  color: #d0d0d0;
}

.icon {
  font-size: 22px;
}

/* RIGHT FORM */
.form-box {
  background: #eaeaea;
  padding: 30px;
  border-radius: 20px;
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background: #dcdcdc;
  outline: none;
}

/* BUTTON */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d3b82;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
}

.btn-submit .arrow {
  background: #fff;
  color: #0d3b82;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .heading {
    font-size: 32px;
  }

  .contact-section {
    text-align: center;
  }

  .desc {
    margin: auto;
  }
}


.approach-section {
  padding: 70px 0;
  background: #fff; /* ✅ white background */
}

/* HEADING */
.sub-title {
  color: #0d3b82;
  letter-spacing: 2px;
  font-size: 13px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}

/* CARD */
.approach-card {
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  background: #f3f3f3;
}

/* BLUE CARD */
.approach-card.blue {
  background: linear-gradient(to bottom, #0d3b82, #0a2c5e);
  color: #fff;
}

/* ICON */
.icon-box {
  width: 80px;
  height: 80px;
  background: #fff; /* ✅ white icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.icon-box img {
  width: 40px;
}

/* TEXT */
.approach-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 14px;
  color: #666;
}

.approach-card.blue p {
  color: #ddd;
}

/* HOVER */
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: linear-gradient(to bottom, #0d3b82, #0a2c5e);
  color:#FFF;
}
.approach-card:hover p{color: #FFF;}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 26px;
  }
}



.offer-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  color: #FFF;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.active-card::after {
  background: rgba(0, 60, 150, 0.6);
}

.arrow2 {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: black;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Carousel dots */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}

.carousel-indicators .active {
  background-color: #007bff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .overlay {
    font-size: 16px;
  }
}

.carousel-indicators [data-bs-target] {
   
    width: 10px!important;
    height: 10px!important;}




/* Titles */
.small-title {
  letter-spacing: 2px;
  font-size: 14px;
  color: #777;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
}

/* Contact Box */
.contact-box {
  background: #0d3b82;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.contact-box h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-box p {
  opacity: 0.9;
  font-size: 15px;
}

.contact-btn {
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 10px 10px 10px 20px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn span {
  background: #0d3b82;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accordion */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: #eee;
  border-radius: 15px;
  padding: 20px;
  font-weight: 600;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #e0e0e0;
  box-shadow: none;
}

.custom-accordion .accordion-body {
  background: #f9f9f9;
  padding: 20px;
  font-size: 14px;
}

/* Remove default arrow */
.accordion-button::after {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .contact-box {
    padding: 25px;
  }
}




.testimonial-section {
  padding: 50px;
}



/* LEFT SIDE */
.video-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-item {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item.active {
  border: 3px solid #fff;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px;
  border-radius: 50%;
}

/* RIGHT SIDE */
.testimonial-box {
  flex: 1;
  background: linear-gradient(135deg, #0a2c6d, #113d8d);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
      min-height: 520px;
}

.testimonial-box h2 {
  font-size: 28px;
  line-height: 1.4;
}

.testimonial-box p {
  margin-top: 20px;
  color: #cfd8ff;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 15px;
}

/* BOTTOM */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.stars {
  color: gold;
  font-size: 20px;
}

.nav button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 10px;
}

.nav button:hover {
  background: #fff;
  color: #000;
}



/* SECTION */
.subscribe-section {
  background: #dcdcdc;
  padding: 80px 20px;
  text-align: center;
}

/* TEXT */
.subscribe-section h2 {
  font-size: 42px;
  color: #0b2e6b;
  margin-bottom: 15px;
}

.subscribe-section p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* FORM */
.form-box2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.newemail{ width:80%!important; }


/* INPUT */
.input-group {
  display: flex;
  align-items: center;
  background: #FFF;
  border-radius: 50px;
  padding: 10px 20px;
  width: 400px;
}

.input-group .icon {
  background: #0b2e6b;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: #333;
}

/* BUTTON */
.submit-btn {
  background: #0b3b8f;
  color: #fff;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #082c6c;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .input-group {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
  }
}


input[type="email"] {
    width: 100%;
}



/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0b2e6b, #0d3f91);
  color: #fff;
  padding: 60px 40px 20px;
  font-family: Arial, sans-serif;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* COLUMN */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
  color: #d6e3ff;
}

.footer-col .address {
  margin-bottom: 15px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #d6e3ff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 20px;
  }
}

.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col i {
  color: #ffb400; /* yellow icon like your design */
  font-size: 16px;
}
.testimonial-box p {
    min-height: 160px;
}
.starline{ width:60%; height:1px; display:block; background:#FFFFFF; float:left;  min-width: 300px; margin-top: 16px; margin-right: 15px;}