body,
html {
  margin: 0;
  padding: 0;
  
}


html {
  scroll-behavior: smooth;


}

:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
Navbar styles
.navbar {
  /* font-family: 'Arial', sans-serif; */
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  word-spacing: 5px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-brand {
  /* font-family: 'Poppins', sans-serif; */
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: whites;
  letter-spacing: 1px;
}
.navbar-brand:hover {
  background-color: transparent !important;
  color: inherit !important;
  text-decoration: none !important;
}



.hover-nav a {
  color: #007BFF; /* Base color */
  padding: 5px 10px;
  border-radius: 5px;
  transition: 
    background-color 0.3s ease, 
    color 0.3s ease, 
    box-shadow 0.3s ease;
  text-decoration: none;
}

.hover-nav a:hover {
  /* background-color: #0056b3; Darker blue for smooth effect */
  /* box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4); */
  transform: translateY(-2px);
  cursor: pointer;


    color: #ffc107 !important; /* or your desired highlight color */
    /* font-weight: bold; */
    border-bottom: 2px solid #ffc107;
}

.nav-link.active {
    color: #ffc107 !important; /* or your desired highlight color */
    font-weight: bold;
    border-bottom: 2px solid #ffc107;
}

.navbar.scrolled {
    background-color: #37517e !important; /* Blue */
    transition: background-color 0.3s;
}
.navbar {
    transition: background-color 0.3s;
}
/* ...existing code... */
.navbar.scrolled a,
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .navbar-toggler {
    color: #fff !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}
/* ...existing code... */


/* Mega menu container */
.mega-dropdown {
  position: relative;
}

.mega-dropdown .mega-menu {
  position: absolute;
  top: 100%;
   left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  background-color: #1d1d1d;
  display: none;
  z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

/* Fix spacing and icon alignment */
.mega-menu ul li {
  padding: 8px 0;
  font-size: 14px;
}

.mega-menu ul li i {
  margin-right: 8px;
  color: #00aced;
}

.mega-menu h6 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

/* Optional: adjust navbar */
.navbar .nav-link {
  font-weight: 500;
  text-transform: uppercase;
}


.body-img {
  /* background-color: #f0f8ff; */
  padding: 4rem 0;
  min-height: 80vh;
}

.body-img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.position-relative {
  position: relative;
}

.overlay-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  border-radius: 15px;
  padding: 1.5rem;
   text-align: left;
}

.overlay-text .text-box {
  color: black;
}

.overlay-text .btn {
  background-color: #007bff;
  border: none;
}



.font-st {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 1000;
  color: white;
  /* or #fcb900 */
  font-size: 2rem;

}


.text-box h2 {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .text-box h2 {
    font-size: 1.6rem;
  }

  .text-box {
    width: 100%;
    margin: auto;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-box {
  animation: fadeSlideUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0; /* required to work with animation */
}

.text-box .font-st {
  animation: fadeSlideUp 1.4s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
  display: inline-block;
}

.text-box p {
  animation: fadeSlideUp 1.6s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}

.text-box a.btn {
  animation: fadeSlideUp 1.8s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

/* Logo section */
.logo-row img {
  width: 100%;
  height: 85px;
  object-fit: contain;
  border-radius: 20px;
  background-color: white;
  padding: 10px;
}
/* logo */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}


/* About us */

 .about-section {
  background-color: whitesmoke;
  padding: 60px 20px;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: box-shadow 0.3s;
}

.about-img:hover {
  box-shadow: 0 0 10px rgba(0, 140, 186, 0.5);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text ul {
  padding-left: 0;
}

.about-text li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1rem;
} 
/* service page */





.services-section {
  background-color: lightwhite;
  color: white;
  padding: 30px 0;
}


.services-section h1 {
  text-align: center;
  margin-bottom: 50px;
  
  font-size: 2.5rem;
  color: #37517e;
  position: relative;
}

.services-section h1::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 200px;
  object-fit: contain;
}

.fixed-img {
  width: 100%;
  height: 240px;
  /* Or whatever fixed height you want */
  object-fit: cover;
  /* Keeps aspect ratio but fills the space */
  object-position: center;
}


.icon-wrapper img {
  width: 60px;
  height: 60px;
}

.btn-orange {
  background-color: #37517e;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
}

.btn-orange:hover {
  background-color: #37517e;
  color: white;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  background-color: #37517e;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}
.carousel-indicators [data-bs-target] {
  background-color: #ccc; /* Inactive */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 4px;
  border: none;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: #111028d3; /* Active */
  width: 14px;
  height: 14px;
}


/* form page */



.bg-teams {
  background-color: rgba(220, 230, 241, 0.95);
}

/* .testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonial-section > .container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
 */


/* Navigation Buttons */
/* .testimonial-nav-btn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonial-nav-btn.left {
  left: 10px;
}

.testimonial-nav-btn.right {
  right: 10px;
}

.testimonial-nav-btn:hover {
  background-color: #e05a00;
  color: white;
  border-color: #e05a00;
} */

/* 🔁 Responsive Design */
/* @media (max-width: 768px) {
  .testimonial-nav-btn {
    top: auto;
    bottom: -30px;
  }

  .testimonial-nav-btn.left {
    left: 25%;
  }

  .testimonial-nav-btn.right {
    right: 25%;
  }

  .testimonial-card {
    width: 90%;
    margin: 0 auto;
  }
} */


.hero-section {
  background-color: #f8f9fa;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230d2340' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,186.7C960,213,1056,235,1152,218.7C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E"); */
  background-position: bottom;
  background-size: cover;
  padding: 80px 0;
}

.hero-box {
  max-width: 960px;
  margin: auto;
}

.form-control {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 8, 0.25);
  border-color: #ff6b08;
}

.btn-submit {
  background-color: #37517e;
  border-color: #37517e;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  width: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #37517e;
  border-color: #37517e;
 
}

/* footer page */

.footer {
  background-color: #37517e; /* Light blue */
  color: #000000; /* Black text */
  padding-top: 6rem;
  padding-bottom: 2rem;
  margin-top: -5rem;
  position: relative;
}

.footer h4,
.footer h6 {
  color: white; /* Black headings */
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer a {
  color: white; /* Black links */
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #333333; /* Darker on hover */
}

.footer .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white; /* Black logo text */
  margin-bottom: 1rem;
}

/* Social Icons */
.footer .fs-4 i {
  color: white;
  transition: transform 0.3s ease;
}

.footer .fs-4 i:hover {
  transform: scale(1.2);
  color: #333333;
}

/* Arrow Button (if needed for carousels) */
.arrow-btn {
  width: 40px;
  height: 40px;
  background-color: #37517e;;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow-left {
  left: 5px;
}

.arrow-right {
  right: 20px;
}



/* experience button */
  .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    #scrollBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 18px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollBtn:hover {
  background-color: #37517e;
  transform: translateY(-2px);
}

.unline h1::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}