@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-bg: linear-gradient(90deg, #5e1a5a 0%, #b31a5f 50%, #e6204c 100%);
  --text-white: #ffffff;
  --section-padding: 80px 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
}

/* Tablet Fix (Important) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 15px; /* reduce spacing */
  }

  .nav-links li a {
    font-size: 14px; /* slightly smaller text */
    padding: 8px 0px;
  }

.contact-btn {
    padding: 6px !important;
}

.nav-item {
    font-size:10px !important;
}

.stat-box span{
    font-size: 15px !important;
}

}


@media (max-width:320px){
    .case-study-image img {
    width:74.3vw !important;
}


.case-btn {
    
    padding:14px 20px !important;
}
}


/* =========================
   MOBILE CONTACT SECTION
   ========================= */

@media (max-width: 768px) {

  /* Prevent overflow */
  * {
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden;
  }




  .contact-section {
    padding: 20px 15px;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .contact-info,
  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .contact-info {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .info-content h3 {
    font-size: 14px;
    word-break: break-word;
  }

  /* Form Section */

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  

}



@media(min-width:390px){
    
     .contact-btn {
     margin: 0;
      align-self: flex-start;
      padding: 0;
  }
    
    
    
}

@media(min-width:320px){
    
     .contact-btn {
     margin: 0;
      align-self: flex-start;
      padding: 0;
  }
    
    
    
}
@media (min-width: 768px) {
   .contact-btn {
     margin: 0;
      align-self: flex-start;
      padding: 0;
  }
}


.logo img {
  height: 80px;
  /* adjust as needed */
  width: auto;
  display: block;
}


body.menu-open {
  overflow: hidden;
}


/* ===============================
   INDUSTRIES DROPDOWN
================================ */



.has-industries {
  position: relative;
}

/* Dropdown container */
.industries-dropdown {
  margin-top: 16px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 1000px;
  padding: 18px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.has-industries:hover .industries-dropdown {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

/* Industries list */
.industries-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* List item */
.industries-list li {
  position: relative;
  white-space: nowrap;
}

/* Anchor */
.industries-list li a {
  position: relative;
  display: inline-flex;               /* 🔥 IMPORTANT */
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  text-transform: none;

  padding: 8px 12px -1px 16px;        /* 🔥 Reserve arrow space */
  border-radius: 12px;
  box-sizing: border-box;

  transition: 
    background 0.25s ease,
    color 0.25s ease;
}

/* Hover state */
.industries-list li a:hover {
  color: #fff;
    padding: 8px 42px 8px 16px;          /* 🔥 Reserve arrow space */

  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
}

/* Arrow icon */
.industries-list li a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 12px;
  color: #fff;
}

/* Show arrow smoothly */
.industries-list li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Divider line */
.industries-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: #ddd;
}





.search-highlight {
  background: #ffeb3b;
  color: #000;
  padding: 2px 4px;
  border-radius: 4px;
}



.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  padding: 14px 18px;
  font-size: 18px;
  width: 300px;
}


/* ===============================
   About Us DROPDOWN
================================ */

.has-about {
  position: relative;
}

.about-dropdown {
  margin-top: 16px;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  background: #fff;
  width: 500px;
  padding: 18px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.has-about:hover .about-dropdown {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

/* Industries list */
.about-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list li {
  position: relative;
}

.about-list li a {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-transform: none;
  padding: 8px 12px;
  transition: color 0.2s ease;
}


/* Arrow icon */
.about-list li a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 7px;

  position: absolute;
  right: 24px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 12px;
  color: #fff;
}

/* Show arrow smoothly */
.about-list li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Divider line */
.about-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: #ddd;
}



/* Divider line between items */
.about-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: #ddd;
}



/* Hover state */
.about-list li a:hover {
  color: #fff;
    padding: 8px 42px 8px 16px;          /* 🔥 Reserve arrow space */
border-radius: 12px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
}


/* ===== MEGA MENU ===== */

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* GRID */
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 44px;
}

/* COLUMN */
.mega-col h5 {
  background: #D3D3D3;
  padding: 10px 14px;
  font-size: 22px;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #000;
  text-transform: uppercase;
}

.mega-col h5:hover {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #fff;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  width:106%;
}

.mega-col ul li {
  margin-bottom: 10px;
}

.mega-col ul li a {
  font-size: 1.09148rem;
  color: #111;
  text-decoration: none;
  transition: 0.2s;
  text-transform: none;
  font-weight: 500;
  position: relative;
  /* REQUIRED */
  display: block;
  /* REQUIRED */
  padding: 6px 36px 6px 8px;
  /* space for arrow */
}

.mega-col ul li a:hover {
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 16px;
  border-radius: 12px;

  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
}


/* Arrow icon (hidden by default) */
.mega-col ul li a::after {
  content: "\f061";
  /* Font Awesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 12px;
  color: #fff;
}

/* Show arrow on hover */
.mega-col ul li a:hover::after {
  opacity: 1;
  transform: translateX(0);
  padding-top: 7px;
}





/* RESPONSIVE */
@media (max-width: 1200px) {
  .mega-menu {
    width: 95vw;
  }
}

@media (max-width: 768px) {
  .mega-inner {
    grid-template-columns: 1fr;
  }
}




/* Navbar */
.navbar {
  position: fixed;
  top: 0;
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  backdrop-filter: blur(10px);
  z-index: 1000;
  
  flex-wrap: nowrap; /* 🔥 IMPORTANT */
  
  
   width: 100%;
  padding: 20px 5%;
  box-sizing: border-box; 
}

.logo {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}

.logo span {
  font-weight: 300;
  color: #888;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  padding-right: 50px;
}

.nav-links li {
 flex-shrink: 1; 
  padding: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #116db6;
  font-size: 18px;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: 600;
}

/* CONTACT BUTTON */
.contact-btn {
  border: 1.5px solid #000;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  background: #116db6;
  color: #fff;
  border: 1.5px solid #8CC63F;

}

/* SEARCH ICON */
.nav-search a {
  font-size: 16px;
  padding: 8px 10px;
  color: #fff;
  transition: color 0.25s ease;
}

.nav-search a:hover {
  color: #116DB6;
}


/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: 0.35s ease;
  z-index: 9999;
}

.search-overlay.active {
  transform: translateY(0);
}

.search-box {
  width: 70%;
  max-width: 900px;
  position: relative;
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 60px 0 20px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: #e5e5e5;
  font-size: 16px;
}

.search-submit {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.search-close {
  position: absolute;
 
  top: 50%;
  transform: translateY(-50%);
  
 
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f)#116DB6;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  
  
   right: 5%;
  width: 44px;
  height: 44px;
}

.search-close:hover {
  background: #116DB6;
}




/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #116db6;
  margin: 4px 0;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }


 .industries-list li a {
    padding: 12px 0;
    text-align: left;
  }
  
    .industries-dropdown,
  .industries-dropdown * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  
   .has-industries.active .industries-dropdown {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  /* Mobile menu (hidden by default) */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;

    width: 80vw;
    height: 100vh;

    background: #fff;
    padding: 90px 30px 30px;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    z-index: 1050;
    overflow-y: auto;
  }

  /* When open */
  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    padding: 12px 0;
  }

  /* Disable hover dropdowns */
  .has-mega:hover .mega-menu,
  .has-industries:hover .industries-dropdown,
  .has-about:hover .about-dropdown {
    display: none;
  }

  /* Mobile dropdowns */
  .has-mega .mega-menu,
  .has-industries .industries-dropdown,
  .has-about .about-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
  }

  .has-mega.active .mega-menu,
  
  .has-about.active .about-dropdown {
    display: block;
    width: 104%;
        padding-left: 54px;
  }

    /* dropdown container */
  .has-industries.active .industries-dropdown {
    width: 100% !important;
     display: block;
     flex-direction: column;  
    padding-left: 0 !important;
  }

  /* INNER WRAPPER (this is the missing fix) */
  .industries-dropdown > div {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px;
  }

  /* EACH ITEM */
  .industries-dropdown span,
  .industries-dropdown a {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
  }

 
.about-list li a{
    padding: 9px 182px !important;

}
}

@media (max-width: 1200px) {
  .nav-links li {
    padding: 11px 10px;
  }
  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 992px) {

  /* RESET desktop mega dropdown behavior */
  .industries-dropdown {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* Stack items vertically */
  .industries-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .industries-list li {
    width: 100%;
  }

  .industries-list li a {
    width: 100%;
    padding: 12px 12px !important;
    text-align: left;
  }

  /* Remove desktop dividers */
  .industries-list li::after {
    display: none !important;
  }
}

@media (max-width: 992px) {
    
    
    .about-dropdown {
  position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
    
    
    /* about list */
.about-list {
  display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.about-list li {
    width: 100%;
}

.about-list li a {
   width: 100%;
    padding: 12px 12px !important;
    text-align: left;
}

/* Divider line between items */
.about-list li:not(:last-child)::after {
   display: none !important;
}

.about-list li a:hover {
  color: #fff;
  /* match your brand accent */
}

 
}



/* Hero Slider Container */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}



.slide-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center top;
  /* prevents bottom cut */
  background-repeat: no-repeat;

  transform: scale(1.05);
  transition: transform 6s ease;
  z-index: -1;
}






.slide.active .slide-bg {
  transform: scale(1);
  /* Smoothly zoom to original size */
}

/* Hero Content - Text Slide Up Animation */
.hero-content {
  max-width: 700px;
  transform: translateY(40px);
  opacity: 0;
  padding-left: 10%;

  transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
}

.slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}


.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  /* Pink accent */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

/* Updated Hero Navigation Bar */
.hero-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.nav-item {
  flex: 1;
  padding: 25px 15px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item:last-child {
  border-right: none;
}


/* Base state for the timer line (hidden) */
.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  /* Starts at zero */
 background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  /* Pink accent */
  transition: none;
}

.nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* The Progress Line Animation */
.nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
background: linear-gradient(90deg, #0f6cb5, #8cc63f);  /* Pink timer line */
  animation: lineProgress 6s linear forwards;
  /* Matches your JS interval */
  animation: lineTimer 6s linear forwards;
}

@keyframes lineTimer {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes lineProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Mobile Pagination Dots */
.hero-dots {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  z-index: 20;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Mobile Only */
@media (max-width: 768px) {
  .hero-nav {
    display: none;
  }

  .hero-dots {
    display: flex;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* Logo Marquee Section 
.trusted-section {
  padding: 50px 0;
  text-align: center;
  background: #000;
}

.trusted-section h3 {
  font-size: 14px;
  margin-bottom: 30px;
  color: #666;
  letter-spacing: 2px;
}

.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-content img {
  height: 35px;
  margin: 0 40px;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.7;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/*
/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-item {
    font-size: 0.75rem;
    padding: 15px 5px;
  }
}

@media (max-width: 768px) {
  .hero-nav {
    flex-wrap: wrap;
  }

  .nav-item {
    flex: 1 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar {
    padding: 15px 5%;
  }
}


/* ===== CASE STUDIES SECTION ===== */
.case-section {
  padding: 90px 6%;
  background: #fff;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.case-header h1 {
  font-size: 50px;
  font-weight: 600;
  color: #000;
}

.case-header p {
  font-size: 20px;
  line-height: 30px;
  color: #444;
  margin-top: 10px;
}

.case-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  margin-left: 10px;
  font-size: 20px;
}

.case-slider {
  overflow: hidden;
}

.case-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ===== CARD ===== */
.case-card {
  position: relative;
  min-width: 380px;
  height: 420px;
  border-radius: 26px;
  margin-right: 24px;

  overflow: hidden;
  background: #000;
  transition: transform 0.4s ease;

}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Dark gradient */
.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* ===== OVERLAY CONTENT ===== */
.case-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  color: #fff;
  display: flex;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(40px);
  transition: 0.5s ease;
  z-index: 2;
}

.case-overlay .tag {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.case-overlay h3 {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.case-overlay p {
  font-size: 17px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.case-overlay a {
  margin-top: 14px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #fff;
  width: fit-content;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  text-decoration: none;
}

/* ===== HOVER EFFECT (MATCHING RISHABH) ===== */
.case-card:hover img {
  transform: scale(1.05);
}

.case-card:hover .case-overlay {
  transform: translateY(0);
}

.case-card:hover p,
.case-card:hover a {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .case-section {
    padding: 60px 4%;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .case-header h1 {
    font-size: 32px;
    text-align: center;
  }

  .case-header p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .case-card {
    min-width: 280px;   /* 👈 reduced */
    height: 360px;
    margin-right: 16px;
    border-radius: 20px;
     overflow: hidden;
  }
.case-arrows{
    margin:0 auto;
    
}
    .case-track {
    gap: 0;
  }

  .case-overlay {
    padding: 20px;
  }

  .case-overlay h3 {
    font-size: 18px;
  }

  .case-overlay p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .case-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .case-slider::-webkit-scrollbar {
    display: none;
  }
}

/* ===============================
   ANIMATED HEADLINE
================================ */

.animated-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 49px; /* Desktop scaling */
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  line-height: 1.15;
  margin-bottom: 60px;
  max-width: 100%;
}

.dynamic-text {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Firefox fallback */
  background-clip: text;
  color: transparent;

  font-weight: 900;
}

/* Static word */
.static-text {
  color: #000;
}

/* Dynamic word wrapper */
.dynamic-wrapper {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Gradient animated word */
#dynamic-text {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* Cursor */
.cursor {
  margin-left: 6px;
  font-weight: 400;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ===============================
   EMPOWER SECTION
================================ */

.empower-section {
  padding: 80px 0;
  background: #fff;
}

.empower-section .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   GRID LAYOUT
================================ */

.empower-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Left content */
.empower-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

.empower-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #222;
}

/* ===============================
   STATS GRID
================================ */

.empower-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
  justify-items: center;
  align-items: center;
}

.stat-box {
  text-align: center;
  position: relative;
  width: 100%;
}

/* Number */
.stat-box h3 {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* Label */
.stat-box span {
  font-size: 20px;
  line-height: 1.4;
  color: #000;
}

/* Dividers */
.stat-box:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 10%;
  width: 1px;
  height: 80%;
  background: #ddd;
}

.stat-box:nth-child(-n+2)::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: #ddd;
}

/* ===============================
   MOBILE FIXES
================================ */

@media (max-width: 768px) {

  /* Container */
  .empower-section .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Headline */
  .animated-headline {
    font-size: 28px;     /* override clamp */
    line-height: 1.3;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 32px;
    text-align: left;
  }

  .dynamic-wrapper {
    display: inline-block;
    white-space: normal;
  }

  /* Grid */
  .empower-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Content */
  .empower-content h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .empower-content p {
    font-size: 16px;
  }

  /* Stats */
  .empower-stats {
    gap: 32px;
  }

  .stat-box {
    max-width: 260px;
    margin: auto;
  }

  .stat-box h3 {
    font-size: 40px;
  }

  .stat-box span {
    font-size: 16px;
  }

  /* Remove dividers on mobile */
  .stat-box::before,
  .stat-box::after {
    display: none;
  }
}


.services-carousel {
  padding: 80px 0;
  background: #f5f7fb;
}

.services-carousel .container {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.service-card {
  min-width: 320px;
  background: #f5f7fb;
  border: 1px solid #d9dbe1;
  border-radius: 24px;
  padding: 40px 30px;
  text-decoration: none;
  color: #111;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #e91e63;
}

.service-card.active {
  border-color: #e91e63;
}

.service-card h3 {
  font-size: 22px;
  margin: 30px 0 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ICONS */
.service-icon {
  width: 60px;
  height: 60px;
  position: relative;
}

.service-icon span {
  width: 10px;
  height: 10px;
  background: #e91e63;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Different icon styles */
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  background: #000;
  border-radius: 4px;
}

/* Cross icon */
.service-icon::before {
  width: 40px;
  height: 6px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.service-icon::after {
  height: 40px;
  width: 6px;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

/* Diamond */
.service-icon.diamond::before {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  left: 15px;
  top: 15px;
}

.service-icon.diamond::after {
  display: none;
}

/* Bars */
.service-icon.bars::before {
  width: 6px;
  height: 40px;
  left: 18px;
  top: 10px;
}

/* ================= ICON CAROUSEL ================= */

.icon-carousel-section {
  padding: 80px 7%;
  background: #f6f7fb;
}


.icon-carousel-container {
  max-width: 1200px;   /* adjust: 1100 / 1200 / 1300 */
  margin: 0 auto;
  padding: 0 20px;     /* inner spacing */
}
.icon-carousel-header {
  display: flex;

  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.icon-carousel-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
}

.icon-carousel-arrows button {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

/* Carousel Layout */
.icon-carousel {
  overflow: hidden;
}

.icon-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

/* Card */
.icon-card {
  min-width: 320px;
  background: #f1f3fb;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Icon */
.icon-wrap {
  width: 70px;
  height: 70px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.icon-wrap img {
  width: 36px;
}

/* Text */
.icon-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000;
}

.icon-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 30px;
}

.icon-card a {
  display: inline-flex;
  /* IMPORTANT */
  width: 36%;
  /* prevents full width */
  align-items: center;
  padding: 10px 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f)#116DB6;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}


/* Hover Effect */
.icon-card a:hover {
  background: #8CC63F;
  /* Accent green */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(140, 198, 63, 0.35);
}


/* ==============================
   INDUSTRIES SECTION
================================ */

.industries-section {
  padding: 100px 0;
  background: #ffffff;
}

.icon-wrap svg {
  transition: transform 0.3s ease;
}

.icon-card:hover .icon-wrap svg {
  transform: scale(1.1);
}


.industries-grid .industry-card:nth-last-child(2) {
  grid-column: 2 / 3;
}

.industries-grid .industry-card:last-child {
  grid-column: 3 / 4;
}

.section-subtitle {
  font-size: 1.05rem;
  /* Slightly smaller than the heading */
  color: #555;
  /* Soft gray for readability */
  margin: 0.5rem 0 1.5rem;
  /* Spacing between heading and paragraph */
  line-height: 1.6;
  /* Comfortable line spacing */
  font-weight: 400;
  /* Normal weight */
}

.icon-carousel-section .section-subtitle {
  max-width: 600px;
  /* Limit width for readability */
}

.industries-section .section-subtitle {
  max-width: 650px;
}


.industries-section .industries-header,
.industries-section .industries-grid {
  max-width: 1300px;
  /* controls width */
  margin: 0 auto;
  /* centers section */
  padding: 0 20px;
  /* safe spacing on small screens */
}

.industries-header {
  max-width: 900px;
  margin-bottom: 60px;
}

.industries-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.industries-header p {
  font-size: 18px;
  color: #666;
  margin-top: 16px;
  padding-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ==============================
   INDUSTRY CARD
================================ */

.industry-card {
  position: relative;
  background: #f6f7ff;
  border-radius: 26px;
  padding: 40px 36px 90px;
  min-height: 273px;
  overflow: hidden;
  transition: background 0.4s ease;
}

/* Hover background */
.industry-card:hover {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
}

/* ==============================
   ICON
================================ */

.industry-icon {
  display: inline-flex;
  font-size: 26px;
  margin-bottom: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.industry-icon.purple {
  color: #6c4cff;
}

.industry-icon.red {
  color: #ffffff;
}

.industry-icon.teal {
  color: #22c1c3;
}

.industry-icon.blue {
  color: #3b82f6;
}

/* Hide icon on hover */
.industry-card:hover .industry-icon {
  opacity: 0;
  transform: scale(0.8);
}

/* ==============================
   HEADING
================================ */

.industry-card h3 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 14px;
  transition: all 0.4s ease;
  color: #000;
}

/* Move heading to top-left */
.industry-card:hover h3 {
  position: absolute;
  top: 28px;
  left: 36px;
  margin: 0;
  color: #ffffff;
}

/* ==============================
   PARAGRAPH
================================ */

.industry-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  transition: all 0.4s ease;
}

.industry-card:hover p {
  color: #ffffff;
  margin-top: 22px;
}

/* ==============================
   EXPLORE BUTTON
================================ */

.explore-btn {
  position: absolute;
  bottom: 70px;
  left: 36px;
  padding: 10px 22px;
  border-radius: 24px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  background: transparent;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);

  transition: opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

/* Show button on hover */
.industry-card:hover .explore-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);

  }

  .industries-grid .industry-card:nth-last-child(2),
  .industries-grid .industry-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {

  .industries-section {
    padding: 70px 0;
  }

  .industries-header {
    margin-bottom: 40px;
  }

  .industries-header h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .industries-header p {
    font-size: 16px;
    padding-bottom: 30px;
  }

  .industries-grid {
    gap: 20px;
  }

  .industry-card {
    padding: 28px 24px 80px;
    border-radius: 22px;
  }

  .industry-card h3 {
    font-size: 20px;
  }

  .industry-card p {
    font-size: 14px;
  }

  .explore-btn {
    left: 24px;
    bottom: 32px;
  }
}
@media (hover: none) {
  .industry-card:hover .industry-icon {
    opacity: 1;
    transform: none;
  }

  .industry-card:hover h3 {
    position: static;
    color: #fff;
  }

  .industry-card:hover p {
    color: #fff;
    margin-top: 0;
  }

  .industry-card:hover .explore-btn {
    opacity: 1;
    visibility: visible;
    transform: none;
    border-color: #fff;
    color: #fff;
    font-size:20px;
  }
}


.fa-solid,
.fas {
  color: #8CC63F;
}

/* ================= FOOTER ================= */

.main-footer {
  position: relative;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #e6f4f6;

  font-family: Arial, sans-serif;
}


/* Curved Top */
.footer-curve {
  height: 80px;
  background: #fff;
  border-bottom-left-radius: 100% 60%;
  border-bottom-right-radius: 100% 60%;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 32px;

}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 80px 0;
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 32px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 31px;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Reviews Strip */
.footer-reviews {
  background: #f3f6fb;
  padding: 20px 0;
}

.reviews-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.footer-reviews .reviews-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-reviews .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* keep if needed */
}

.footer-reviews .logo img {
  max-height: 108px;
  width: auto;
  display: block;
}


/* Contacts */
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30%;
  padding: 40px 0;
  color: #fff;
}

.footer-contacts p {
  font-size: 22px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}


.social-connect {
  margin-top: 30px;
}

.social-connect h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #116db6;
  font-size: 23px;
  transition: all 0.3s ease;
  text-decoration: none;

}

.social-icons a:hover {
  background: linear-gradient(90deg, #0f6cb5, #8ec63f);
  color: #fff;
  transform: translateY(-3px);
}



.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer-links{
   margin-right: 162px;
    margin-top: 12px;
}
.footer-links a:hover {
  color: #fff;
}



/* Tablet */
@media (max-width: 991px) {
  .footer-links {
    margin-right: 0;
    text-align: center;
  }

  .footer-links a {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 576px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-bottom: 8px;
  }
}


/* Responsive */
@media (max-width: 992px) {

  .footer-content,
  .footer-contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {

  .footer-content,
  .footer-contacts {
    grid-template-columns: 1fr;
      gap: 24px; /* tighter spacing on mobile */
  }

  .reviews-inner,
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-reviews .logo img {
      max-height: 78px;
}
  
  
}


.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 25px;
  right: 25px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 73px;
  height: 73px;
}



.whatsapp-float:focus,
.whatsapp-float:active {
  outline: none;
}


/* ==============================
   OUR PURPOSE SECTION
================================ */

.our-purpose-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

/* Large faded background text */
.purpose-bg {
  position: absolute;
  top: -181px;
  left: 0;
  font-size: 140px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* Wrapper */
.purpose-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* Content row */
.purpose-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 100px;
}

/* Icon */
.purpose-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2ff7, #ff2f92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-icon span {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.35),
    0 0 0 16px rgba(255, 255, 255, 0.2);
}

/* Text */
.purpose-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.purpose-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  max-width: 760px;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .purpose-bg {
    font-size: 72px;
  }

  .purpose-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
  }
}

/* =========================
   WE CARE SECTION
========================= */

.we-care {
  background: radial-gradient(circle at top, #fff 0%, #fff, 70%);
  padding: 120px 20px;
  color: #fff;
}

.we-care-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.we-care-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.we-care-header h2 {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #116DB6;
  font-family: 'poppins', sans-serif;
}

.we-care-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
}

/* Cards layout */
.we-care-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card base */
.we-care-card {
  border-radius: 22px;
  padding: 17px 40px;
  min-height: 311px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Solid border */
hr.solid {
  width: 148px;
  border-top: 3px solid #116db6;
}

.we-care-card:hover {
  transform: translateY(-12px);
}

/* Icon */
.we-care-card .icon {
  font-size: 42px;
}

/* Heading */
.we-care-card h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: 'poppins', sans-serif;
}

/* List */
.we-care-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.we-care-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.6;
  color: #f1f1f1;
  font-family: 'inter', sans-serif
}

.we-care-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 20px;
}

.we-care-card.blue {
  background: linear-gradient(135deg, #0f6cb5 0%, #2bb673 100%);
}


/* Pink card hover animation */
.we-care-card.pink {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Bottom-to-top overlay */
.we-care-card.pink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg, #0f6cb5 0%, #2bb673 100%);
  z-index: -1;
  transition: height 0.45s ease;
}

/* Hover trigger */
.we-care-card.pink:hover::before {
  height: 100%;
}

/* Text color on hover */
.we-care-card.pink:hover h3,
.we-care-card.pink:hover li,
.we-care-card.pink:hover p {
  color: #fff !important;
}

/* Icon color on hover */
.we-care-card.pink:hover .icon svg,
.we-care-card.pink:hover .icon i {
  fill: #fff;
  color: #fff;
}

/* Optional lift effect */
.we-care-card.pink:hover {
  transform: translateY(-8px);
  transition: transform 0.35s ease;
}


.we-care-card.purple {

  background: linear-gradient(135deg, #0f6cb5 0%, #2bb673 100%);
}



/* Responsive */
@media (max-width: 992px) {
  .we-care-cards {
    grid-template-columns: 1fr;
  }

  .we-care-card {
    min-height: auto;
  }

  .we-care-header h2 {
    font-size: 34px;
  }
}

.our-story-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.section-title {
  font-size: 44px;
  color: #0f6cb5;
  font-weight: 600;
  margin-bottom: 10px;
}

.title-underline {
  width: 70px;
  height: 5px;
  background: #1aa6a6;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 30px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4f5d73;
  margin-bottom: 18px;
}

.story-highlight {
  margin-top: 30px;
  padding: 22px 28px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  border-left: 6px solid #1aa6a6;
  border-radius: 14px;
  color: #fff;
}

.story-highlight p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.story-highlight span {
  color: #fff;
  font-weight: 600;
}

/* RIGHT */
.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-top:95px;
}

.stat-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.stat-card h3 {
    
    
    
        font-size: 56px;
    font-weight: 700;
    background: linear-gradient(90deg, #0f6cb5, #8cc63f)#116DB6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
 
  
}

.stat-card p {
  margin: 0;
  font-size: 15px;
  color: #5c6f82;
}

.stat-card.full {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-card.full h4 {
  margin: 0;
  font-size: 18px;
  color: #1f2d3d;
}

.stat-card.full p {
  margin-top: 5px;
  font-size: 14px;
}

.badge {
  width: 50px;
  height: 50px;
  background: #1aa6a6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .our-story-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-card.full {
    grid-column: span 1;
  }
}

/* ================= HERO SECTION ================= */

.hero-wrapper1 {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;

  /* 🔥 LEFT ALIGN CONTENT */
  justify-content: flex-start;
  text-align: left;

  /* Background image + overlay (keep yours) */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-left: 8%;
  padding-right: 8%;

  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}


/* ================= HERO CONTENT ================= */

.hero-content1 {
  max-width: 900px;
  padding: 0 20px;
  z-index: 10;
  will-change: transform;
}

.hero-content1 span {
  display: block;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 500;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional for Firefox future support */
  background-clip: text;
  color: transparent;
}

.hero-content1 h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.hero-content1 p {
  padding-bottom: 12px;
}

.hero-btn {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f)#116DB6;
  padding: 14px 27px 16px 27px;
  border-radius: 32px;
  font-size: 19px;
  text-decoration: none;
  color: #fff
}

.her0-btn:hover{
    background:#8CC63F
}

/* ================= CURVED GRID WAVE =================

.hero-wrapper1::after {
    content: "";
    position: absolute;
    right: -12%;
    top: -15%;
    width: 75%;
    height: 130%;

    background-image:
        linear-gradient(rgba(17, 109, 182, 0.85) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 198, 63, 0.85) 1px, transparent 1px);

    background-size: 36px 36px;
    transform: rotate(-10deg) skewX(-18deg);
    border-radius: 0 0 0 60%;
    opacity: 0.9;

    animation: gridWaveMove 14s linear infinite;
    z-index: 2;
}*/

/* ================= GRID ANIMATION ================= */

@keyframes gridWaveMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 220px 220px, 220px 220px;
  }
}

/* ================= BOTTOM V-SHAPE DIVIDER ================= 

.hero-bottom-divider1 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
}

.hero-bottom-divider1 svg {
    width: 100%;
    height: 100%;
}

.shape-fill {
    fill: #ffffff;
}*/

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero-content1 h1 {
    font-size: 3.4rem;
  }

  .hero-wrapper1::after {
    right: -25%;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-wrapper1 {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content1 h1 {
    font-size: 2.6rem;
  }

  .hero-wrapper1::after {
    display: none;
  }
}


.analytics-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.analytics-section .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.analytics-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 60px;
  color: #1f2d3d;
}

.analytics-title .blue {
  color: #0f6cb5;
}

.analytics-title .green {
  color: #8cc63f;
}

/* CARDS */
.analytics-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.analytics-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.analytics-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #4f5d73;
  margin: 0;
}

/* LEFT BLUE CARD */
.blue-card {
  border-left: 6px solid #0f6cb5;
}

/* RIGHT GREEN CARD */
.green-card {
  border-left: 6px solid #8cc63f;
}

/* ICON */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.icon.blue {
  background: #e8f1fb;
  color: #0f6cb5;
}

.icon.green {
  background: #eef8e6;
  color: #8cc63f;
}

/* CTA BAR */
.analytics-cta {
  margin-top: 30px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #ffffff;
  text-align: center;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .analytics-cards {
    grid-template-columns: 1fr;
  }

  .analytics-title {
    font-size: 34px;
  }
}

/* ================= CASE STUDY SECTION ================= */

.case-study-section {
  background: #ffffff;
  padding: 80px 20px;
}

.case-study-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #f3f3f3;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */

.case-study-content {
  flex: 1;
}

.case-study-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
}

.case-study-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* ================= STATS ================= */

.case-study-stats {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 25px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #116db6;
  margin-bottom: 6px;
}

.stat p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.divider {
  width: 1px;
  height: 50px;
  background: #ddd;
}

/* ================= BUTTON ================= */

.case-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #0f6cb5, rgb(140, 198, 63));
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-btn:hover {
    background: #8CC63F;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(140, 198, 63, 0.35);
}

/* ================= RIGHT IMAGE ================= */

.case-study-image {
  flex: 1;
}

.case-study-image img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .case-study-wrapper {
    flex-direction: column;
    padding: 19px;
  }

  .case-study-content h2 {
    font-size: 25px;
    text-align: center;
    
  }
  
  .case-study-content p{
      text-align: center;
  }
}

@media (max-width: 600px) {
  .case-study-stats {
    flex-direction: column;
    gap: 15px;
  }

  .divider {
    display: none;
  }
}




/* contact-hero Section */
.contact-hero {
  position: relative;
  height: 550px;
  width: 100%;
  overflow: hidden;
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 109, 182, 0.85), rgba(17, 109, 182, 0.75));
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  text-align: center;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeIn 0.6s ease-out;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #8CC63F;
}

.breadcrumbs .current {
  color: #8CC63F;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 100px 0;
  background-color: #f6f7ff;
  /* 👈 background goes here */
}

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}


.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #116DB6;
  margin-bottom: 1rem;
}

.contact-info>p {
  color: #64748b;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  background: rgba(17, 109, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.info-item:hover .info-icon {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #116DB6;
  transition: color 0.3s;
}

.info-item:hover .info-icon svg {
  color: #ffffff;
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.info-content p {
  color: #64748b;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(17, 109, 182, 0.1);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #116DB6;
  margin-bottom: 1.5rem;
}

/* Two column row (Name + Email) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; /* reduced from 3rem (was too large horizontally) */
  margin-bottom: 1.5rem;
}

/* Proper vertical spacing between all fields */
.form-group {
  margin-bottom: 1.5rem; /* increased spacing */
}

/* Input fields */
.form-input {
  width: 100%;
  height: 52px; /* slightly balanced */
  padding: 0 6px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 9px 4px 0px 9px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 160px; /* more breathing space */
  transition: all 0.3s ease;
  margin-bottom: 1.5rem; /* fixes sticky bottom */
}

/* Focus state */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 109, 182, 0.15);
  background: #ffffff;
}

/* Button spacing fix (VERY IMPORTANT) */
.contact-form button,
.send-btn {
  margin-top: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile extra breathing space */
@media (max-width: 576px) {
  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-textarea {
    min-height: 140px;
  }
}

.submit-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f)#116DB6;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(17, 109, 182, 0.3);
}

.submit-btn:hover {
  background: #8CC63F;
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(140, 198, 63, 0.35);
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: #f8fafc;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #116DB6;
  margin-bottom: 1rem;
}

.features-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(17, 109, 182, 0.1);
  overflow: hidden;
  transition: all 0.5s;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(17, 109, 182, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-content {
  position: relative;
  z-index: 10;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(17, 109, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.5s;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #116DB6;
  transition: color 0.5s;
}

.feature-card:hover .feature-icon svg {
  color: #ffffff;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.75rem;
  transition: color 0.5s;
}

.feature-card:hover .feature-content h3 {
  color: #ffffff;
}

.feature-content p {
  color: #64748b;
  transition: color 0.5s;
}

.feature-card:hover .feature-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 300px;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-info h2,
  .features-header h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
.tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding-left: 20px;
}

.tab {
  background: none;
  border: none;
  color: #0F6CB5;
  text-align: left;
  font-size: 18px;
  padding: 19px 14px 18px 38px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: 1.5px solid #e6e6e6;
  border-radius: 23px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.tab:hover {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #fff;
}

.tab.active {
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  color: #fff;
}

.tab-content {
  flex: 2;
  background: #f4f4f4;
  color: #000;
  line-height: 28px;
  padding: 14px 14px 38px 14px;
  border-radius: 20px;
  display: none;
}

.tab-content.active {
  display: block;
  background: #fff;
}

.tab-content ul {
  margin-top: 15px;
}

.tab-content li {
  margin-bottom: 10px;
}

.analytics-title p {

  font-size: 17px;
  font-weight: 500;



}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #0F6CB5;
  margin: 0px 0px 56px 0px;
}

.analytics-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;}
    
      .analytics-section {
    color: #fff;
    padding: 80px 5%;
      
  }

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width: 768px) {

  .analytics-section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .analytics-wrapper {
    flex-direction: column;
    /* Stack vertically */
    gap: 25px;
  }

  .tabs {
    padding-left: 0;
    /* Remove left space */
    gap: 15px;
  }
  

  



  .tab {
    width: 100%;
    /* Full width tabs */
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .tab-content {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .tab-content h3 {
    font-size: 20px;
  }

  .tab-content li {
    font-size: 14px;
  }
}

.cta-section {
  background: url('images/cta.webp') center/cover no-repeat;
  padding: 52px 20px;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* adjust 0.4 - 0.7 for lighter/darker */
  z-index: 1;
}

/* Keep content above overlay */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.cta-container h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(90deg, #1f6fb2, #8cc63f);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
@media(max-width:320px) {

  .data-section {
    padding: 60px 0px !important;
  }

}

.data-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}



.data-heading h1 {
  margin: 0 0 12px 0;
}

.data-heading p {
  margin: 0 0 24px;
}

.data-section {
  padding: 60px 20px;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
}

.top-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.card {
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
  padding: 28px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0f6cb5, #8cc63f);
  transition: 0.3s ease;
}

.card:hover::before {
  width: 100%;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.large-card {
  min-height: 220px;
}

.icon-box {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #0f172a;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.card p {
  color: #5b6b7c;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.learn-more {
  color: #2b6ef3;
  font-weight: 600;
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  padding: 13px 5px;
  font-size: 15px;
  color: #2b3a4b;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-box li {
  list-style: disc;
  padding-left: 5px;
  font-size: 16px;
}

.feature-box li::marker {
  color: #2b6ef3;
  /* blue bullet color */
  font-size: 25px;
}

/* Bottom Row */
.bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card ul {
  padding-left: 18px;
  margin: 0;
  line-height: 28px;
}

.card ul li {
  font-size: 16px;
  color: #4a5a6a;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .top-row {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .bottom-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .bottom-row {
    grid-template-columns: 1fr;
  }

  .card h2 {
    font-size: 22px;
  }
}

