:root{
  --accent: #1AA68C;
  --nav-text: #000000;
  --nav-bg: #ffffff;
  --dropdown-bg: #ffffff;
}

/* Basic reset */
* { box-sizing: border-box; }
body {
  margin: 0;
 font-family: "Poppins", sans-serif !important;  ;
  background: #fff;
}


.navbar {
  background: var(--nav-bg);
  padding: .6rem 1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Brand */
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-right: .5rem;
}
.brand-text { font-weight:700; color:var(--nav-text); }

/* Nav links */
.navbar .nav-link {
  color: var(--nav-text);
  font-weight: 500;
  padding: .4rem .25rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--accent);
  text-decoration: none;
}

/* Increase gap between nav options */
.navbar-nav .nav-item {
  margin: 0 18px; /* adjust gap here */
}

/* Request demo button */
.btn-demo {
  /* background: linear-gradient(90deg, #5E0BE0, #7C2AF7); */
  background-color: var(--accent);
  color: #fff;
  border-radius: 30px;
  padding: .45rem .9rem;
  font-weight: 600;
  border: none;
}

/* ---------- MEGA MENU ---------- */
.nav-mega { position: static; }

/* Full-width mega menu on desktop */
.mega-menu {
  position: absolute;
  top: 100%;
  /* left: 50%; */
  transform: translateX(-50%);
  width: 20vw;
  max-width: 100%;
  border-radius: 0;
  padding: 1.25rem 0;
  background: var(--dropdown-bg);
  box-shadow: 0 6px 30px rgba(10, 20, 40, 0.08);
  display: none; /* controlled by .show class */
  z-index: 1050;
  transition: opacity .14s ease, transform .14s ease;
  opacity: 0;
  pointer-events: none;
}

/* when visible */
.mega-menu.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 2.5rem;
  align-items: start;
}

/* headings inside mega */
.mega-heading {
  font-size: .775rem;
  font-weight: 700;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: .9rem;
}

/* each item */
.mega-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .6rem 0;
  color: var(--nav-text);
  transition: background .12s ease;
}

@media (max-width: 767px) {
  .d-flex.align-items-center.ms-auto {
    flex-direction: column;     /* stack vertically */
    align-items: flex-start;    /* align left */
    gap: 10px;                  /* space between items */
  }

  .d-flex.align-items-center.ms-auto .nav-link {
    margin-right: 0 !important; /* remove desktop gap */
  }

  /* .d-flex.align-items-center.ms-auto .btn-demo {
    width: 50%;              
  } */
}



/* icons */
.mega-item .bi {
  font-size: 1.05rem;
  min-width: 28px;
  color: var(--accent);
  margin-top: 3px;
}

/* text block (title + desc) */
.mega-item .text {
  display: block;
}
.mega-item .title {
  font-weight: 700;
  color: #111;
  font-size: .95rem;
  text-decoration: none !important;
}
.mega-item .desc {
  font-size: .85rem;
  color: #6d6d6d;
  margin-top: 4px;
  line-height: 1.2;
}

/* remove link underline and ensure full clickable area */
.mega-item a,
.mega-item a:hover,
.mega-item a:focus {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.product-cta span{
  color: var(--accent);
  font-weight: 600;
}

.product-cta .bi-chevron-right{
  color: var(--accent);
  font-weight: 600;
}

/* hover state */
.mega-item:hover {
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
}
.mega-item:hover .title {
  color: var(--accent);
}

/* active state visual */
.mega-item.active .title,
.mega-item.active .bi {
  color: var(--accent);
}

/* IMPORTANT: do not auto-close on hover out — we intentionally do NOT include any hover-close rules */

/* responsive: mobile stacks and becomes full width static content */
@media (max-width: 991.98px) {
  .mega-inner { grid-template-columns: 1fr; padding: 1rem; gap: 1rem; }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: .6rem 0;
    opacity: 1;
    pointer-events: auto;
  }
  /* slightly larger tap targets on mobile */
  .mega-item { padding: .8rem 0; }
}

/* small devices */
@media (max-width: 420px) {
  .mega-inner { padding: 0 1rem; gap: .8rem; }
}

/* align caret */
.nav-link .bi-caret-down-fill { font-size: .8rem; margin-left: .35rem; vertical-align: middle; }

/* accessibility focus */
.mega-item a:focus { outline: 2px solid rgba(26,166,140,0.18); outline-offset: 3px; border-radius: 4px; }

/* toggler icon */
.toggler-icon { font-size: 1.35rem; color: #222; }

/* STRONG: force-remove underlines anywhere inside the mega menu */
.mega-menu,
.mega-menu .mega-item,
.mega-menu .mega-item a,
.mega-menu .mega-item a * ,
.mega-menu .title,
.mega-menu .desc {
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-skip-ink: none !important;
  border-bottom: none !important;
  color: inherit !important;
}

/* Make anchors full-block/touch targets (prevents some browsers drawing underlines) */
.mega-menu .mega-item a {
  display: flex !important;
  align-items: flex-start;
  width: 100%;
}

/* Keep accessible focus visible but not as an underline */
.mega-menu .mega-item a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: 3px solid rgba(26,166,140,0.12);
  outline-offset: 2px;
}
  .wrap {
      max-width: var(--container-max);
      margin: 0 auto;
      
    }

    h2.section-title {
      text-align:center;
      font-weight:800;
      margin-bottom:22px;
      letter-spacing: .02em;
      font-size: 1.5rem;
    }

    /* === Cards row (responsive columns, no horizontal scroll) ===
       Desktop: 6 columns (single horizontal row)
       XL: 6, LG:5, MD:4, SM:3, XS:2/1
    */
    .cards-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(6, 1fr); /* default: 6 columns - single row */
      align-items: stretch;
    }


    
    /* breakpoints: adjust number of columns to always fit */
    @media (max-width: 1400px) { .cards-grid { grid-template-columns: repeat(5, 1fr); } }
    @media (max-width: 1150px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 900px)  { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 650px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 420px)  { .cards-grid { grid-template-columns: repeat(1, 1fr); } }

    /* Card style: vertical layout inside */
    .product-card {
      background: linear-gradient(180deg, rgba(0, 250, 175, 0.08), rgba(250,250,250,1));
      border-radius: var(--radius);
      padding: 22px;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: flex-start;
      box-shadow: 0 6px 20px rgba(15,15,15,0.04);
      border: 1px solid rgba(15,15,15,0.03);
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 40px rgba(15,15,15,0.08);
    }

    .product-icon {
      width:50px;
      height:50px;
      border-radius:50%;
      /* background: linear-gradient(180deg, rgba(110,43,247,0.14), rgba(255,255,255,0.02)); */
      display:flex;
      align-items:center;
      justify-content:center;
      color: #fff;
      background-color: var(--accent);
      font-size: 28px;
      margin-bottom:14px;
      flex-shrink: 0;
    }

    .product-title {
      font-weight:800;
      font-size: 1.05rem;
      margin-bottom:8px;
      color: #111;
    }

    .product-desc {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.38;
      margin-bottom: 16px;
    }

    .product-cta {
      margin-top: auto; /* keep CTA pinned to bottom so cards are visually equal height */
      display:flex;
      align-items:center;
      gap:10px;
      color:#555;
      font-weight:600;
      font-size:.95rem;
    }
    .product-cta i { color:#8a8a8a; font-size:1.1rem; }

    /* make cards equal height by making grid items stretch */
    .cards-grid > * { display: flex; }

    /* Brands carousel container */
    .brands-wrap {
      margin-top: 28px;
      padding: 40px;
      background: var(--surface);
      border-radius: 10px;
        background-color: #f7f7f7;
      /* background-color: var(--accent); */
      /* box-shadow: 0 8px 30px rgba(12,12,12,0.03); */
    }
    .brands-title { text-align:center; font-weight:700; margin-bottom:10px; }

    /* brand slide layout: show several logos nicely */
    .brand-slide {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
    }
    .brand-logo {
      background: #fff;
      padding: 10px;
      border-radius:8px;
      height:200px;
      display:flex;
      align-items:center;
      justify-content:center;
      /* box-shadow: 0 4px 12px rgba(12,12,12,0.03); */
      flex: 1 1 0%;
    }
    .brand-logo img { max-height: 175px; max-width:100%; object-fit:contain; }




.kf-section {}

.kf-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.kf-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.kf-icon i {
  font-size: 40px;
  color: #1AA68C;
}

.kf-title {
  font-weight: 600;
  font-size: 20px;
}

.kf-desc {
  margin-top: 10px;
  line-height: 1.6;
  color: #555;
}
.adl-benefits h1{
  font-size: 46px;
  text-align: center;
}


/* Large tablets */
@media (max-width: 1200px) {
  .adl-benefits h1 {
    font-size: 40px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .adl-benefits h1 {
    font-size: 34px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .adl-benefits h1 {
    font-size: 30px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .adl-benefits h1 {
    font-size: 26px;
  }
}

.keyfeatures-slider-section {
  background: #f9fbff;
}

.kf-slide-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 28px;
  /* box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); */
  height: 400px;
  display: flex;
  flex-direction: column;
}

.kf-slide-img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  margin-bottom: 18px;
}

.kf-slide-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #101827;
}

.kf-slide-text {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* arrows like screenshot – round buttons */
.kf-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  /* box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.kf-nav-btn::after {
  font-size: 16px;
  color: #1AA68C; /* purple-ish arrow */
}

.kf-nav-prev {
  left: -18px;
}

.kf-nav-next {
  right: -18px;
}

/* dots like screenshot */
.kf-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e5e7eb;
  opacity: 1;
}

.kf-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #1AA68C;
}



    /* control how many logos per slide via flex-basis at breakpoints */
    /* Desktop: 6 logos per slide */
    @media (min-width:1200px){
      .brand-logo { flex-basis: calc((100% - 5*16px)/6); }
    }
    /* Tablet: 4 logos */
    @media (min-width:768px) and (max-width:1199px) {
      .brand-logo { flex-basis: calc((100% - 3*12px)/4); }
    }
    /* Small: 2 logos */
    @media (max-width:767px) {
      .brand-logo { flex-basis: 48%; }
      .brand-slide { flex-wrap:wrap; gap:10px; }
    }

    /* center carousel controls */
    .carousel-control-prev,
    .carousel-control-next { width: 3rem; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.06)); }

    /* tidy indicators */
    .carousel-indicators [data-bs-target] { background-color: #ccc; }


  /* OUTER SIDE GAP — keeps all content centered with side "gaps" */
.outerside {
  box-sizing: border-box;
  padding-left: 100px;   /* big gap left */
  padding-right: 100px;  /* big gap right */
  display: block;
  width: 100%;
  background: transparent;
  /* ensure children don't overflow the visible area */
  overflow-x: hidden;
}

/* keep inner .wrap centered and constrained */
.outerside .wrap {
  max-width: 1500px; /* matches design container width */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

/* RESPONSIVE REDUCTION OF SIDE GAP */
@media (max-width: 1400px) {
  .outerside { padding-left: 160px; padding-right: 160px; }
}
@media (max-width: 1150px) {
  .outerside { padding-left: 120px; padding-right: 120px; }
}
@media (max-width: 992px) {
  .outerside { padding-left: 80px; padding-right: 80px; }
}
@media (max-width: 768px) {
  .outerside { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 576px) {
  .outerside { padding-left: 16px; padding-right: 16px; }
}

/* SAFETY: ensure cards-grid and brands are centered inside .wrap */
.outerside .cards-grid,
.outerside .brands-wrap {
  margin-left: auto;
  margin-right: auto;
}

/* OPTIONAL: if you want a fixed 200px LEFT gap only (e.g. for a left sidebar),
   uncomment the rule below and comment out the symmetric padding above */
/*
.outerside {
  padding-left: 200px;
  padding-right: 0;
}
*/

/* Prevent any unintended horizontal scrolling from children */
.outerside * {
  max-width: 100%;
}



/* Outer spacing */
.why-section {
  padding: 60px 0;
}

/* Center wrapper */
.why-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Heading */
.why-heading h2 {
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 10px;
}
.why-heading p {
  color: #6d6d6d;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* GRID — 3 columns desktop */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(0,0,0,0.1);
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* CARD */
.why-item {
  padding: 40px 26px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  transition: 0.2s ease;
}

.why-item:hover {
  background: #ecfcf9;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ICON CIRCLE */
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #C1EEE6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: #1AA68C;
}

/* Title */
.why-item h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Description */
.why-item p {
  font-size: 15px;
  color: #6d6d6d;
  max-width: 300px;
  margin: 0 auto;
}

/* RESPONSIVE ---------------------- */

/* Tablet – 2 columns */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item:nth-child(2n) {
    border-right: none;
  }
  .why-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}


@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    text-align: left;
  }
  .why-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .why-item {
    text-align: center !important;
    align-items: center !important;
  }

  .why-item p {
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why-item h4 {
    text-align: center !important;
  }

  .why-icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.Designed{
  background-color: #f7f7f7;
  width: 100%;
}

.tabs-container{
max-width:800px;
margin:40px auto;
 font-family: "Poppins", sans-serif !important;
}


.tab-buttons{
display:flex;
gap:10px;
border-bottom:2px solid #ddd;
justify-content:center; /* centered tabs */
overflow: auto;
}


.tab-btn{
padding:10px 16px;
cursor:pointer;
border:none;
background:#f7f7f7;
font-weight:600;
border-radius:6px 6px 0 0;
}


.tab-btn.active{
background:#1AA68C;
border-bottom:2px solid #fff;
color: #fff;
}


.tab-content{
border:1px solid #ddd;
border-top:none;
padding:20px;
background:white;
border-radius:0 6px 6px 6px;
margin-top: 20px;
margin-bottom: 60px;

}


.tab-pane{ display:none; }
.tab-pane.active{ display:block; }


.tab-image{
width:100%;
height:400px;
border-radius:6px;
object-fit:cover;
border:1px solid #e5e5e5;
}
.tab-pane h3{
  margin-top: 20px;
}
.tab-pane p{
  font-size: 18px;
}
 

.TotalCounts {
  width: 100%;
  height: 160px;
  background-color: #ecfcf9;
  border: 12px solid #fff;
  
}
.TotalCounts h1 {
  color: #1AA68C;
  font-size: 50px;
  
}
.TotalCounts .row{
  margin-top: 25px;
}
.brand-logoo{
  width: 200px;
}
.brand-logoo {
  width: 200px;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-logoo {
    width: 160px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-logoo {
    width: 120px;
  }
}

@media (max-width: 1200px) {
  .TotalCounts h1 { font-size: 46px; }
}

@media (max-width: 992px) {
  .TotalCounts h1 { font-size: 40px; }
}

@media (max-width: 768px) {
  .TotalCounts h1 { font-size: 34px; }
}

@media (max-width: 480px) {
  .TotalCounts h1 { font-size: 28px; }
}

.TotalCounts h5{
/* color: #1AA68C; */
font-size: 20px;

}
.navbar-nav .nav-item .active{
  color: #1AA68C;
}

.faq-box{
max-width:100%;
margin:30px auto;
background:#fff;
border-radius:10px;
padding:20px;
 font-family: "Poppins", sans-serif !important;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}


.faq-title{margin:0 0 15px;font-size:22px;font-weight:700;color:#1a1a1a;text-align:center;}


.faq-actions{display:flex;gap:10px;justify-content:center;margin-bottom:20px;}
.faq-btn{
padding:8px 16px;
border-radius:20px;
border:1px solid #d0d7e1;
background:#f8f9fb;
cursor:pointer;
font-weight:600;
}


.faq-item{border:1px solid #e9eef4;border-radius:10px;margin-bottom:10px;overflow:hidden;}


.faq-q{
width:100%;
background:#fff;
border:none;
padding:14px;
font-size:18px;
text-align:left;
font-weight: 600;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}


.arrow{transition:0.2s;}
.faq-q[aria-expanded="true"] .arrow{transform:rotate(90deg);}


.faq-a{padding:12px 16px;font-size:16px;color:#333;border-top:1px solid #eef2f6;}




.contact-section {
  background: #ecfcf9; /* requested background */
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
  color: #222;
}

/* main content container */
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* LEFT column */
.contact-left {
  padding-right: 10px;
}

.contact-title {
  font-size: 48px;
  margin: 6px 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f0f0f;
}

.contact-sub {
  color: #4b5563;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 26px;
  font-size: 16px;
}

/* expectation section */
.expect-title {
  font-size: 16px;
  margin: 6px 0 12px 0;
  font-weight: 700;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 16px;
}

.expect-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: transparent;
  padding-right: 12px;
  font-weight: 600;
  color: #2b2b2b;
}

/* round purple check */
.check {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  background: #1AA68C;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(107,50,214,0.15);
  transform: translateY(2px);
}


.contact-info-row {
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.office-text, .contact-text {
  color: #475569;
  line-height: 1.5;
  font-size: 14px;
}
.left-decor {
  display: none;
  width: 100%;
  margin-top: 18px;
  border-radius: 8px;
  opacity: 0.9;
  border: 1px solid rgba(0,0,0,0.04);
}

/* RIGHT column: form card */
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(19,17,33,0.06);
  border: 6px solid #fff;
  box-sizing: border-box;
}

/* form grid */
.demo-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.lbl {
  display: block;
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  font-weight: 600;
  margin-top: 15px;
}

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
  outline: none;
}

.input:focus {
  box-shadow: 0 0 0 4px #35c7af;
  border-color: #1AA68C;
}


.consent-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  line-height: 1.4;
}


.select { appearance: none; }

/* textarea styling */
.textarea { resize: vertical; min-height: 100px; }

/* consent */
.consent {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
  margin: 14px 0;
}

/* primary button */
.primary-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 28px;
  border: none;
  background: linear-gradient(90deg, #94fae7, #1AA68C);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(107,50,214,0.12);
}


.jx-footer {
  background: #1AA68C; /* your requested color */
  padding: 50px 30px 20px;
  color: #fff;
 font-family: "Poppins", sans-serif !important;
}

.jx-footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.jx-footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.jx-footer-col h5 {
  font-size: 15px;
  margin: 18px 0 6px 0;
  font-weight: 700;
}

.jx-footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.jx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jx-footer-col ul li {
  margin: 8px 0;
}

.jx-footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.jx-footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-col .jx-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.jx-footer-social img {
  width: 46px;
  height: 46px;
  background: #fff;
  padding: 8px;
  border-radius: 50%;
}

/* bottom bar */
.jx-footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.jx-footer-links {
  display: flex;
  gap: 12px;
}

.jx-footer-links a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

.jx-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

 /* Make sure styles are scoped to this snippet; nothing global changed */
  .adl-benefits .benefit-item .bi-thumb img { display:block; width:100%; height:auto; }



   /* Container (unique classes to avoid conflicts) */
  .jb-features-section { background: #fff; }
  .jb-container { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

  .jb-section-title {
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    margin: 6px 0 22px;
    color: #0f1724;
  }

  /* Grid: 1 / 2 / 4 columns */
  .jb-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
  @media (min-width: 640px) {
    .jb-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  }
  @media (min-width: 1100px) {
    .jb-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
  }

  /* Card base */
  .jb-card {
    border-radius: 22px;
    padding: 30px 26px 28px;
    min-height: 320px;              /* fixed card height to keep uniform look */
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.10);
    position: relative;
    overflow: visible; /* important so shadow not clipped */
  }

  /* Pastel background alternating by index (similar to screenshot) */
  /* .jb-card:nth-child(4n+1) { background: #ECFCF9; } 
  .jb-card:nth-child(4n+2) { background: #ECFCF9; } 
  .jb-card:nth-child(4n+3) { background: #ECFCF9; } 
  .jb-card:nth-child(4n+4) { background: #ECFCF9; } */

  /* Top area: icon square positioned top-left */
  .jb-card-top {
    display: flex;
    align-items: flex-start;
  }
  .jb-icon-sq {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
    font-size: 20px;
    color: #0f1724;
  }


.BalanceImg img{
width:100%;
}

  /* Title and text */
  .jb-card-title {
    margin: 12px 0 6px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    color: #071133;
    text-align: left;
  }

  .jb-card-text {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    flex: 1; 
    text-align: left;           /* ensures footer stays at bottom if added later */
  }
.Emailcard{
  width: 80%;
  height: 550px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.10);
  border-radius: 12px;
  margin-top: 20px;
  margin: 20px auto;   /* centers inside column */

}

 /*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/
/* body {
  font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
  color: #333;
  font-weight: 300;
} */


.tabset{
  padding: 50px;
  padding-top: 120px;
}
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  /* content: ""; */
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

input:focus-visible + label {
  outline: 2px solid #059669;
  border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color: #059669;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #059669;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

/*
 Demo purposes only
*/
/* *,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  padding: 30px;
} */

.tabset {
  max-width: 120em;
}
.tab-panels .tab-panel { display: none; }
.tab-panels .tab-panel.active { display: block; }

/* Optional — style active label */
.tabset label { cursor: pointer; padding: 6px 10px; display:inline-block; margin-right:6px; }
.tabset label.active { background: #ecfcf9; border-radius: 6px; font-weight:700; }


  /* Smaller screens: reduce padding and height */
  @media (max-width: 639px) {
    .jb-card { padding: 20px; min-height: 260px; border-radius: 18px; }
    .jb-icon-sq { width: 48px; height: 48px; font-size: 18px; }
    .jb-card-title { font-size: 18px; }
  }

  /* Optional: improve text hyphenation & readability */
  .jb-card-text { hyphens: auto; -webkit-font-smoothing: antialiased; }

  /* Make icons color match a subtle accent (optional) */
  .jb-card:nth-child(4n+1) .jb-icon-sq i { color: #6d28d9; }
  .jb-card:nth-child(4n+2) .jb-icon-sq i { color: #fb923c; }
  .jb-card:nth-child(4n+3) .jb-icon-sq i { color: #059669; }
  .jb-card:nth-child(4n+4) .jb-icon-sq i { color: #6366f1; }

  /* On small screens, stack image then text (full width) and center content */
  @media (max-width: 880px) {
    .adl-benefits .benefit-item {
      flex-direction: column;
      align-items: stretch;
      text-align: left;
    }
    .adl-benefits .benefit-item .bi-thumb { width:100%; max-width:100%; flex:0 0 auto; margin-bottom:14px; }
    .adl-benefits .benefit-item .bi-content { min-width:0; }
  }

  /* Slight spacing and typography polish for very small screens */
  @media (max-width: 420px) {
    .adl-benefits { padding:28px 12px; }
    .adl-benefits h2 { font-size:22px; }
    .adl-benefits p { font-size:14px; }
  }


/* RESPONSIVE */
@media (max-width: 1024px) {
  .jx-footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .jx-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jx-footer-container {
    grid-template-columns: 1fr;
  }
  .jx-footer {
    padding: 40px 20px 20px;
  }
}


/* small screens & responsive rules */
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr 380px; }
  .contact-title { font-size: 42px; }
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 20px; }
  .contact-card { order: 2; }
  .contact-left { order: 1; }
  .demo-form .row { grid-template-columns: 1fr; }
  .left-decor { display: block; }
  .contact-title { font-size: 36px; }
  .contact-sub { font-size: 15px; }
}

@media (max-width: 520px) {
  .contact-section { padding: 22px 12px; }
  .contact-title { font-size: 30px; }
  .expect-list li { font-size: 15px; }
  .primary-btn { padding: 12px; font-size: 15px; }
  .contact-card { padding: 16px; border-radius: 12px; }
}


@media (max-width: 576px) {
  .tab-buttons {
    gap: 6px;
    justify-content: flex-start;  /* left align so scrolling works */
    overflow-x: auto;              /* enable horizontal scroll */
    padding-bottom: 8px;
    scrollbar-width: none;         /* hide scrollbar (Firefox) */
  }

  .tab-buttons::-webkit-scrollbar {
    display: none;                 /* hide scrollbar (Chrome) */
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;           /* prevent text breaking */
  }
  .TotalCounts {
  width: 100%;
  height: 480px;
  background-color: #ecfcf9;
  border: 12px solid #fff;
}
}


/* --- Extra Small Devices (Phones < 576px) --- */
@media (max-width: 575.98px) {

  .tab-buttons {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .tab-buttons::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .TotalCounts {
    width: 100%;
    height: auto;        /* auto height for mobile */
    padding: 20px;
    background-color: #ecfcf9;
    border: 8px solid #fff;
  }
}


/* --- Small Devices (≥ 576px and < 768px) --- */
@media (min-width: 576px) and (max-width: 767.98px) {

  .tab-buttons {
    gap: 8px;
    overflow-x: auto;
    justify-content: center;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 15px;
  }

  .TotalCounts {
    height: 480px;
    border: 10px solid #fff;
  }
}


/* --- Medium Devices (≥ 768px and < 992px) --- */
@media (min-width: 768px) and (max-width: 991.98px) {

  .tab-buttons {
    justify-content: center;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 16px;
  }

  .TotalCounts {
    height: 250px;
    border: 12px solid #fff;
  }
}


/* --- Large Devices (≥ 992px and < 1200px) --- */
@media (min-width: 992px) and (max-width: 1199.98px) {

  .tab-buttons {
    gap: 12px;
  }

  .tab-btn {
    font-size: 17px;
  }

  .TotalCounts {
    height: 250px;
  }
}


/* --- Extra Large Devices (≥ 1200px) --- */
@media (min-width: 1200px) {

  .tab-buttons {
    justify-content: center;
  }

  .tab-btn {
    font-size: 18px;
  }

  .TotalCounts {
    height: 250px;
  }
}



   /* Container card */
    .demo-card{
      max-width:920px;
      margin:120px auto;
      background:#fff;
      border-radius:18px;
      padding:36px;
      border:1px dotted #e6e6e6;
      box-shadow:0 8px 30px rgba(10, 20, 32, 0.08);
    }

    /* Heading */
    .demo-card h2{
      font-weight:600;
      font-size:1.05rem;
      text-align:center;
      margin-bottom:26px;
      color:#0f1724;
    }
    .demo-sub{
      font-size:0.94rem;
      color:#475569;
      text-align:center;
      margin-bottom:28px;
    }

    /* Inputs style */
    .demo-input{
      border-radius:14px;
      height:48px;
      background:#f8fafc;
      border:1px solid #e6eef7;
      padding:10px 14px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,0.6);
    }
    .demo-input:focus{
      outline:0;
      box-shadow:0 0 0 3px rgba(0,6,107,0.06);
      border-color:#00006B;
      background:#fff;
    }

    /* phone group */
    .phone-prefix{
      border-radius:12px;
      border:1px solid #e6eef7;
      background:#f8fafc;
      height:48px;
      display:flex;
      align-items:center;
      padding:0 10px;
      gap:8px;
    }

    /* radio list */
    .form-check .form-check-input{
      width:1.05rem;
      height:1.05rem;
      border-radius:50%;
    }
    .form-check-label { color:#334155; }

    /* button */
    .btn-demo{
      background:#059669;
      color:#fff;
      padding:10px 18px;
      border-radius:24px;
      border:0;
      font-weight:600;
      box-shadow:0 8px 20px rgba(255,122,74,0.12);
    }
    .btn-demo:hover{ background:#059669; color:#fff; }

    /* small notes */
    .small-muted { color:#64748b; font-size:0.92rem; }

    @media (max-width:767px){
      .demo-card{ padding:22px; margin:18px; }
      .demo-sub{ padding:0 6px; }
    }

     /* Scoped styles for About page */
    .aiml-page {  font-family: "Poppins", sans-serif !important;}
    .aiml-hero {
      background: linear-gradient(135deg, #1AA68C 0%, #1AA68C 60%, #000000 100%);
      color: #fff;
      padding: 5.5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .aiml-hero::after {
      content: "";
      position: absolute;
      right: -10%;
      top: -10%;
      width: 45%;
      height: 120%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 30%),
                  radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03), transparent 20%);
      transform: rotate(12deg);
      pointer-events: none;
    }
    .aiml-brand {
      font-family: "Poppins", sans-serif !important;
      font-size: 1.55rem;
      letter-spacing: .6px;
      font-weight: 700;
      margin-bottom: .15rem;
    }
    .aiml-tagline {
      font-size: 1.05rem;
      opacity: .95;
      margin-bottom: .75rem;
    }
    .aiml-hero h1 {
      font-family: "Playfair Display", serif;
      font-weight: 700;
      font-size: 2.35rem;
      margin-bottom: .45rem;
      line-height: 1.05;
      letter-spacing: -.3px;
    }
    .aiml-hero p.lead {
      font-size: 1.05rem;
      max-width: 70ch;
      opacity: .95;
    }
    .aiml-content {
      padding: 4rem 0;
    }

    /* section card style */
    .aiml-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(35,50,80,0.06);
      padding: 1.5rem;
      border: 1px solid rgba(36,49,66,0.04);
    }

    /* separator line */
    .aiml-sep {
      border-top: 1px dashed rgba(36,49,66,0.08);
      margin: 2rem 0;
    }

    /* Vision block */
    .aiml-vision {
      background: linear-gradient(90deg, rgba(250,249,255,1), rgba(255,251,242,1));
      border-radius: 10px;
      padding: 1.25rem;
      border: 1px solid rgba(36,49,66,0.03);
    }
    .aiml-vision h4 { font-weight:700; color:#273845; }

    /* Mission list */
    .aiml-mission ol {
      padding-left: 1.1rem;
    }
    .aiml-mission li {
      margin-bottom: .9rem;
      line-height: 1.45;
    }

    /* Core values grid */
    .values-grid { gap: 1rem; }
    .value-card {
      display:flex;
      gap:1rem;
      align-items:flex-start;
      padding:1rem;
      border-radius:10px;
      background: linear-gradient(180deg,#ffffff,#fbfbfd);
      border:1px solid rgba(36,49,66,0.04);
      box-shadow: 0 6px 18px rgba(20,30,50,0.03);
    }
    .value-icon {
      width:56px;
      height:56px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.35rem;
      color:#ffffff;
      flex-shrink:0;
    }
    .v1 { background: linear-gradient(135deg,#6d5ce7,#b5499e); }
    .v2 { background: linear-gradient(135deg,#24b0a8,#2e9ad9); }
    .v3 { background: linear-gradient(135deg,#f6a623,#f76b8a); }
    .v4 { background: linear-gradient(135deg,#4bb543,#2cc7a8); }
    .v5 { background: linear-gradient(135deg,#f46b45,#f9d423); }
    .v6 { background: linear-gradient(135deg,#7b61ff,#4fd1c5); }
    .v7 { background: linear-gradient(135deg,#ff7ea7,#ffb86b); }

    .value-title { font-weight:700; margin:0; font-size:.98rem; color:#19232f; }
    .value-desc { margin:0; font-size:.92rem; color:#455b66; opacity:.95; }

    /* Responsive tweaks */
    @media (min-width: 992px) {
      .aiml-hero h1 { font-size: 3.25rem; }
      .aiml-hero p.lead { font-size: 1.125rem; }
    }
    @media (max-width: 575.98px) {
      .aiml-hero { padding: 3.2rem 0 2.2rem; }
      .aiml-brand { font-size: 1.05rem; }
    }

    /* small decorative rule */
    .decor-rule {
      height:4px;
      width:64px;
      border-radius: 12px;
      background: linear-gradient(90deg,#cdfcf3,#1AA68C);
      display:inline-block;
      margin-bottom: .6rem;
    }

     .aiml-core-section {
    background: linear-gradient(180deg, rgba(245,247,250,1) 0%, rgba(250,251,255,1) 50%, rgba(255,249,251,0.95) 100%);
    padding: 2.25rem 0;
    border-radius: 14px;
  }
  .aiml-core-wrap {
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(20,30,60,0.06);
    border: 1px solid rgba(34,50,76,0.04);
  }
  /* Mission card tweaks */
  .aiml-mission.h-100 { min-height: 100%; }
  .aiml-mission ol { padding-left: 1.15rem; }
  /* Grid for core values: 2 columns on md+, 1 on small */
  .values-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  @media (min-width: 768px) {
    .values-grid-2 { grid-template-columns: 1fr 1fr; }
  }
  .value-card {
    display:flex;
    gap:1rem;
    align-items:flex-start;
    padding:1rem;
    border-radius:10px;
    background: linear-gradient(180deg,#ffffff,#fbfbfd);
    border:1px solid rgba(36,49,66,0.04);
    box-shadow: 0 6px 20px rgba(20,30,50,0.035);
    transform-origin: center;
  }
  .value-icon {
    width:56px;
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
    color:#fff;
    flex-shrink:0;
  }
  .value-title { font-weight:700; margin:0; font-size:.98rem; color:#162428; }
  .value-desc { margin:0; font-size:.92rem; color:#495d66; opacity:.95; }