
:root {
  --primary: #2596be;
  --dark: #043864;
  --light-bg: #f5f7fa;
}

/* Base */
body {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  z-index: 0;
  background-color: #f5f7fa;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: 'Poppins', sans-serif;
}
.colorboxone
{
    background:#2596be!important;

}
.colorboxtwo
{
   background-color:#1dd2c8!important;
}
.colorboxthree
{
    background-color:#4baabc!important;
 }
/* ===== BACKGROUND PATTERN (FINAL WORKING) ===== */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: url('./bacteria-pattern.png') repeat;
  background-size: 280px;

  opacity: 1;
}

/* Topbar */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

.social-icon {
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--primary);
}

/* Navbar */
.navbar {
  border-bottom: 2px solid rgba(0,0,0,0.05);
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero */
.hero {
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(4, 56, 100, 0.75),
    rgba(37, 150, 190, 0.65)
  );
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
}

/* Section Titles */
.section-title {
  color: var(--dark);
  font-weight: 700;
}

/* Cards */
.card-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-6px);
}

/* Product Section */
.product-section {
  background: rgba(37, 150, 190, 0.08);
}

/* Buttons */
.btn-custom {
  background: #fff;
  color: var(--dark);
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-custom:hover {
  background: var(--primary);
  color: #fff;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
}

.logo-img {
  height: 60px;
}

/* Buttons */
.btn-contact {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact:hover {
  background: var(--dark);
  color: #fff;
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: var(--dark);
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-custom:hover {
  background: #fff;
  color: var(--dark);
}

.icolor {
  /*color: #2596be;*/
  color:#ffffff;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.9);
}

/* Light Sections */
.bg-light {
  background-color: rgba(245, 247, 250, 0.9) !important;
}

/* Benefits */
.benefit-card {
  padding: 30px 20px;
  height: 100%;
  border-radius: 6px;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Counter */
.counter-box {
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Buttons spacing */
.btn-group-custom a {
  margin: 5px;
}
.btn-outline-custom {
  border: 2px solid #ffffff;
  color: var(--primary);
  background: transparent;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}
/* ===== Map Background Section ===== */
.map-section {
  position: relative;
  overflow: hidden;

  background: url('./map.png') center center no-repeat;
  background-size: cover;
}

/* White overlay for readability */
.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(255, 255, 255, 0.85); /* adjust 0.75â€“0.9 */
  z-index: 0;
}

/* Keep content above overlay */
.map-section .container {
  position: relative;
  z-index: 1;
}

.image-box {
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

section {
  transition: all 0.6s ease;
}

[data-aos] {
  transform: scale(0.98);
}

[data-aos].aos-animate {
  transform: scale(1);
}


/* Dropdown Menu */
/* Dropdown Menu */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

/* Keep dropdown visible on hover */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Items */
.dropdown-item {
  padding: 12px 20px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  background: #fff;
}

/* Thin bottom border for every item */
.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Hover Effect */
.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
}
/* Fixed Navbar */
/* Fixed Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Fixed Navbar below topbar */
.navbar {
  position: fixed;
  top: 40px; /* adjust according to topbar height */
  left: 0;
  width: 100%;
  z-index: 9998;
  background: #fff;
}
.abt-img
{
  float:left;
  padding:20px;
  
}
.abtimg
{
 height:350px;
}
/* Prevent content overlap */
body {
  padding-top: 120px;
}

/*******************************************/

.product-details-section {
    background: #f8fafc;
}

.product-details-section .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.product-details-section .card:hover {
    transform: translateY(-5px);
}

.benefit-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.benefit-list li:last-child {
    border-bottom: none;
}