
:root{
  --primary:#2563EB;
  --secondary:#3B82F6;
  --dark:#1E3A8A;
  --light:#EFF6FF; 
  --verylight:#E3F2FD;
  --soft:#EFF6FF;
  --muted:#E3F2FD;
  --white:#FFFFFF;
  --black:#000000;
}
body{
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:#e5e7ee;;
  color:var(--black);
  overscroll-behavior: none; scroll-behavior: smooth;
}

.page-loader{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:var(--white);z-index:1050;}
.page-loader.hidden{display:none;}
.navbar-brand img{filter: none;}
.banner{border-radius:10px; overflow:hidden;}
.service-cards{padding-bottom:8px;}
.hover-zoom{transition:transform .28s ease, box-shadow .28s ease;}
.hover-zoom:hover{transform:translateY(-6px); box-shadow:0 10px 30px rgba(0,0,0,0.08);}
.mobile-drawer{position:fixed;left:0;top:0;height:100%;width:100%;display:none;z-index:2000;}
.mobile-drawer .drawer-content{width:50%;max-width:420px;height:100%;background:#fff;box-shadow:6px 0 30px rgba(0,0,0,0.15);overflow:auto;}
#mobile-drawer.active{display:block;}
.drawer-link{display:block;color:var(--dark);text-decoration:none;}
.site-footer{background:var(--primary) !important;}
.site-footer a{color:var(--light);text-decoration:none;}
.site-footer p{color:var(--lverylight);text-decoration:none;}
.site-footer h6{color:var(--verylight);text-decoration:none;}
.site-footer a:hover {
    color: var(--dark);                     /* Hover color (same as theme blue) */        /* Underline on hover */
    padding-left: 4px;   
}
#scrollTop{position:fixed;right:18px;bottom:18px;display:none;border-radius:50%;z-index:9999;}
@media(max-width:991px){
  .navbar-collapse{display:none !important;}
  .navbar-toggler{display:block !important;}
  .mobile-drawer .drawer-content{width:40%;}
}



/* --------------------------
   NEW NAVBAR STYLE (Your Code)
---------------------------*/
.header{
  background:linear-gradient(90deg,var(--light),var(--verylight));
  position:sticky;
  top:0;
  z-index:999;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo a{
  text-decoration: none;
  color: var(--deep);

}

.logo img{
  height:52px;
  width:52px;
  border-radius:10px;
}
.logo img a{
  height:52px;
  width:52px;
  border-radius:10px;
}



.site-title{
  font-weight:700;
  color:var(--deep);
  font-size:20px;
}
.site-title a{
  font-weight:700;
  color:var(--deep);
  font-size:20px;
  text-decoration: none;
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-links a{
  color:var(--deep);
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
}

.nav-links a:hover,
.nav-links a.active{
  background:transparent;
  border-bottom:3px solid var(--primary);
  color:var(--primary);
}

/* Modern Carousel Wrapper */
.modern-carousel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 28px rgba(0,0,0,0.10);
  height: 500px;
  max-height: 500px;
  position: relative;
}

/* Images */
.modern-carousel .carousel-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Captions (clean + modern) */
.caption-modern {
  bottom: 18%;
  text-align: left;
  width: 60%;
  padding-left: 20px;
}

.caption-modern h2 {
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0px 3px 12px rgba(0,0,0,0.4);
}

.caption-modern p {
  font-size: 16px;
  margin-top: 8px;
  text-shadow: 0px 3px 12px rgba(0,0,0,0.4);
}

/* Rounded arrow buttons */
.modern-carousel .carousel-control-prev,
.modern-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.modern-carousel .arrow-icon {
  filter: invert(1);
  width: 38px;
  height: 38px;
}

/* Indicators */
.modern-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

.modern-carousel .carousel-indicators .active {
  width: 22px;
  border-radius: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .modern-carousel {
    height: 360px;
    max-height: 360px;
  }
  .modern-carousel .carousel-img {
    height: 360px;
  }
  .caption-modern {
    width: 80%;
    bottom: 12%;
  }
  .caption-modern h2 {
    font-size: 22px;
  }
}

/* blog pages */
 /* ✅ Blog Layout */
    .blog-section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 50px;
      align-items: flex-start;
      padding: 40px 60px;
    }

    .blog-content img {
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
      margin-bottom: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .blog-content h2 {
      font-weight: 700;
      color: #042D53;
      margin-bottom: 25px;
    }

    .blog-content h3 {
      font-weight: 700;
      color: #0b3d91;
      margin-top: 40px;
      margin-bottom: 15px;
    }

    .blog-content p {
      margin-bottom: 15px;
      font-size: 1.05rem;
      color: #444;
    }

    /* ✅ Related Articles */
    .related-articles {
      position: sticky;
      top: 120px;
    }

    .related-articles h4 {
      font-weight: 700;
      color: #042D53;
      margin-bottom: 25px;
    }

    .related-item {
      background: #f7faff;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
      transition: 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      cursor: pointer;
    }

    .related-item:hover {
      transform: translateY(-4px);
      background: #e8f3ff;
    }

    .related-item img {
      border-radius: 8px;
      width: 100%;
      height: 140px;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .related-item h6 {
      color: #0b3d91;
      font-weight: 600;
      font-size: 1rem;
    }

    /* ✅ Responsive */
    @media (max-width: 992px) {
      .blog-section {
        grid-template-columns: 1fr;
        padding: 50px 5%;
      }

      .related-articles {
        position: relative;
        top: 0;
      }
    }

    .btn-add-to-cart{
      background-color: var(--p1);
    }


/* Value Cards */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 100%;

  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.value-card h4 {
  color: #222;
  margin-top: 15px;
  font-size: 1.2rem;
  text-align: center;
  font-size: 24px;
}

.value-card p {
  color: #555;
  text-align: center;
  padding: 0 15px;
  line-height: 1.5;
}

/* end about value card */

