 body {
      font-family: Arial, sans-serif;
      padding: 0 50px;
      background-color: #fff;
    }

  

/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 9999;
  overflow: hidden;
}

#preloader-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
} */

    /* Logo section */
    .header-logo {
      display: flex;
      align-items: center;
      padding: 22px 0 25px 0px;
    }

    .header-logo img {
      width: 55px;
      margin-right: 10px;
    }

    .header-logo h1 {
      font-size: 20px;
      margin: 0;
      color: #043564 !important;
      /* color: #0b2c6b; */
    }

    .header-logo h1 small {
      display: block;
      color: #02989A !important;
      /* color: #0ca678; */
      font-weight: normal;
    }
 /* ========== nav bar================= */
      /* Navbar styles */
.navbar {
  background-color: #043564;
  border-radius: 15px;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  position: relative;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 0;
  text-decoration: none;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100% !important;
  height: 2px;
  background-color: #fff;
}

.contact-btn {
  background-color: #fff !important;
  color: #043564 !important;
  padding: 6px 23px !important;
  border-radius: 25px !important;
  font-weight: 500;
  border: none;
  margin-right: 10px;
}

@media (max-width: 768px) {
  /* Smaller underline for active nav item */
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 25% !important; /* reduced underline width */
    height: 1.0px;
    background-color: #fff;
  }

  /* Centered "Contact Us" button */
  .contact-btn {
    display: block;
    margin: 1px auto 10px auto; 
    background-color: #fff !important;
    color: #073b63 !important;
    border-radius: 15px;
    padding: 4px 15px !important;
    font-weight: 500 !important;
    border: none;
  }
}
/* ========about us===== */
/* About Us Banner */
.about-banner {
  background-color: #043564;
  border-bottom-left-radius:20px ;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
   border-top-right-radius: 20px;
  text-align: left;
  padding-left: 40px;
  margin-top: 50px;
}

.about-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 1.2rem;
  margin: 0;
}
/* ======= out story======= */
/* Our Story */
.our-story-section h3 {
  font-size: 2.5rem;
  color: #043564 !important;
}

.our-story-section p {
  font-size: 1rem;
  line-height: 1.7;
}

.badge {
  font-size: 0.85rem;
}
/* ❌ REMOVE padding from container-fluid */
.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.our-story-section .badge {
  background-color: #0ca678 !important; /* ✅ Custom green */
  color: #ffffff !important;            /* ✅ White text */
}


/* ======= our mission and vision========= */
/* Reuse same container padding for alignment */
.custom-container {
  padding-left: 2rem;   /* Match with .our-story-section */
  padding-right: 2rem;
}

/* Box styling */
.mission-vision-section .info-box {
  background-color: #043564;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mission-vision-section .info-box:hover {
  transform: translateY(-5px);
}
/* Mission Box Styling */
.info-box {
  background-color: #043564;
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
}

/* Heading inside the box */
.info-box h5 {
  color: #ffffff;
  font-weight: 400 !important ;
  font-size: 1.5rem;
}

/* Paragraph inside the box */
.info-box p {
  color: #cacaca !important; /* light gray text */
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ========= our core values=============== */
/* Core Values Section */
.core-values-section {
  background-color: #043564;
  color: #ffffff;
  border-radius: 30px;
  margin-bottom: 70px;
}

.core-left-box h3 {
  font-size: 2.2rem;
}

.core-left-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.core-img {
  width: 100%;
  height: 500px; /* or adjust as needed */
  object-fit: cover; /* ensures it fills the box neatly */
  display: inline-block;
  border-radius: 15px;
  margin-top: 30px;
}



/* Right Cards */
.value-card {
  background-color: #ffffff;
  color: #043564;
  border-radius: 15px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* Card hover */
.value-card:hover {
  transform: translateY(-5px);
}

/* Icon Styling */
.icon-box {
  width: 40px;
  height: 40px;
  background-color: #02989A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* Text inside card */
.value-card h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Equal height/width for all cards */
.fixed-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
/* ========= footer========== */
.footer-section {
  background-color: #073763; /* Navy blue */
  margin-top: 50px;
  /* margin-bottom: 5px; */
  border-radius: 10px 10px 0 0;
}

.footer-section h5 {
  font-size: 1.25rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link {
  color: #d1d1d1;
  text-decoration: none;
}
.footer-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hello-class{
    padding-left: 45px !important;
}
/* ==================== mobile view section========== */
/* ========= 1) navbar and logo section========== */
@media (max-width: 768px) {
  /* Smaller underline for active nav item */
  body {
      font-family: Arial, sans-serif;
      padding: 0 20px;
      background-color: #fff;
    }

    /* Smaller underline for active nav item */
   .header-logo img {
      width: 50px;
      margin-right: 10px;
    }

    .header-logo h1 {
      font-size: 19px;
      margin: 0;
      color: #043564 !important;
      /* color: #0b2c6b; */
    }
     .navbar-collapse {
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-nav .nav-item {
    /* margin: 8px 0; */
  }

  .contact-btn {
    margin-top: 5px;
  }
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 150% !important; /* reduced underline width */
    height: 1.0px;
    background-color: #fff;
    
  }

  /* Centered "Contact Us" button */
  .contact-btn {
    display: block;
    margin: 1px auto 10px auto; /* centers the button */
    background-color: #fff !important;
    color: #073b63 !important;
    border-radius: 15px;
    padding: 4px 15px !important;
    font-weight: 500 !important;
    border: none;
  }
 /* Force white toggler icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Optional: make toggler background transparent and remove border */
.navbar-toggler {
  border: none !important;         /* Remove black border */
  background-color: transparent;   /* Optional: if you don't want grey bg */
  box-shadow: none !important;     /* Prevent any auto shadow/border */
}


}
/* ========= 2) mobile view of about us section ===*/
@media (max-width: 768px) {
  .about-banner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    /* padding-top: 1px !important; */
    /* padding-bottom: 1px !important; */
    margin-top: 20px !important;
     border-bottom-left-radius:10px ;
  border-top-left-radius: 65px;
  border-bottom-right-radius: 65px;
   border-top-right-radius: 10px;
  }

  .about-banner h2 {
    font-size: 1.6rem !important;
  }

  .about-banner p {
    font-size: 1rem !important;
  }
}
/* ============ 3) mobile view for our story section========= */
@media (max-width: 768px) {
  .our-story-section h3 {
    font-size: 1.6rem !important;

  }

  .our-story-section p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* .our-story-section img {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important; 
    object-fit: cover;
  } */
   .our-story-section img {
    margin-top: 20px;
width: 100% !important;
    height: 350px !important; 
    object-fit: cover !important; 
  }
}
/* ===========mobile view  our mission and vision section===== */
@media (max-width: 768px) {
  .custom-container {
  padding-left: 0.95rem !important;   /* Match with .our-story-section */
  padding-right: 0.95rem !important;
}
 .mission-vision-section .row.g-5 {
    --bs-gutter-x: 1.5rem !important; 
    --bs-gutter-y: 1.5rem !important; 
  }
 section.mission-vision-section.py-5  {
    
    padding-top: 1.3rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mission-vision-section .info-box {
    margin-bottom: 1rem !important; /* ✅ Reduce gap between mission & vision */
  }

  .mission-vision-section .info-box h5 {
    font-size: 1.6rem !important; /* ✅ Heading size */
  }

  .mission-vision-section .info-box p {
    font-size: 0.95rem !important; /* ✅ Paragraph size */
    line-height: 1.6 !important;
  }
}
/* ===============mobile view of core values=== */
@media (max-width: 768px) {
  /* Reduce top/bottom spacing (py-3) */
  section.core-values-section.py-5 {
    padding-top: 0.5rem !important;   /* py-3 = 1rem */
    padding-bottom: 2.0rem !important;
  }

  /* Reduce container padding (px-2) */
  .core-values-section .container-fluid {
    padding-left: 0.5rem !important;   /* px-2 */
    padding-right: 0.5rem !important;
  }
 /* Reduce inner padding in text box */
  .core-left-box {
    padding: 1rem !important;
  }

  /* Heading font size */
  .core-left-box h3 {
    font-size: 1.6rem !important;
  }

  /* Paragraph font size */
  .core-left-box p {
    font-size: 0.95rem !important;
    /* padding-bottom: 10px !important; */
  }

  /* Display full image with adjusted height */
  .core-img {
  width: 100% !important;
    height: 280px !important;         /* Increased height */
    object-fit: cover !important;     /* Ensures full image fits */
    border-radius: 12px;
    display: block;
  }
  /* 5. Reduce top padding between 2nd and 3rd card */
  .core-values-section .row > .col-md-6.pt-5 {
    padding-top: 1rem !important;  /* Instead of pt-5 (3rem), use 1rem */
  }

  /* Optional: Make sure cards have consistent spacing */
  .value-card {
    margin-bottom: 1rem !important;
  }
}

/* ========= mobile view of footer section======= */
@media (max-width: 768px) {
  .footer-section {
    margin: 0 !important;         /* Removes top and bottom spacing */
    padding: 1rem 1.2rem !important; /* Reduce inner padding for mobile */
    border-radius: 0 !important;  /* Optional: remove rounded corners on mobile */
     border-top-left-radius: 10px !important;
     border-top-right-radius: 10px !important;
  }

  .footer-section .container-fluid {
    padding: 0 !important;        /* Removes default Bootstrap horizontal padding */
  }

  .footer-section .row {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hello-class{
    padding-left: 0.5px !important;
}
}

