@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    /* font-size */
    --big-font-size: 5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --medium-font-size: 0.9rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* color */

     
     /*Aaru*/
     --theme-color:#0078D7;   
}

/*scrollbar style*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
    cursor: pointer;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color); 
    border-radius: 6px; 
    height: 2px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-color);
    cursor: pointer;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    font-family: 'Inter', sans-serif;
  }
  body{
      width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

.container {

  width: 100%;

  max-width: 1150px;

  margin: auto;

  padding: 0 20px;

}

.hero-container{
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 20px;
}

/* ======================
   NAVBAR
====================== */

.navbar {
  position: relative; 
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}

/* Center Menu (Desktop) */


.menu {

  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 80px;

}

.menu a {
      position: relative;
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}


/* ACTIVE MENU */

.menu a.active{
  color: var(--theme-color);
  font-weight: 600;
}

/* Right Actions */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav-actions a:hover{
    var(--theme-color);
}

.login {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.desktop-login,
.desktop-btn {
  display: inline-block;
}

.desktop-btn:hover{
    color: white;
}

/* Mobile buttons hidden */

.mobile-login,
.mobile-btn {
  display: none;
}

/* BUTTONS */

.btn {
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--theme-color);
  color: white;
  width: 9em;
  text-align: center;
  font-weight: bold;
  padding: 0.8em;
}

.secondary {
  background: #A9DBFF;
  color: #333;
  width: 9em;
  padding: 0.8em;
  text-align: center;
}

/* HAMBURGER */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 10px;
}

/* ======================
   STICKY NAVBAR
====================== */

.navbar.sticky {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  background: white;

  z-index: 999;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  animation: slideDown 0.3s ease;

}

.navbar.sticky + .hero {
  margin-top: 90px;
}

@keyframes slideDown {

  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }

}


/* Dropdown animation */

@keyframes slideDownMenu {

  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

#product_section,
#vision_section{
  scroll-margin-top: 120px;
}
/* =========================
        HERO
========================= */
.main_div{
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  height: fit-content;
  margin: 0 !important;
  padding: 0 !important;
}

/* TOP RIGHT DARK SPRAY */
.main_div::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -180px;
  right: -180px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, #FFFFFF 65%, transparent) 0%,
    color-mix(in srgb, #FFFFFF 40%, transparent) 35%,
    transparent 70%
  );
  z-index: 0;
}


/* BOTTOM LEFT LIGHT SPRAY */

.main_div::after {

  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  bottom: 400px;
  left: -150px;

  background: radial-gradient(
    circle,
    color-mix(in srgb, #FFFFFF 45%, transparent) 0%,
    color-mix(in srgb, #FFFFFF 25%, transparent) 40%,
    transparent 75%
  );

  z-index: 0;

}


/* Content above spray */

.main_div .container {

  position: relative;

  z-index: 1;

}

.hero {
 background-color: var(--theme-color);
  padding: 165px 0 140px;
  color: white;
  text-align: center;
  display: grid;
  justify-content: center;

}

.hero h1 {
  font-size : 4em;
  font-weight: 700;
  line-height: 1.3;
}

.hero-sub {

  margin-top: 20px;
  font-size: 1.5em;
  max-width: 720px;
  margin: 2em auto;
  color: #e5f0fb;
}

.hero-sub strong{
    color: white;
    font-weight: bold;
}

.hero-buttons{

  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;

}



/* Buttons */

.btn-white {

  background: white;
  color: var(--theme-color);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;

}

.btn-outline {

  background: #A9DBFF;
  color: black;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;

}

/* ── STATS BOX ── */
.stats-box {
  width: 100%;
  margin: 40px auto 0;
  background: #A9DBFF;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  color: black;

  /* ✅ shining white glow */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);

}

.stat {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0 12px;           /* ✅ was 40px → fixed to 12px */
  position: relative;
}

/* divider */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: white;
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.stat p {
  font-size: 11px;         /* ✅ was 12px → tighter to fit nowrap */
  margin-top: 10px;
  letter-spacing: 0.3px;    /* ✅ was 0.6px → less spread */
  white-space: nowrap;
  font-weight: 600;
}
.divider {
  width: 2px;
  height: 70px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;       /* ← divider never squishes */
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .stats-box {
    max-width: 100%;
    margin: 40px 16px 0;
    padding: 24px 16px;
    border-radius: 14px;
  }

  .stat h3 { font-size: 22px; }
  .stat p  { font-size: 11px; }
  .divider { height: 50px; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .stats-box {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 12px;
    margin: 30px 14px 0;
  }

  .stat {
    flex: 0 0 50%;        /* 2×2 grid */
    padding: 14px 8px;
  }

  .divider {
    display: none;        /* hide dividers in 2×2 layout */
  }

  /* Add border lines manually for 2×2 */
  .stat:nth-child(1),
  .stat:nth-child(3) {
    border-right: 1.5px solid rgba(255,255,255,0.5);
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
  }

  .stat h3 { font-size: 22px; }
  .stat p  { font-size: 10.5px; letter-spacing: 0.3px; }
}

/* ======================
   WHO WE ARE SECTION
====================== */
.who-we-are {
  background: linear-gradient(
    to bottom,
    #F2F4F6,
    #ffffff
  );
  padding: 80px 0;
  text-align: left;
}

/* Wrapper */
.who-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;                        /* ✅ was 60px */
}

/* LEFT SIDE */
.who-content {
  flex: 1;                          /* ✅ was flex:3 */
}

.who-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.who-title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  line-height: 1.3;
}

.who-text {
  font-size: 16px;
  color: #45464D;
  line-height: 1.7;
  margin-bottom: 16px;
}

.who-text span {
  font-weight: bold;
}



/* RIGHT SIDE STATS */
/* LEFT SIDE — bigger */
.who-content {
  flex: 1.5;    
}

/* RIGHT SIDE — smaller */
.who-stats {
  flex: 1;          
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  justify-content: center;
}

.stat-card {
  background: white;
  border: 1px solid #9E9E9E;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: 0.3s;
  width: 100%;      
  min-width: 0; 
  box-sizing: border-box;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #45464D;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 0.9em;
  color: #6B7280;
}


/* ── PRODUCT SECTION ── */
.product-section {
  background: #ffffff;
  padding: 80px 0 96px;
  overflow: visible; /* prevent clipping */
}

.product-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #0f1117;
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: #5a6376;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* Card — Desktop: vertical stack */
.product-card {
  background: #ffffff;
  border: 1.5px solid #e4e9f2;
  border-radius: 16px;
  padding: 28px 24px 32px;
  position: relative;
  overflow: hidden;
  display: block; /* default: block, NOT flex */
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-4px);
}

.product-card:hover::before { opacity: 1; }

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.25s;
}

.product-card:hover .icon-box { background: #DBEAFE; }

.icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card-body {
  flex: 1;
  min-width: 0;
}

.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card p {
  font-size: 14px;
  color: #5a6376;
  line-height: 1.65;
  margin: 0;
}


/* ======================
        VISION
====================== */

.vision-section {

  background: radial-gradient(
      circle at center,
      #57B4FD 0%,
      #0078D7 100%
  );

  color: white;

  padding: 150px 0;

  text-align: center;

}

.vision-label {

  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;

  margin-bottom: 20px;

}

.vision-title {

  font-size: 36px;
  font-weight: 600;

  max-width: 700px;

  margin: auto;

  line-height: 1.3;

}

.vision-sub {

  margin-top: 25px;

  font-size: 18px;

  opacity: 0.9;

}


/* ======================
        WHY SECTION
====================== */

.why-section {

  background: #F2F4F6;

  padding: 90px 0;

}

.why-heading {

  font-size: 32px;

  font-weight: 700;

  color: var(--theme-color);

  margin-bottom: 50px;

}

.why-wrapper {

  display: flex;

  align-items: center;

  gap: 60px;

}

/* IMAGE */

.why-image img {

  width: 100%;

  max-width: 700px;

  border-radius: 20px;

}

/* FEATURES */

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}


.feature-icon {
  width: 60px;
  height: 60px;

  background: #DFF2FF; 
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* TEXT */

.feature-text h4 {

  font-size: 18px;

  color: var(--theme-color);

  margin-bottom: 6px;

}

.feature-text p {

  font-size: 15px;

  color: #6B7280;

  line-height: 1.6;

}


/* ======================
   DEMO CTA SECTION
====================== */

.demo-cta {

  position: relative;

  background: var(--theme-color);

  padding: 120px 20px;

  text-align: center;

  overflow: hidden;

}


/* TOP RIGHT SPRAY */

.demo-cta::before {

  content: "";

  position: absolute;

  top: -120px;

  right: -120px;

  width: 450px;

  height: 450px;

  background: radial-gradient(
      circle,
      rgba(255,255,255,0.25) 0%,
      rgba(255,255,255,0.15) 30%,
      rgba(255,255,255,0.05) 50%,
      transparent 70%
  );

  pointer-events: none;

}


/* BOTTOM LEFT SPRAY */

.demo-cta::after {

  content: "";

  position: absolute;

  bottom: -120px;

  left: -120px;

  width: 450px;

  height: 450px;

  background: radial-gradient(
      circle,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.12) 30%,
      rgba(255,255,255,0.05) 50%,
      transparent 70%
  );

  pointer-events: none;

}

/* Container */

.demo-container {

  max-width: 900px;

  margin: auto;
  display: grid;
  justify-content: center;

}


/* Title */

.demo-title {

  font-size: 40px;

  font-weight: 700;

  color: #FFFFFF;

  line-height: 1.3;

  margin-bottom: 18px;

}


/* Subtitle */

.demo-subtitle {

  font-size: 22px;

  color: rgba(255,255,255,0.9);

  margin-bottom: 35px;

  line-height: 1.6;
  width: 20em;

}


/* Buttons Wrapper */

.demo-buttons {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;
  gap: 16px;

}


/* Buttons */

.btn {

  padding: 14px 32px;

  font-size: 16px;

  font-weight: 600;

  border-radius: 10px;

  text-decoration: none;

  transition: 0.3s ease;

  min-width: 170px;

}


/* Hide line break on smaller screens */

.desktop-break {

  display: inline;

}


/* ======================
   TABLET VIEW
====================== */

@media (max-width: 992px) {

  .demo-title {

    font-size: 34px;

  }

  .demo-subtitle {

    font-size: 17px;

  }

}



/* ======================
   MOBILE VIEW
====================== */

@media (max-width: 768px) {

  .demo-cta {

    padding: 60px 20px;

  }

  .demo-title {

    font-size: 28px;

  }

  .demo-subtitle {

    font-size: 16px;

  }

  .desktop-break {

    display: none;

  }

}



/* ======================
   SMALL MOBILE
====================== */

@media (max-width: 480px) {

  .demo-title {

    font-size: 24px;

  }

  .demo-subtitle {

    font-size: 15px;

  }

  .btn {

    width: 100%;

  }

}




/* =========================
        SCROLL BUTTON
========================= */

/* Wrapper */
.scroll-top-wrap {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show */
.scroll-top-wrap.show {
  opacity: 1;
  pointer-events: auto;
}


/* SVG Circle */
.progress-ring {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 60px;
  height: 60px;

  transform: translate(-50%, -50%) rotate(-90deg);

  pointer-events: none; /* 🔥 important */
}


/* Background Circle */
.progress-ring-bg {
  fill: none;
  stroke: transparent;
  stroke-width: 6;
}


/* Progress Circle */
.progress-ring-circle {
  fill: none;
  stroke: #B8B8B8;
  stroke-width: 6;
  stroke-linecap: round;

  stroke-dasharray: 163;
  stroke-dashoffset: 163;

  transition: stroke-dashoffset 0.1s linear;
}


/* Button */
.scroll-top {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: none;

  background: var(--theme-color);
  color: white;

  font-size: 16px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 16px rgba(0,0,0,0.2);

  transition: transform 0.3s ease;
}


/* Hover */
.scroll-top:hover {
  transform: translate(-50%, -55%);
}

/* =========================
   FOOTER
========================= */

.footer {

  background: #f5f6f8;

  padding-top: 60px;

}

/* Container */

.footer-container {

  max-width: 80%;

  margin: auto;

  padding: 0 20px;

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1.5fr;

  gap: 40px;

}

/* Logo */

.footer-logo {

  width: 120px;

  margin-bottom: 12px;

}

.footer-desc {

  font-size: 14px;

  color: black;

  margin-bottom: 20px;

  line-height: 1.6;
  
  font-weight: 500;

}

/* Social */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 2em;
}

/* Icon circle */
.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid grey;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* SVG */
.social-icon {
  width: 22px;
  height: 22px;
  fill: #888888;
  transition: fill 0.3s ease;
}

/* Instagram (stroke-based) */
.footer-social a:nth-child(2) .social-icon {
  fill: none;
  stroke: #888888;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover — circle becomes theme color */
.footer-social a:hover {
  background: var(--theme-color);
  transform: translateY(-4px);
   border: 1px solid var(--theme-color);
}

/* Hover — all icons turn white */
.footer-social a:hover .social-icon {
  fill: white;
  stroke: none;
}

.footer-social a:nth-child(2):hover .social-icon {
  fill: none;
  stroke: white;
}

/* Column Titles */

.footer-col h4 {

  font-size: 16px;

  margin-bottom: 12px;
  
  text-align: left;

}

/* Links */

.footer-col ul {


  padding: 0 1em;
  
  margin-top: 1.5em;

}

.footer-col ul li {

  margin-bottom: 8px;
  
  text-align: left;

}

.footer-col ul li a {

  text-decoration: none;

  color: black;

  font-size: 16px;
  font-weight: 500;
  text-align: left;

}

.footer-contact{
    list-style: none;
    
    padding: 0 !important;
}

.footer-contact li {

  font-size: 15px;

  color: black;
  
  display: flex;
  
  gap: 1em;
  
  padding: 0.5em 0em;
  
  font-weight: 500;

}

.footer-contact li p{
    text-align: left;
}

/* Bottom */

.footer-bottom {

  border-top: 1px solid #ddd;

  margin-top: 40px;

  padding: 15px;

  text-align: center;

  font-size: 14px;

  color: black;

}

.footer-bottom span{
    color: var(--theme-color);
    font-weight: 700;
}

.footer-brand h3{
    color: var(--theme-color);
    margin : 0.6em 0em;
}


/* ======================
        TABLET
====================== */

@media (max-width:1080px) {

.hero h1 {
  font-size: 40px;
}

.stats-box {
  flex-wrap: wrap;
  gap: 20px;
}

.divider {
  display: none;
}

.product-grid {
    width: 950px !important;
}

.stat-card {
 min-width: 12em !important;
}
}

@media (max-width: 1024px) {
    
.hero h1 {
  font-size: 40px;
}

.stats-box {
  flex-wrap: wrap;
  gap: 20px;
}

.divider {
  display: none;
}

.product-grid {
    width: 950px !important;
}

.stat-card {
 min-width: 12em !important;
}

.vision-title {
  font-size: 30px;
}

.why-wrapper {

  flex-direction: column;

  text-align: center;

}

.why-image img {

  max-width: 100%;

}

.feature-text{
    text-align: left;
}

}

@media (max-width: 767px) {
    
    /* Show hamburger */

.hamburger {
  display: block;
  font-size: 26px;
  cursor: pointer;
}

/* Hide desktop buttons */

.desktop-login,
.desktop-btn {
  display: none;
}

.menu {

  position: absolute;

  top: 90px;

  left: 0;  
  right: 0;

  width: 100%;

  transform: none !important;

  display: none; 

  flex-direction: column;

  align-items: center;

  background: white;

  padding: 20px;

  gap: 18px;

  border-top: 1px solid #E5E7EB;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08);

  z-index: 999;

}

/* Show menu */

.menu.active {

  display: flex;

}

/* Links full width */

.menu a {

  width: 100%;

  text-align: center;

  font-size: 16px;

}

/* Mobile buttons visible */

.mobile-login,
.mobile-btn {

  display: block;

  width: 100%;

  max-width: 220px;

}

.vision-section {

  padding: 70px 20px;

}

.vision-title {

  font-size: 24px;

}

.vision-sub {

  font-size: 14px;

}

/* WHY */

.why-section {

  padding: 60px 20px;

}

.why-heading {

  font-size: 24px;

}

.feature-item {

  flex-direction: column;

  text-align: center;

}

/* HERO */

.hero {

  padding: 80px 20px 100px;

  text-align: center;

}

.hero-content{
  margin-top: 2em;   
}

.hero h1 {

  font-size: 28px;
  line-height: 1.4;

}

.hero-sub {

  font-size: 15px;

  max-width: 100%;

  margin: 20px auto;

}

/* BUTTONS */

.hero-buttons {

  flex-direction: column;

  align-items: center;

  gap: 12px;

}

.btn-white,
.btn-outline {

  width: 100%;

  max-width: 260px;

}

/* STATS */

.stats-box {

  flex-direction: column;

  gap: 18px;

  padding: 20px;
  
  margin:   2em 0;

}

.stat {

  width: 100%;

}

.stat h3 {

  font-size: 22px;

}

.divider {

  display: none;

}

/* Top Right Glow */

.main_div::before {

  width: 300px;
  height: 300px;

  top: -120px;
  right: -120px;

}

/* Bottom Left Glow */

.main_div::after {

  width: 260px;
  height: 260px;

  bottom: 200px;
  left: -100px;

}

      .who-we-are {
    padding: 60px 0;
  }

  .who-title {
    font-size: 26px;
  }

  .who-text {
    font-size: 15px;
  }

  .who-stats {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    
  }

  .stat-card {
     width: 100%;
    padding: 22px 18px;
    text-align: center;
  }

/* CTA */

.cta-title {

  font-size: 26px;

}

.cta-subtitle {

  font-size: 14px;

}

/* Footer */

.footer-container {

  grid-template-columns: 1fr;

  text-align: center;

}

.footer-social {

  justify-content: center;

}

.footer-contact li {

  text-align: center;

}
}

/* ── Tablet (2 cols) ── */
@media (max-width: 900px) {
    .who-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .who-title {
    font-size: 32px;
  }

  .who-stats {
    width: 100%;
  }
  .product-section { padding: 60px 0 72px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-subtitle { margin-bottom: 36px; }
}

/* ── Mobile (horizontal card) ── */
@media (max-width: 540px) {
  .product-section {
    padding: 36px 0 44px;
    overflow-x: hidden;
  }

  .product-section .container {
    padding: 0 16px;  /* consistent left+right padding */
    width: 100%;
    box-sizing: border-box;
  }

  .section-label { font-size: 11px; margin-bottom: 10px; }
  .section-title { font-size: 20px; margin-bottom: 10px; }
  .section-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  /* Horizontal layout fix */
  .product-card {
    display: flex !important;   /* force flex on mobile */
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 12px;
    overflow: hidden;
    width: 35%;
    box-sizing: border-box;
  }

  .icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;   /* prevent shrinking */
    border-radius: 9px;
    margin-bottom: 0;
  }

  .icon-box img {
    width: 20px;
    height: 20px;
  }

  .card-body {
    flex: 1;
    min-width: 0;     /* allows text to wrap properly */
    overflow: hidden;
  }

  .product-card h3 {
    font-size: 13.5px;
    margin-bottom: 3px;
  }

  .product-card p {
    font-size: 12px;
    line-height: 1.55;
  }
}

/* ======================
        SMALL MOBILE
====================== */

@media (max-width: 480px) {
    
    .nav-wrapper {
  height: 70px;
}

.menu {
  top: 70px;
}

.logo img {
  width: 130px;
}

/* HERO */

.hero {

  padding: 70px 15px 90px;

}

.hero h1 {

  font-size: 24px;

}

.hero-sub {

  font-size: 14px;

}

/* LOGO */

.logo img {

  width: 110px;

}

/* BUTTONS */

.btn-white,
.btn-outline {

  width: 100%;

  max-width: 240px;

  padding: 12px 18px;

  font-size: 14px;

}

/* STATS */

.stats-box {

  padding: 18px;

  border-radius: 14px;

}

.stat p {

  font-size: 12px;

}

  .who-title {
    font-size: 24px;
  }

  .who-label {
    font-size: 13px;
  }

  .stat-card h3 {
    font-size: 20px;
  }

.vision-title {

  font-size: 22px;

}

.feature-text h4 {

  font-size: 16px;

}

.feature-text p {

  font-size: 14px;

}

  .stat,
  .stat * ,
  .stat::before,
  .stat::after {

    border: none !important;
    border-right: none !important;
    border-left: none !important;
    box-shadow: none !important;
    outline: none !important;

  }

}

@media (max-width: 375px) {

  .stat,
  .stat * ,
  .stat::before,
  .stat::after {

    border: none !important;
    border-right: none !important;
    border-left: none !important;
    box-shadow: none !important;
    outline: none !important;

  }

}



