  body {
  font-family: "Roboto Slab", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    }
    p{
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        color: #000;
    }
    
    /* ===== FIX RIGHT WHITE SPACE ON MOBILE ===== */
@media (max-width: 576px) {

  html, body {
    overflow-x: hidden;   /* removes horizontal white scroll */
  }

  .services-sec .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-pill {
    width: 100%;          /* pill full width */
    margin-left: 0;
    margin-right: 0;
    transform: none !important; /* remove hover shift overflow */
  }
}


    /* ===== TOP BAR ===== */
    .top-bar {
     
      padding: 12px 0;
    }

    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar img {
  
        width: 360px;
    }

    .contact-info {
      color: #1f4a8a;
      font-weight: 500;
      font-size: 16px;
    }

    .contact-info i {
      margin-right: 6px;
    }

    /* ===== NAVBAR ===== */
    .custom-navbar {
      background: #1f4a8a;
      border-radius: 50px;
      margin: 9px auto;
      width: 85%;
      padding: 12px 30px;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-size: 18px;
      margin: 0 18px;
      font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
      color: #d6e4ff !important;
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
      width: 320px;
      border: none;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
      padding: 0;
    }

    .dropdown-item {
      padding: 14px 22px;
      font-size: 17px;
      border-bottom: 1px solid #ccc;
    }

    .dropdown-item:last-child {
      border-bottom: none;
    }

    .dropdown-item:hover {
      background: #f2f2f2;
    }

    /* ===== DESKTOP HOVER ===== */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 991px) {
      .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .custom-navbar {
        width: 95%;
        border-radius: 20px;
      }
    }

/* ===== HERO BANNER ===== */
.hero-banner {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  line-height: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  
}

/* ===== Tablet ===== */
    @media (max-width: 991px) {
  .hero-banner {
    margin-top: 5px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ===== Large Desktop ===== */
@media (min-width: 1200px) {
  .hero-img {
    max-height: 550px;
    object-fit: cover;
  }
}
/* ===== ABOUT SECTION ===== */
.about-sec {
  background: #eef3f7;
  padding: 80px 0;
}

/* Image box */
.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-box img {
  width: 492px;
  border-radius: 20px;
}

/* Experience badge */
.exp-badge {
  position: absolute;
  bottom: 5px;
  right: 20px;

  background: #ffffff;
  padding: 4px 41px 18px 27px;

  display: flex;
  align-items: center;
  gap: 12px;

  /* main curved shape */
  border-radius: 40px 40px 40px 0;

  /* double border effect */
  border: 2px solid #2e5c86;
  outline: 3px solid #ffffff;

  /* shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* icon style */
.exp-icon {
  font-size: 28px;
  color: #1aa39a;
}

/* text */
.exp-text h4 {
  margin: 0;
  font-size: 28px;
  color: #1aa39a;
  font-weight: 700;
}

.exp-text p {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-family: "Roboto Slab", serif;
}


/* Titles */
.about-small-title {
  color: #1f4a8a;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #1f4a8a;
  width: 10px;
  animation: typing 3s steps(20) infinite alternate,
             blink 0.7s infinite;
}

.about-main-title {
  color: #1aa39a;
  margin: 15px 0 20px;
  font-weight: 700;
}

/* Points */
.about-points {
  list-style: none;
  padding: 0;
  font-weight: 600;
}

.about-points li {
  margin-bottom: 8px;
}

/* Description */
.about-desc {
  margin-top: 15px;
  color: #333;
  line-height: 1.7;
}

/* Buttons */
.about-btns {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-learn {
  background: #1f4a8a;
  color: #fff;
}

.btn-book {
  color: #1aa39a;
  font-weight: 600;
}

/* ===== TYPING ANIMATION ===== */
@keyframes typing {
  from { width: 8% }
  to { width: 13% }
}

@keyframes blink {
  50% { border-color: transparent }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .about-sec {
    padding: 50px 0;
    text-align: center;
  }

  .about-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .exp-badge {
    position: static;
    margin-top: 15px;
    justify-content: center;
  }
}
.about-points li{
        font-size: 20px;
        font-weight: 700;
        color: #000 !important;
        font-family: "Mukta", sans-serif !important;
        line-height: 33px !important;
}

/* ===== SECTION BG ===== */
.services-sec {
  background: #204a8a;
  padding: 80px 0;
  color: #fff;
}

/* ===== TITLE ===== */
.services-title h6 {
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  width: fit-content;
  margin: auto;
  animation: typing 3s steps(20) infinite alternate, blink .7s infinite;
}

.services-title h2 {
  margin: 10px 0;
  font-weight: 700;
}

.divider {
  width: 200px;
  height: 2px;
  background: #fff;
  margin: 15px auto 40px;
  position: relative;
}

.divider::after {
  content: "»";
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
}

/* ===== SERVICE PILLS ===== */
.service-pill {
  background: #fff;
  color: #000;
  /* padding: 12px 20px; */
  border-radius: 50px;
  display: flex;
  font-size: 19px !important;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: none;
  transition: .3s;
}

.service-pill img {
  width: 80px;
  height: 80px;
  border-radius: 50%;      /* makes perfect circle */
  object-fit: cover;       
  
  /* padding: 12px;           inside spacing */
}


.service-pill:hover {
  transform: translateX(8px);
  background: #fff;
}

/* ===== CENTER IMAGE ===== */
.center-img {
  max-width: 373px;
  animation: float 4s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

@keyframes float {
  0%,100% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
}


/* ===== MOBILE ONLY FIX ===== */
@media (max-width: 991px) {

  /* section spacing reduce */
  .services-sec {
    padding: 50px 0;
  }

  /* columns gap control */
  .services-sec .row {
    row-gap: 25px;
  }

  /* center image resize */
  .center-img {
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }

  /* service pills spacing */
  .service-pill {
    margin-bottom: 15px;
    padding: 10px 14px;
  }

  /* icon smaller */
  .service-pill img {
    width: 45px;
    height: 45px;
    padding: 8px;
  }
}


/* ===== SMALL MOBILE EXTRA FIX ===== */
@media (max-width: 576px) {

  .services-sec {
    padding: 40px 0; /* bottom space remove */
  }

  .center-img {
    max-width: 250px;
  }
}
@media (max-width: 576px) {

  .about-sec {
    padding-bottom: 0 !important;
  }

  .services-sec {
    margin-top: 0 !important;
    padding-top: 30px;
  }

  /* extra invisible gap remove */
  body, section {
    margin: 0;
    padding: 0;
  }
}
/* ===== SECTION ===== */
.why-sec {
  background: #eff9ff;
  padding: 80px 0;
}

/* TITLES */
.small-title {
  color: #204a8a;
  font-weight: 600;
}

.main-title {
  color: #2aa79b;
  font-weight: 700;
  margin: 10px 0;
}

.divider {
  width: 180px;
  height: 2px;
  background: #000;
  margin: 15px 0 30px;
  position: relative;
}

/* .divider::after {
  content: "»";
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  font-size: 22px;
} */

/* ===== WHY ITEMS ===== */
.why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

/* vertical timeline line */
.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #204a8a;
}

/* ICON */
.why-icon {
  min-width: 60px;
  height: 60px;
  background: #2aa79b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* TEXT */
.why-item h5 {
  color: #11408d;
  font-weight: 700;
        font-family: "Mukta", sans-serif !important;

}

.why-item p {
  margin: 5px 0 0;
  color: #000;
}

/* ===== RIGHT IMAGES ===== */
.why-img-wrap {
  position: relative;
  padding-left: 40px;
}

.img-main {
  width: 100%;
  border-radius: 20px;
}

.img-small {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 45%;
  border-radius: 10px;
  border: 6px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

  .why-sec {
    padding: 60px 0;
    text-align: center;
  }

  .why-item {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .why-item::before {
    display: none;
  }

  .why-img-wrap {
    margin-top: 40px;
    padding-left: 0;
  }

  .img-small {
    position: static;
    width: 70%;
    margin-top: 15px;
  }
}
/* small typing */
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #204a8a;
  animation: typing 3s steps(25) infinite alternate,
             blink 0.7s infinite;
}

/* main title reveal */
.typing-main {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.5s;
}

/* keyframes */
@keyframes typing {
  from { width: 0 }
  to { width: 50% }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== SECTION ===== */
.testimonial-sec {
  background: #2aa79b;
}

/* left image */
.testimonial-img {
  width: 750px;
  height: 530px;
  object-fit: cover;
}

/* right side */
.testimonial-right {
  padding: 80px 40px;
  color: #fff;
}

/* testimonial box */
.testimonial-box {
  background: #e9e9e9;
  color: #000;
  padding: 25px;
  border-radius: 20px;
  max-width: 480px;
  margin: 20px auto;
  text-align: left;
}

.testimonial-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* bullets */
.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* mobile */
@media (max-width: 991px) {
  .testimonial-right {
    padding: 50px 20px;
  }
}
.footer {
  background: #2a8f88;
  color: #fff;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.footer p {
  line-height: 1.8;
  font-size: 15px;
}

.footer h3 {
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
}

.footer h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer ul li i {
  margin-right: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.social-icons a:first-child {
  background: #3b5998;
}

.social-icons a:last-child {
  background: #ff0000;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #257b75;
  font-size: 15px;
}

.footer-bottom span {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}
  .dev-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.dev-link:hover {
  text-decoration: underline;
}




.gallery-sec {
  padding: 60px 0;
  background: #f5f5f5;
}

.gallery-container {
  width: 90%;
  margin: auto;
}

/* Desktop */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.4s ease;
}

/* Hover Effect */
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 300px;
  }
}


.omx-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
        width: 53%;
 
}
.omx-dividers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
        width: 24%;
 
}
.omx-divider .line {
    flex: 1;
    height: 1px;
    width: 10px;
    background: #343333;
}

.omx-divider .icon {
    font-size: 24px;
    color: #1f4690; /* Blue icon */
}
.omx-dividers .lines {
    flex: 1;
    height: 1px;
    width: 10px;
    background: #fff;
}