

  :root{--brand:#11a141;--accent:linear-gradient(90deg,#2563eb,#7c3aed);}    
    body{font-family:Inter,ui-sans-serif,system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;}
    .hero{background:radial-gradient(1200px 400px at 10% 10%, rgba(37,99,235,0.08), transparent), linear-gradient(180deg,#ffffff,#f8fbff);}
    .glass{background:rgba(255,255,255,0.7);backdrop-filter:blur(6px);box-shadow:0 6px 20px rgba(17,24,39,0.06);border-radius:12px}
    .feature-icon{width:56px;height:56px;display:grid;place-items:center;border-radius:12px;background:rgba(37,99,235,0.06);}
    .cta-btn{background:var(--brand);color:#fff;border:none}
    .cta-btn:hover{background:#003366;color:#fff;border:none}
    .price-card{border-radius:12px;border:1px solid rgba(15,23,42,0.04)}
    .trusted-logos img{opacity:.6;filter:grayscale(60%);height:34px;margin:0 20px}
    .mockup{border-radius:12px;box-shadow:0 30px 60px rgba(2,6,23,0.12)} 
    footer{font-size:.9rem}
    @media(min-width:992px){ .hero{padding-top:6rem;padding-bottom:6rem}} 
    .display-5 { line-height: 2.9rem;}

h1{ color: #003366; font-weight: 600 !important; } 
h2, h3{ color: #003366; font-weight: 400 !important; }


#bannerCarousel h1{ color: #f0f7ff; font-weight: 600 !important; } 
#bannerCarousel h2, h3{ color: #f5faff; font-weight: 400 !important; }

h1, h2, h3, .display-5 {
  font-family: 'Poppins', sans-serif;
}

.lead{ color: #e0efff; }
.Count-Box {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem 0rem 0rem;
  border-radius: 1rem;
}

.Count-Box span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b7280;
  min-width: 100px;
}

.Count-Box div {
  text-align: center;
  padding: 0.5rem 1rem;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.Count-Box div:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
  border-radius: 0.75rem;
}

.Count-Box h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #2563eb;
  margin: 0;
}

.Count-Box p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  margin-top: 0.25rem;
}
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(200px * 20); /* adjust width = logo width * total logos */
  animation: scroll 40s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.testimonial-card img {
  object-fit: cover;
  border: 2px solid #2563eb;
}

.carousel-indicators [data-bs-target] {
  background-color: #2563eb; /* blue dots */
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators {
  gap: 8px;
}
.price-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Individual colors per plan */
.price-card .color01 {
  color: #10b981; /* Green for Starter */
}

.price-card .color02 {
  color: #2563eb; /* Blue for Pro */
}

.price-card .color03 {
  color: #9333ea; /* Purple for Enterprise */
}


/* New Style price  */

.price-card {
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.08);
  transition: all 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 rgba(37,99,235,0.0);
  animation: pulse-glow 1.5s ease-out forwards;
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 rgba(37,99,235,0.0); }
  50%  { box-shadow: 0 8px 24px rgba(37,99,235,0.15); }
  100% { box-shadow: 0 12px 28px rgba(37,99,235,0.10); }
}


/* End style  */




.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* adjust */
  margin: 0 auto;
}

.mockup-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mockup-wrapper img.active {
  opacity: 1;
  position: relative;
}


/* .feature-list .feature-item {
  cursor: pointer;
  padding: 0.5rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.feature-list .feature-item.active {
  color: #2563eb;
  font-weight: 600;
  border-left: 3px solid #2563eb;
  background: rgba(37,99,235,0.05);
  border-radius: 6px;
} */


.feature-list .feature-item {
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 6px;
  }
  .feature-list .feature-item:hover {
    background: rgba(37, 99, 235, 0.05);
    border-left: 3px solid #93c5fd;
  }
  .feature-list .feature-item.active {
    color: #2563eb;
    font-weight: 600;
    border-left: 3px solid #2563eb;
    background: rgba(37, 99, 235, 0.08);
  }

  .mockup-wrapper {
    position: relative;
    min-height: 380px;
  }
  .mockup-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .mockup-wrapper img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    position: relative;
    z-index: 2;
  }

  .mockup-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mockup-wrapper img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  position: relative;
  z-index: 2;
}
.feature-list .feature-item.active {
  animation: pulseHighlight 1s ease;
}
@keyframes pulseHighlight {
  0% { background-color: rgba(37,99,235,0.1); }
  100% { background-color: rgba(37,99,235,0.08); }
}


  <style>
    body.dark-mode {
      background-color: #121212;
      color: #e0e0e0;
      font-weight: 400;
    }

    body.dark-mode .card {
      background-color: #1e1e1e;
      color: #e0e0e0;
    }

    .section-title {
      font-weight: 600;
      margin-bottom: .5rem;
    }

    .form-label.required::after {
      content: " *";
      color: red;
    }

    #complaintList {
      max-height: 250px;
      overflow-y: auto;
    }


    .header-section {
      background: linear-gradient(135deg, #0d998d, #13bfb1);
      color: #fff;
      padding: 5px 20px;
      text-align: left;
      border-radius: 6px 6px 0 0;
    }

    .header-section h1 {
      font-size: 28px;
      font-weight: bold;
      margin: 0;
    }

    .header-section p {
      font-size: 18px;
      margin: 0;
    }

    .logo {
      font-size: 32px;
      font-weight: bold;
      color: #fff;
    }

    h3 {
      color: #04746b;
      margin-top: 25px;
      font-weight: 600;
    }

    p {
      color: #253f3d;
    }

    .content-box {
      background: #f0f8fc;
      padding: 25px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      color: #1e283b;
    }

    .sidebar-box {
      background: #f5fffe;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .sidebar-box h3 {
      color: #04746b;
      font-weight: 400;
      margin-bottom: 15px;
    }

    .content-box h3 {
      color: #0e8f85;
      font-weight: 400;
      margin-bottom: 15px;
      margin-top: 0;
    }

    .sidebar-box h5,
    .card h5 {
      color: #0e8f85;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .list-group-item {
      color: #1e283b;
    }

    .sidebar-box ul {
      padding-left: 20px;
    }

    .sidebar-box ul li {
      margin-bottom: 6px;
    }

    .list-group {
      padding-left: 0px !important;
    }

    .member-card {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s;
    }

    .member-card strong {
      color: #0e8f85;
      font-weight: 400;
    }

    .ist-group-item:hover {
      background-color: #f8f9fa;
    }

    .contact-info {
      font-size: 0.9rem;
      padding-left: 0rem;
    }

    .rotate {
      transition: transform 0.3s ease;
    }

    .rotate.down {
      transform: rotate(180deg);
    }

    .gallery-item {
      text-align: center;
      margin-bottom: 20px;
    }

    .gallery-title {
      margin-top: 8px;
      font-weight: 500;
      color: #444;
    }

    .gallery-item img {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item img:hover {
      transform: scale(1.05);
    }


    .highlight-animated {
      position: relative;
      border-radius: 18px;
      padding: 16px 20px;
      background: #ffffff;
      border: 1px solid #dee2e6;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    }

    .highlight-animated::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      z-index: -1;
      background: linear-gradient(90deg, #0d6efd, #6f42c1, #d63384, #0d6efd);
      background-size: 300% 100%;
      animation: moveBorder 8s linear infinite;
      filter: blur(12px);
      opacity: .25;
    }

    @keyframes moveBorder {
      to {
        background-position: 300% 0;
      }
    }

    .btn-glow {
      border-radius: 14px;
      position: relative;
      overflow: hidden;
    }

    .btn-glow::after {
      content: "";
      position: absolute;
      inset: -2px;
      background: radial-gradient(300px 100px at var(--mx, 50%) 50%, rgba(0, 0, 0, .05), transparent 40%);
      transition: 120ms ease;
      pointer-events: none;
    }

    .notice-card {
      background: #d2ebff;
      border:0px solid #dee2e6;
      border-radius: 16px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    }

    .badge-priority {
      font-weight: 600;
    }

    .badge-high {
      background: #dc3545;
    }

    .badge-medium {
      background: #ffc107;
      color: #212529;
    }

    .badge-low {
      background: #198754;
    }

    .btn-primary {
      background-color: #13bfb1;
      border-color: #13bfb1;
    }


    .footer {
      background: #ecf7f6;
      /* Dark navy/blue */
      color: #ddd;
      font-size: 14px;
    }

    .footer h6,
    .footer h5 {
      font-weight: 600;
      color: #0e8e82;
    }

    .footer p {
      color: #809492;
      font-size: 13px;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      color: #2b5652;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 13px;
    }

    .footer-links a:hover {
      color: #68a8a2;
      /* White on hover */
    }

    .social-icon {
      display: inline-block;
      margin-right: 10px;
      font-size: 18px;
      color: #107bad;
      transition: color 0.3s;
    }

    .social-icon:hover {
      color: #fff;
    }

    .footer-bottom {
      background: #07152a;
      /* Darker shade */
      color: #809492;
      font-size: 13px;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      padding: 12px 15px;
      font-size: 22px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background 0.3s;
    }

    .whatsapp-float:hover {
      background: #1ebe5d;
      color: #fff;
    }



    .gallery img {
      cursor: pointer;
      transition: transform 0.3s;
      border-radius: 8px;
      height: 150PX; overflow: hidden;
      width: 100%;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    .caption {
      font-size: 0.9rem;
      margin-top: 4px;
      text-align: center;
    }
    /* Lightbox Styling */
    .lightbox-content {
      position: relative;
      background: transparent;
      border: none;
      text-align: center;
    }
    .lightbox-img {
      max-height: 75vh;
      width: auto;
      object-fit: contain;
      border-radius: 8px;
    }
    .lightbox-title {
      margin-top: 12px;
    }
    .lightbox-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      z-index: 1051;
    }
    .lightbox-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2.5rem;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
     
      z-index: 1051;
    }
    .lightbox-arrow:hover {
        color: rgb(255, 255, 255);
    }
    .arrow-left {
      left: 20px;
    }
    .arrow-right {
      right: 20px;
    }


 * {box-sizing:border-box;margin:0;padding:0;}
  body {font-family:sans-serif;}

  /* Sticky header */
  header {
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,.1);
    position:sticky;
    top:0;
    z-index:1000;
  }

  
  /* Logo + Title */
  .brand {display:flex;align-items:center;gap:0.6rem; margin: 10px 0px;}
  .logo {height:50px;}
  .title {font-weight:700;font-size:1.2rem;}

  /* Menu */
  nav ul {display:flex;gap:1rem;list-style:none;align-items:center; margin:10px 0px;}
  nav a {text-decoration:none;color:#222;padding:.5rem 0;transition:color .3s;}
  nav a:hover {color:#5452c7;}
  .btn-complain {background:#282a88; color:#fff !important; padding:.4rem .8rem;border-radius:4px;font-weight:600;}
  .btn-complain:hover {background:#172b57;}

  /* Hamburger */
  .hamburger {display:none;font-size:1.5rem;background:none;border:none;cursor:pointer;transition:transform .3s;}

  /* Responsive */
  @media(max-width:768px){
      .brand {
        display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex-direction: column;

      }
  .logo {height:50px;}
  .title {font-weight:500;font-size:.65rem;}
    .hamburger {display:block;}
    nav {width:100%;order:1;}
    nav ul {
      flex-direction:column;
      max-height:0;
      overflow:hidden;
      transition:max-height .4s ease-in-out;
      gap:0;
      background:#fff;
      border-top:1px solid #ddd;
      width:100%;
    }
    nav ul.show {max-height:500px;} /* Smooth slide-down */
    nav a {padding:.6rem 1rem;}
    .btn-complain {margin:0.5rem 1rem;}
  }
    
 .logo {
  height: 45px;
}

.title {
  font-weight: 600;
  font-size: 16px;
}

.main-nav ul {
  list-style: none;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 991px) {
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .main-nav.show {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 15px;
  }
}


/* =========================
   ICC POLICY SECTION
========================= */

.policy-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.policy-section .section-header h3 {
  font-weight: 700;
  color: #198754; /* Bootstrap success */
}

.policy-section .section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* Policy Card */
.policy-card {
  background: #ffffff;
  border-left: 5px solid #198754;
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0)}


  /* =========================
   COMPLAINT PAGE
========================= */

.complaint-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.complaint-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.section-title {
  font-weight: 600;
  color: #198754;
  margin-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 6px;
}

.form-label {
  font-weight: 500;
}

.form-control {
  border-radius: 6px;
}

.form-control:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.25);
}

@media (max-width: 768px) {
  .complaint-card {
    padding: 20px;
  }
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 6px;
  color: #555;
}


.caption {
  font-size: 0.9rem;
  color: #555;
}

a[data-lightbox] img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

a[data-lightbox] img:hover {
  transform: scale(1.05);
}

.contact-table {
  border-radius: 10px;
  overflow: hidden;
}

.contact-table thead {
  background: linear-gradient(90deg, #0d6efd, #198754);
  color: #fff;
}

.contact-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  background-color: #107bad;
}

.contact-table td {
  vertical-align: middle;
  font-size: 0.95rem;
}

.contact-table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background 0.3s ease;
}
