/* Navbar Start */
#nav-header {
      background:#f7f7f7;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 0.6rem 1rem;
    }

    /* Brand Section */
    .brand-wrap {
      display: flex;
      align-items: center;
    }
    .brand-logo img {
      height: 55px;
      width: auto;
      border-radius: 8px;
    }
    .brand-text {
      margin-left: 12px;
      line-height: 1.3;
    }
    .brand-name {
      font-size: 1.25rem;
      font-weight: 600;
      color: #222;
    }
    .tagline-short {
      font-size: 0.95rem;
      color: #0066cc;
      font-weight: 500;
    }
    .tagline-long {
      font-size: 0.82rem;
      color: #555;
    }

    /* Nav Items */
    .navbar-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem; /* spacing between items */
    }
    .navbar-nav .nav-link {
      position: relative;
      font-weight: 500;
      color: #333 !important;
      padding: 0.5rem 0.75rem;
      transition: color 0.3s ease;
    }
    .navbar-nav .nav-link:hover {
      color: #0066cc !important;
    }
    /* Underline Hover Effect */
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0%;
      height: 2px;
      background-color: #0066cc;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    .navbar-nav .nav-link:hover::after {
      width: 80%;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .brand-text .tagline-long {
        display: none;
      }
      .brand-logo img {
        height: 45px;
      }
    }
    @media (max-width: 575px) {
      .brand-text {
        display: none;
      }
    }
/* Navbar End */
 /* Hero Section */
    .hero-section {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
    }
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6); /* dark overlay */
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      margin: auto;
      padding: 20px;
    }
    .hero-content h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
    }
    .hero-content p {
      font-size: 1.1rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
      color: #e0e0e0;
    }
    .hero-buttons .btn {
      padding: 0.8rem 1.6rem;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
    .hero-buttons .btn:hover {
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 1.9rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
    }
    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 1.6rem;
      }
      .hero-buttons {
        flex-direction: column;
        gap: 12px;
      }
    }
    /* Hero Section End */
/* About Section Start */

.about {
  padding: 80px 0;
  background: #f9f9f9;
}

.about h1 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.about h5 {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* About Image */
.about-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease-in-out;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* About Para (Cards) */
.about-para {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin: 15px 0;
  text-align: center;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.about-para:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
}

/* Icon Styling */
.about-icon {
  font-size: 36px;
  color: #007bff; /* Bootstrap primary */
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.about-para:hover .about-icon {
  color: #28a745; /* Success green on hover */
}

/* Headings inside cards */
.about-para h6 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Paragraph inside cards */
.about-para p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .about h1 {
    font-size: 32px;
  }
  .about h5 {
    font-size: 18px;
  }
  .about-para {
    padding: 20px;
  }
}

/* About Section End */
/* Services Section Start */
/* Section Title */
.section-title {
  color: #0097b2;
  font-size: 40px;
  font-weight: 700;
}

.section-subtitle {
  color: #145f7a;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 750px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icons */
.icon-box {
  font-size: 60px;
  color: #2ec3d6;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.service-card:hover .icon-box {
  color: #145f7a;
}

/* Headings */
.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Paragraphs */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .icon-box {
    font-size: 50px;
  }
}
/* Services Section End */
/* Why choose Us */
.alt-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.alt-card:hover {
  background: #2ec3d6; /* Hover background */
  color: #fff;         /* Change text color for contrast */
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.alt-card:hover h5,
.alt-card:hover p {
  color: #fff; /* Ensure headings & text turn white */
}

.alt-card:hover .icon-circle {
  background: #fff; /* Flip icon circle to white */
}

.alt-card:hover .icon-circle i {
  color: #2ec3d6; /* Icon becomes brand color */
}



.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #2ec3d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.icon-circle i {
  color: #fff;
  font-size: 1.3rem;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* End */
/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.testimonial-box {
  max-width: 700px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  line-height: 1.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0d6efd;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End */
.explore-ops {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
  }
  .explore-ops .card { border-radius: 12px; }
  .benefits-list li { margin-bottom: 0.6rem; font-size: 1rem; color: #444; }

  .feature-card {
    background: linear-gradient(180deg, rgba(46,195,214,0.06), rgba(20,95,122,0.03));
    border-radius: 12px;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
    box-shadow: 0 6px 18px rgba(6, 24, 40, 0.06);
  }
  .feature-card .icon i { color: #2ec3d6; }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(6, 24, 40, 0.12);
    background: linear-gradient(90deg, rgba(46,195,214,0.12), rgba(20,95,122,0.06));
  }

  /* Buttons */
  .btn-primary { background: #2ec3d6; border: none; }
  .btn-primary:hover { background: #1faab6; }
  .btn-outline-success { border-radius: 999px; }

  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .explore-ops .card { padding: 18px; }
    .feature-card { min-height: 110px; }
  }
.success-stories {
    background: linear-gradient(135deg, #f7f9fb, #ffffff);
  }
  .story-card {
    border-radius: 14px;
    position: relative;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  .quote-icon {
    font-size: 28px;
    color: #2ec3d6;
    margin-bottom: 10px;
  }
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  .author h6 {
    color: #145f7a;
  }
  
  .main-footer a {
    text-decoration: none; /* removes underline */
  }
  .main-footer a:hover {
    color: #2ec3d6; /* optional: nice hover color */
    text-decoration: none; /* ensure underline doesn’t reappear */
  }
