 /* General */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .container {
      width: 90%;
      margin: auto;
    }

    /* Topbar */
    .topbar {
      background: #00457e;
      color: #fff;
      font-size: 14px;
      padding: 6px 20px;
    }
    .topbar-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .contact-info span {
      margin-right: 20px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .social-icons a {
      color: #fff;
      margin-left: 12px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #ffcc00;
    }

   /* Header/Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.brand img {
  height: 80px;
}

/* Navbar */
.navbar {
  display: flex;
}
.nav-menu {
  display: flex;
  list-style: none;
}
.nav-menu li {
  position: relative;
}
.nav-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-menu a:hover {
  color: #00457e;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  list-style: none;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  display: block; /* Desktop hover */
}
.dropdown-menu li a {
  padding: 10px 16px;
  color: #333;
}
.dropdown-menu li a:hover {
  background: #f4f4f4;
  color: #00457e;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* Desktop dropdown: hover works */
.dropdown:hover .dropdown-menu {
  display: block;
}
/* Responsive Navbar */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .navbar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease; /* smooth slide */
    width: 100%;
    background: #fff;
  }

  .navbar.active {
    max-height: 600px; /* adjust if you have more menu items */
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .nav-menu li {
    border-bottom: 1px solid #ddd;
  }

  .dropdown.active .dropdown-menu {

    position: static;
    box-shadow: none;
  }

  /* Disable hover behavior on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Only show when clicked (active class) */
  .dropdown.active .dropdown-menu {
    display: block;
  }
}


    /* Carousel */
    .carousel {
      position: relative;
      width: 100%;
      height: 80vh;
      /* min-height: 300px;
      max-height: 800px; */
      overflow: hidden;
    }
    .slides {
      position: relative;
      height: 100%;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .slide.active {
      opacity: 1;
      z-index: 1;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }
    .caption {
      position: absolute;
      text-align: left;
      top: 50%;
      left: 20%;
      transform: translate(-50%,-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      padding: 12px 20px;
      border-radius: 6px;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      max-width: 90%;
    }
    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }
    .controls span {
      cursor: pointer;
      font-size: 32px;
      color: #fff;
      user-select: none;
      transition: color 0.3s;
    }
    .controls span:hover {
      color: #ffcc00;
    }
    .indicators {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: background 0.3s;
    }
    .dot.active {
      background: #ffcc00;
    }

    @media (max-width: 768px) {
      .carousel { height: 50vh; }
      .caption { font-size: 1rem; padding: 8px 14px; }
    }
    @media (max-width: 480px) {
      .carousel { height: 40vh; }
      .caption { font-size: 0.9rem; padding: 6px 12px; bottom: 20px; }
      .controls span { font-size: 24px; }
    }

    /* Services Section */
    .services {
      position: relative;
      padding: 120px 20px;
      background: url('BG-3-V1.png') no-repeat center center / cover;
      background-attachment: fixed;
      color: #222;
      text-align: center;
      overflow: hidden;
    }
    .services::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.85);
      z-index: 0;
    }
    .services::after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 120px;
      background: url('https://svgshare.com/i/uGS.svg') repeat-x;
      background-size: cover;
      z-index: 1;
    }
    .services .container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      /* margin: auto; */
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .service-box {
      background: #fff;
      /* padding: 30px; */
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .service-box .icon{
      font-size: 40px;
      color: #00457e;
      margin-bottom: 15px;
    }
    .service-box:hover {
      transform: translateY(-8px);
    }
    .service-box h3 {
      color: #00457e;
      margin-bottom: 12px;
    }
.service-box .btn{
  margin-top: 10px;
  margin-bottom: 10px;
  background: #2b7bff;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
    .decor{
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }

    /* Stats Section */
    .stats {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      padding: 40px 20px;
      background: #f9f9f9;
      flex-wrap: wrap;
    }

    .stat-box {
      text-align: center;
    }

    .stat-box i {
      font-size: 40px;
      color: #00457e;
      margin-bottom: 10px;
    }

    .stat-box h2 {
      font-size: 28px;
      margin: 0;
      color: #00457e;
    }

    .stat-box p {
      margin: 5px 0 0;
      font-size: 16px;
    }

    /* Contact Form */
    .contact-form {
      background: #00457e;
      padding: 20px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .contact-form input {
      padding: 10px;
      border: none;
      border-radius: 4px;
      flex: 1 1 200px;
    }

    .contact-form button {
      background: #2b7bff;
      border: none;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background: #1a5ed1;
    }

    /* Logo Slider */
    .logo-slider {
      overflow: hidden;
      position: relative;
      padding: 20px;
      background: #fff;
    }

    .logo-track {
      display: flex;
      animation: scroll 15s linear infinite;
    }

    .logo-track img {
      height: 60px;
      margin: 0 30px;
      object-fit: contain;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Contact Us Button */
    .cta {
      text-align: center;
      padding: 30px;
    }

    .cta button {
      background: #2b7bff;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
    }

    .cta button:hover {
      background: #1a5ed1;
    }

    /* Message */
    .message {
      text-align: center;
      padding: 15px;
      display: none;
    }

    .success {
      color: green;
    }

    .error {
      color: red;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .stats {
        flex-direction: column;
        gap: 20px;
      }
      .logo-track img {
        height: 40px;
        margin: 0 15px;
      }
    }
.footer {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h5, .footer h6 {
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff;
}
/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive text alignment */
@media (max-width: 768px) {
  .topbar .contact-info {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .topbar .social-icons {
    margin-top: 10px;
  }
  .services .service-box {
    margin-bottom: 20px;
  }
}

/* Stats Section: Center on small devices */
@media (max-width: 576px) {
  .stats {
    flex-direction: column;
    text-align: center;
  }
}
.footercontainer{
  width: 90%;
  margin: auto;
}
/* .footer-main{
  max-width: 1700px;
  margin: auto;
  background: #000;
} */

 


