* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* default font */
}
html {
  scroll-behavior: smooth;
}


/* ================= BACKGROUND ================= */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle farthest-corner at center, rgba(10, 20, 40, 0.4), transparent);
    pointer-events: none;
}

/* ===== DARK HALO‑LIKE MOVING BACKGROUND ===== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: white;
    min-height: 100vh;
    background: black;
    overflow-x: hidden;
    position: relative;
}

/* Organic animated gradient overlay */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(10, 20, 40, 0.6), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(15, 30, 60, 0.5), transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(30, 50, 120, 0.4), transparent 40%);
    background-repeat: no-repeat;
    animation: haloMove 15s ease infinite;
    z-index: -2;
}

/* Subtle noise overlay for depth */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

@keyframes haloMove {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20%, 15%) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}

/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 600;
    color: #9bbfff;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.logo span {
    font-size: 28px;
    margin-right: 10px;
}

.template-btn {
    padding: 10px 18px;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    background: transparent;
    color: #d9d9d9;
    cursor: pointer;
    transition: 0.3s ease;
}

.template-btn:hover {
    background: #1b1b2e;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 20px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1.05;
    letter-spacing: -2px;
    text-align: center;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        #a3c2e6 0%,
        #82b7ec 20%,
        #2a4360 50%,
        #7fa9d3 80%,
        #f6f7f8 100%
    );

    background-size: 300% 100%;
    animation: haloGradientMove 4s linear infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow:
        0 0 35px rgba(120,180,255,0.35),
        0 0 70px rgba(80,140,255,0.2);
}

@keyframes haloGradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: -1;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #bcbcbc;
    margin-bottom: 20px;
}
.button-group {
  display: flex;
  gap: 1rem;          /* ← control the exact spacing you want */
  /* or: gap: 12px; etc. */
  flex-wrap: wrap;    /* optional: allow wrapping on small screens */
  justify-content: center; /* or flex-start / space-between etc. */
}

.buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #1f1f1f;
    transition: 0.3s ease;
}

.btn-dark {
    position: relative;
    background: #0c0c17;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.btn-dark:hover {
    background: white;
    color: #1f3b57;
}

.btn-dark::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(90deg, transparent, #3a5bbf, transparent);
    background-size: 200% 200%;
    z-index: -1;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.btn-outline {
    background: transparent;
    color: #5a7fff;
    border: 1px solid #3a5bbf;
}

.btn-outline:hover {
    background: #1b1b2e;
}

/* ================= PRO-INTRO SECTION ================= */
.pro-intro-section {
  padding: 100px 6% 100px;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-align: center;
}

.intro-card {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 60px 60px 60px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(80, 140, 255, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-120px) scale(0.96);
}

.intro-card.visible {
  opacity: 1;
  transform: translateX(0);
  animation: floatGentle 7s ease-in-out infinite;
  transition: 
    opacity 1.8s ease-out,
    transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.intro-card:hover {
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(80, 140, 255, 0.3);
  border: 1px solid rgba(120, 180, 255, 0.4);
}

.pro-intro-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 24px 0;
}

.pro-intro-title span {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #cfe9ff 30%,
    #6fa8dc 70%,
    #5fa9ff 100%
  );
  background-size: 300% 100%;
  animation: haloGradientMove 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 720px;
  margin: 0 auto 0;
}

/* ================= SERVICES SECTION ================= */
.services {
    padding: 80px 100px;
    text-align: left;
    background: transparent;
    position: relative;
}

.services h2 {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 100px;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #cfe9ff 35%,
        #7fb8ff 70%,
        #5a8dff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 30px rgba(120, 180, 255, 0.18),
        0 0 60px rgba(80, 140, 255, 0.12);
    max-width: 900px;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    width: 100%;
    max-width: 1200px;
    min-height: 280px;
    padding: 40px 50px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 20px rgba(120,180,255,0.15),
        0 0 40px rgba(80,140,255,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(80px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: 
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2,.65,.3,1);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 40px;
    column-gap: 50px;
}

.service-card ul li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-left: 24px;
    position: relative;
    color: #e0e7ff;
    opacity: 0.9;
}

.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8ab8ff;
    font-size: 18px;
    line-height: 1.5;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-card .number {
    font-size: 32px;
    margin-right: 10px;
}

.service-card .sub-heading {
    font-size: 17px;
    font-weight: 500;
    color: rgba(200, 220, 255, 0.8);
    margin: 0 0 28px 0;
    line-height: 1.4;
}

.service-card:hover {
    transform: translateY(-12px);
    border: 1px solid rgba(120,180,255,0.45);
    box-shadow:
        0 0 35px rgba(120,180,255,0.4),
        0 0 70px rgba(80,140,255,0.3);
}

/* ================= STATS SECTION ================= */
.stats-section {
  padding: 70px 8% 25px;
  position: relative;
  overflow: hidden;
  color: #e0e7ff;
  background: radial-gradient(circle farthest-corner at center, rgba(10, 20, 40, 0.4), transparent);
}

.stats-bg-layer::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(10, 20, 40, 0.6), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(15, 30, 60, 0.5), transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(30, 50, 120, 0.4), transparent 40%);
  background-repeat: no-repeat;
  animation: haloMove 15s ease infinite;
  z-index: -2;
}

@keyframes haloMove {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20%, 15%) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}

.stats-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
    text-align: center;
    margin: 0 auto 100px auto;
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 100px;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #cfe9ff 35%,
        #7fb8ff 70%,
        #5a8dff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 30px rgba(120, 180, 255, 0.18),
        0 0 60px rgba(80, 140, 255, 0.12);
    max-width: 900px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  row-gap: 60px;
}

.stat-card.long {
  grid-column: span 3;
  min-height: 280px;
  padding: 40px 50px;
}

.stat-card.square {
  grid-column: span 2;
  aspect-ratio: 1 / 1;
  min-height: 240px;
  padding: 30px 35px;
}

.stat-card {
  background: rgba(20, 25, 50, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(120, 180, 255, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(120, 180, 255, 0.3);
}

.stat-percentage {
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.stat-card.orange .stat-percentage {
  background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffaa33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-text {
  font-size: 16px;
  line-height: 1.4;
  color: #d0deff;
  margin-bottom: 20px;
  opacity: 0.92;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(120, 180, 255, 0.12);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #a0c0ff;
  border: 1px solid rgba(120, 180, 255, 0.25);
}

.stat-badge.secondary {
  background: rgba(120, 180, 255, 0.12);
  color: #a0c0ff;
  border-color: rgba(120, 180, 255, 0.25);
}

.badge-icon {
  font-size: 16px;
}

/* ================= ZOWIE FEATURES ================= */
.zowie-features {
  padding: 100px 5% 120px;
  background: #0a0f1e;
  color: #f0f4ff;
  position: relative;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.main-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4.2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 90px 0;
  text-align: left;
  max-width: 920px;
  color: #e0e7ff;
  opacity: 0.92;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  align-items: start;
}

.feature-item {
  text-align: left;
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.feature-item p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #c0d0ff;
  margin: 0;
  opacity: 0.88;
}

/* ================= BENEFITS SECTION ================= */

.benefits-section{
    padding:90px 40px;
    text-align:center;
    position:relative;
}

/* Moving background effect */
.benefits-section::before{
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(10, 20, 40, 0.6), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(15, 30, 60, 0.5), transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(30, 50, 120, 0.4), transparent 40%);
    background-repeat: no-repeat;
    animation: haloMove 15s ease infinite;
    z-index: -2;
}

@keyframes moveBg{
    0%{ transform:translateY(0px); }
    100%{ transform:translateY(-60px); }
}

/* Heading */

.benefits-heading{
    font-size: clamp(40px,6vw,90px);
    font-weight: 500;
    margin-bottom: 80px;

    background: linear-gradient(90deg,#ffffff 0%,#cfe9ff 40%,#6fa8dc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Grid */

.benefits-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:35px;
    max-width:1200px;
    margin:auto;
}

/* Card */

.benefit-card{
    background: linear-gradient(160deg,#0f1b2e,#091321);
    border-radius:12px;
    padding:40px 28px;
    position:relative;
    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:all 0.35s ease;
}

/* Blue top line */

.card-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(90deg,#9ed6ff,#6fa8dc,#4b8fe6);
}

/* Card hover */

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 10px 40px rgba(100,170,255,0.25);
}

/* Title */

.benefit-card h3{
    color:white;
    font-size:20px;
    margin-bottom:14px;
}

/* Paragraph */

.benefit-card p{
    color:#c7d4e5;
    font-size:14px;
    line-height:1.6;
}


/* ================= HOW IT WORKS ================= */
.how-it-works {
    padding: 90px 20px 60px 20px;
    text-align: center;
}

.how-heading h2 {
    font-size: 120px;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(90deg, #ffffff 0%, #9ed6ff 40%, #6fa8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 40px rgba(120, 180, 255, 0.25),
        0 0 80px rgba(80, 140, 255, 0.15);
}

.sub-heading {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
    color: #c8cdd3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ================= PROCESS BELT ================= */
.process-belt {
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
    position: relative;
    mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
}

.process-track {
    display: flex;
    gap: 40px;
    width: fit-content;
    animation: scrollBelt 30s linear infinite;
}

.process-card {
    width: 420px;
    min-height: 220px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.6),
        0 0 30px rgba(58,91,191,0.15);
    transition: 0.4s ease;
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #9ed6ff, #5fa9ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cfcfcf;
}

.process-card:hover {
    box-shadow:
        0 30px 70px rgba(0,0,0,0.7),
        0 0 60px rgba(58,91,191,0.35);
    border: 1px solid rgba(58,91,191,0.4);
}

@keyframes scrollBelt {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-box {
    max-width: 1100px;
    width: 100%;
    padding: 100px 60px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(80,140,255,0.15);
    transition: 0.4s ease;
}

.cta-box:hover {
    box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 100px rgba(80,140,255,0.3);
    border: 1px solid rgba(120,180,255,0.4);
}

.cta-box h2 {
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-box h2 span {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #cfe9ff 30%,
        #6fa8dc 70%,
        #5fa9ff 100%
    );
    background-size: 300% 100%;
    animation: haloGradientMove 5s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    font-size: 18px;
    color: #cfcfcf;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ================= INDUSTRIES SECTION ================= */
.industries {
  padding: 100px 6% 120px;
  text-align: center;
  position: relative;
  background: transparent;
}

.industries-heading {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 80px;

  background: linear-gradient(90deg, #ffffff 0%, #cfe9ff 40%, #6fa8dc 100%);
  -webkit-background-clip: text;           /* Safari/Chrome */
  background-clip: text;                   /* Standard – required for Firefox & future-proof */
  -webkit-text-fill-color: transparent;    /* Required for WebKit */
  color: transparent;                      /* Fallback for non-WebKit browsers */

  text-shadow: 0 0 30px rgba(120,180,255,0.25);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.industry-card {
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  border-color: rgba(120,180,255,0.3);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.industry-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #c0d0ff;
  opacity: 0.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .industries {
    padding: 80px 5% 100px;
  }

  .industries-heading {
    font-size: clamp(38px, 9vw, 60px);
    margin-bottom: 60px;
  }

  .industries-grid {
    gap: 30px;
  }

  .industry-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .industries {
    padding: 60px 15px 80px;
  }

  .industry-card {
    padding: 30px 20px;
  }

  .industry-icon {
    font-size: 42px;
  }
}


/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 90px 8% 100px;
  background: #0B1017; /* solid dark bg like Let's Connect */
  color: #fff;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-heading {
  font-size: clamp(50px, 5.8vw, 74px);
  font-weight: 700;
  letter-spacing: -1.1px;
  line-height: 1.2;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(90deg, #ffffff 0%, #9ed6ff 40%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* New: Blue gradient for numbers and arrows */
.faq-gradient-blue {
  background: linear-gradient(90deg, #ffffff 0%, #9ed6ff 40%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question-number {
  font-size: 18px;
  font-weight: 700;
  margin-right: 12px;
  min-width: 32px;
  text-align: center;
}

.faq-question-text {
  flex: 1;
}

.faq-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Apply blue gradient to number and arrow */
.faq-question-number,
.faq-arrow {
  background: linear-gradient(90deg, #ffffff 0%, #9ed6ff 40%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  background: rgba(0,0,0,0.2);
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15.5px;
  line-height: 1.6;
  color: #e0e7ff;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* adjust if answers are very long */
  padding: 20px 28px;
}

/* Mobile – stack columns */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    font-size: clamp(42px, 8vw, 60px);
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 24px;
  }
}

.contact-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;                          /* reduced middle gap — adjust if needed */
  padding: 60px 8% 80px;              /* much smaller top/bottom padding */
  background: #0B1017;
  color: #fff;
  align-items: start;
  min-height: auto;                   /* no forced height */
}

/* Left side – heading + subtitle only, compact */
.contact-alt-left {
  display: flex;
  flex-direction: column;
  gap: 12px;                          /* tight gap between heading & subtitle */
}

/* Smaller heading */
.contact-alt-heading {
  font-size: clamp(42px, 5vw, 60px);  /* reduced from 74px max */
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 0;                   /* no extra bottom margin */
  background: linear-gradient(90deg, #ffffff 0%, #9ed6ff 40%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
}

/* Subtitle – smaller & tighter */
.contact-subtitle {
  font-size: 15.5px;                  /* reduced from 17px */
  line-height: 1.45;
  color: #c0d0ff;
  opacity: 0.9;
  max-width: 480px;
  margin: 0;
}
.contact-alt-right {
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: flex-end; /* keep it on right side */
  height: 100%;
}

.contact-info{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:18px;
}

.contact-item{
  display:flex;
  gap:8px;
  font-size:16px;
}

.label{
  font-weight:600;
  color:#ffffff;
}

.contact-text{
  color:#cfd8e3;
}

.whatsapp-number{
  text-decoration:none;
  transition:0.25s;
}

.whatsapp-number:hover{
  color:#25D366;
}

/* ================= NEWSLETTER SECTION ================= */
.newsletter-section {
    padding: 50px 8%;
    background: #0B1017;
    text-align: center;
}

.newsletter-card {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}

.newsletter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a1428, #112040, #1a2b5c, #0f1e38);
    background-size: 300% 300%;
    animation: gradientFlow 18s ease infinite;
    opacity: 0.9;
}

@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 60px;
    gap: 60px;
    background: rgba(7, 20, 35, 0.82);
    backdrop-filter: blur(12px);
}

.text-column {
    flex: 1;
    text-align: left;
}

.newsletter-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.9px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffffff, #a8d4ff, #6ab3ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-card .subtitle {
    font-size: 16.5px;
    color: #c0d4ff;
    opacity: 0.92;
    line-height: 1.5;
    max-width: 520px;
}

.form-column {
    flex: 0 0 380px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: white;
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6ab3ff;
    box-shadow: 0 0 0 3px rgba(106,179,255,0.18);
}

.subscribe-btn {
    position: relative;
    background: #0c0c17;
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    transition: background 0.35s ease, color 0.35s ease;
}

.subscribe-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(90deg, transparent, #3a5bbf, transparent);
    background-size: 200% 200%;
    z-index: -1;
    animation: borderMove 3s linear infinite;
}

.subscribe-btn:hover {
    background: white;
    color: #1f3b57;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,59,87,0.25);
}


/* ================= FOOTER ================= */
.site-footer {
  padding: 40px 6% 30px;              /* chota rakha */
  position: relative;
  overflow: hidden;
  color: #e0e7ff;
  background: transparent;
}

.site-footer::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(10, 20, 40, 0.6), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(15, 30, 60, 0.5), transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(30, 50, 120, 0.4), transparent 40%);
  animation: haloMove 15s ease infinite;
  z-index: -2;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: #b0c8ff;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

/* 3-column grid for links */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, auto); /* 3 columns side by side */
  gap: 40px 60px;                         /* column gap 60px, row gap 40px */
  font-size: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;                              /* links ek dosre ke upar neeche */
}

.footer-column a {
  color: #c0d0ff;
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.footer-column a:hover {
  color: #6ab3ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  font-size: 13px;
  color: #a0a0c0;
  opacity: 0.88;
}



/* ================= MEDIA QUERIES (CONCISE & FIXED) ================= */
/* ==================== MOBILE-ONLY – Phones (≤576px) – Your Exact Requests ==================== */
/* ==================== MOBILE-ONLY – Phones (≤576px) ==================== */
@media (max-width: 576px) {
  /* Global tight padding for all sections */
  section, footer {
    padding: 40px 15px !important;
  }

  @media (max-width: 576px) {

  /* Poora section center-aligned banao */
  /* Mobile hero spacing fix */
@media (max-width:768px){

  /* Mobile hero section height fix */
@media (max-width:768px){

  .hero,
  [class*="hero"],
  .main-hero,
  .landing-hero{
    height: 65vh !important;
    min-height: auto !important;
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

}

  .hero h1,
  .hero h2{
    font-size: 40px;
    margin-top: 5px !important;
    padding-bottom: 15px;
  }

}

@media (max-width:768px){
  header{
    margin-bottom: 5px !important;
  }
}

  /* Subtitle / description text center */
  .hero p,
  .hero .subtitle,
  .hero .tagline,
  [class*="world-changing"] {
    text-align: center !important;
    margin: 0 auto 32px auto !important;
    max-width: 85% !important;
    font-size: 1rem !important;         /* thoda chhota taake fit ho */
    line-height: 1.5 !important;
    color: #d0d8ff !important;          /* agar color adjust karna ho */
  }

  /* Buttons ko center stack karo + touch-friendly */
  .hero .buttons,
  .cta-buttons {
    display: flex !important;
    flex-direction: column !important;   /* ek ke neeche ek */
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 20px auto 0 !important;
  }

  .hero button,
  .hero .btn {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
  }

  /* Logo ya top part bhi center */
  .hero .logo,
  .logo-container {
    margin: 0 auto 20px auto !important;
    text-align: center !important;
  }
}

  /* Intro section – tight & small */
  .pro-intro-section {
    padding-top: 20px !important;
    margin-top: -40px !important;
  }

  .intro-card {
    padding: 30px 18px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 20px !important;
  }

  .pro-intro-title {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    letter-spacing: -1px !important;
  }

  /* Services – single column, smaller cards/text, only 4 points */
  .services-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
  }

  .service-card {
    width: 100% !important;
    max-width: 360px !important;
    padding: 24px 18px !important;
    min-height: auto !important;
    border-radius: 18px !important;
  }
  /* Add this at the end of your stylesheet or inside <style> */

@media (max-width: 768px) {
  .services h2 {
    font-size: 1.8rem !important;     /* ← main change you asked for */
    text-align: center !important;
    margin: 0 auto 2rem !important;
    padding: 0 12px;
  }
}

/* Optional: very small phones */
@media (max-width: 480px) {
  .services h2 {
    font-size: 2.65rem !important;
  }
}

  .service-card h3 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .service-card .sub-heading {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }

  .service-card ul li {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    padding-left: 22px !important;
  }

  .service-card ul li:nth-child(n+5) {
    display: none !important;
  }

  /* Stats – heading chota, 2 cards per row, last card delete */
  @media (max-width: 576px) {

  /* Stats section – sirf pehle 2 cards dikhao */
  .stats-grid {
    grid-template-columns: 1fr !important;          /* single column mobile pe */
    gap: 16px !important;
  }

  /* Pehle 2 cards ko dikhao, baaki sab hide */
  .stats-grid .stat-card:nth-child(1),
  .stats-grid .stat-card:nth-child(2) {
    display: block !important;   /* ya flex – jo bhi default hai */
  }

  .stats-grid .stat-card:nth-child(n+3) {
    display: none !important;    /* 3rd, 4th aur uske baad sab hide */
  }

  /* Optional: heading aur spacing ko bhi adjust kar sakte ho */
  .stats-section {
    padding: 50px 15px 30px !important;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    margin-bottom: 40px !important;
  }

  /* Cards ko thoda compact banao */
  .stat-card {
    padding: 20px 16px !important;
    min-height: 160px !important;
    border-radius: 16px !important;
  }

  .stat-percentage {
    font-size: clamp(2.8rem, 14vw, 4.2rem) !important;
    margin-bottom: 8px !important;
  }

  .stat-text {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }

  .stat-badge {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
  }
}
  /* Let's Connect and Grow – chota section, text/font small */
  /* Contact Section – mobile: minimal spacing, headings upar, text neeche, super compact */
@media (max-width: 576px) {
  .contact-alt {
    padding: 30px 15px 30px !important; /* top/bottom bohot kam – section chota */
    text-align: center !important;
  }

  .contact-alt-left {
    text-align: center !important;
  }

  .contact-alt-heading {
    font-size: clamp(28px, 7vw, 38px) !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important; /* heading aur paragraph ke beech ka extra space remove */
  }

  .contact-subtitle {
    font-size: 14px !important; /* thoda chota */
    line-height: 1.35 !important;
    margin: 0 auto 12px auto !important; /* paragraph ke neeche bohot kam space */
    max-width: 90% !important;
    padding: 0 !important;
  }

  .grow-text {
    display: none !important;
  }

  /* Contact Info – headings upar, text neeche, Email left, Number right */
  .contact-info {
    margin-top: -30px !important; /* paragraph se bohot kam space */
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important; /* left/right items ke beech kam gap */
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .contact-item {
    flex: 1 !important;
    padding: 0 6px !important;
    min-width: 0 !important;
  }

  /* Email – left side, heading upar */
  .contact-item:first-child {
    text-align: left !important;
  }

  /* Number – right side, heading upar */
  .contact-item:last-child {
    text-align: right !important;
  }

  /* Headings (Email:/Number:) upar, text neeche */
  .contact-item .label {
    font-size: 13.5px !important; /* heading chota */
    color: #c0d0ff !important;
    display: block !important;
    margin-bottom: 2px !important; /* heading aur text ke beech kam space */
    font-weight: 600 !important;
  }

  .contact-item .contact-text,
  .contact-item a.contact-text {
    font-size: 12.5px !important; /* text chota taake pura dikhe */
    color: #6ab3ff !important;
    text-decoration: none !important;
    display: block !important;
    word-break: break-all !important; /* beech mein tootne se bachaayega */
    line-height: 1.3 !important;
  }

  .whatsapp-number {
    font-weight: 600 !important;
  }
}
  .contact-alt-heading {
    font-size: clamp(28px, 7vw, 38px) !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .contact-subtitle {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  .grow-text{
    display:none;
  }


  
  @media (max-width: 576px) {

  /* CTA section overall padding aur height kam */
  .cta-section {
    padding: 60px 15px !important;
  }

  /* Main CTA box ko chhota karo */
  .cta-box {
    padding: 50px 25px !important;          /* pehle 100px 60px tha – ab bohot kam */
    border-radius: 24px !important;
    max-width: 95% !important;              /* full width ke qareeb lekin margin rahe */
  }

  /* Heading chhota aur tight spacing */
  .cta-box h2 {
    font-size: clamp(2.2rem, 8.5vw, 3.2rem) !important;  /* bohot bara tha – ab readable size */
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    letter-spacing: -1.2px !important;
  }

  /* Paragraph / subtitle chhota */
  .cta-box p {
    font-size: 1rem !important;             /* 18px → ~16px */
    margin-bottom: 30px !important;
    line-height: 1.45 !important;
  }

  /* Buttons ko vertical stack karo + chhote */
  .cta-buttons {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: center !important;
  }

  .cta-buttons .btn {
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    min-width: 220px !important;            /* touch-friendly width */
    border-radius: 12px !important;
  }

  /* Agar box ab bhi bara lage to yeh optional tight version */
  /* .cta-box { padding: 40px 20px !important; } */
  /* .cta-box h2 { font-size: clamp(1.9rem, 7.5vw, 2.8rem) !important; } */

}


@media (max-width: 576px) {

  /* Main big heading – "HOW IT WORK" ya "HOW IT WORKS" */
  .how-it-works .how-heading h2,
  .how-heading h2,
  .how-it-works h2 {
    font-size: clamp(2.8rem, 11vw, 4.2rem) !important;   /* pehle 120px tha – ab bohot chhota */
    line-height: 0.95 !important;
    letter-spacing: -2px !important;
    margin-bottom: 20px !important;
    word-break: break-word !important;                    /* agar text wrap na ho to force break */
  }

  /* Subtitle – "PROCESS BREAKDOWN" */
  .sub-heading {
    font-size: 1rem !important;          /* 20px → ~16px */
    margin-top: 8px !important;
    letter-spacing: 1.5px !important;
  }

  /* Overall section padding kam kar do taake zyada jagah na le */
  .how-it-works {
    padding: 60px 15px 40px !important;
  }

  /* Optional – agar heading ab bhi bara lage to yeh try karo (fixed size) */
  /* .how-heading h2 { font-size: 2.4rem !important; } */

  /* Process cards / belt ko bhi thoda compact – taake pura section short lage */
  .process-belt {
    margin-top: 50px !important;
  }

  .process-card {
    width: 280px !important;             /* pehle 420px tha */
    min-height: 180px !important;
    padding: 24px 18px !important;
  }

  .process-card h3 {
    font-size: 1.1rem !important;
  }

  .process-card p {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 576px) {

  .industries {
    padding: 50px 15px 70px !important;
  }

  .industries-heading,
  .industries h2,
  .industries-heading {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
    margin-bottom: 40px !important;
  }

  /* Grid ko 2 columns banao (2 cards ek row mein) */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;               /* chhota gap taake tight lage */
    max-width: 100% !important;
  }

  /* Cards ko compact banao */
  .industry-card {
    padding: 20px 14px !important;       /* pehle 40px 30px tha – ab bohot kam */
    border-radius: 16px !important;
    min-height: 140px !important;        /* height control – zyada lambi na ho */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Icon size chhota */
  .industry-icon {
    font-size: 2.2rem !important;        /* pehle 48px tha – ab ~35px */
    margin-bottom: 12px !important;
  }

  /* Heading inside card chhota */
  .industry-card h3 {
    font-size: 1.1rem !important;        /* 22px → ~17-18px */
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }

  /* Optional: agar text ab bhi bahar ja raha ho to yeh add karo */
.industry-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 6px 0 0;
    color: #b9c6d3;

    /* Professional alignment */
    text-align: center;

    /* Keep text nicely contained */
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;

    /* Prevent awkward breaks */
    word-wrap: break-word;
}

  /* Important: parent card ko overflow hidden rakho taake text bahar na nikle */
  .industry-card {
    overflow: hidden !important;
  }

  /* Card hover effect light kar do mobile pe (performance ke liye) */
  .industry-card:hover {
    transform: translateY(-4px) !important;  /* kam movement */
    box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  }
}

@media (max-width: 576px) {

  /* FAQ section ko thoda compact banao */
  .faq-section {
    padding: 50px 15px 70px !important;
  }

  .faq-heading {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    margin-bottom: 40px !important;
  }

  .faq-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Sirf pehle 5 FAQ items dikhao, baaki sab hide */
  .faq-item:nth-child(1),
  .faq-item:nth-child(2),
  .faq-item:nth-child(3),
  .faq-item:nth-child(4),
  .faq-item:nth-child(5) {
    display: block !important;
  }

  /* 6th aur 7th (aur agar zyada hain to un sab ko) hide kar do */
  .faq-item:nth-child(n+6) {
    display: none !important;
  }

  /* Agar aapke FAQ items column mein hain to yeh bhi add kar sakte ho safety ke liye */
  .faq-column:nth-child(2) {
    display: none !important;   /* agar 2 columns hain to dusra column pura hide */
  }
}

@media (max-width: 576px) {

  /* Yeh section ka main heading chhota karo */
  .zowie-features .main-headline,
  .zowie-features .main-headline h2,           /* agar h2 tag mein hai to */
  .zowie-features h2,                           /* common fallback */
  .main-headline {                              /* direct class */
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 40px !important;             /* spacing bhi kam */
    letter-spacing: -0.8px !important;
  }

  /* Optional: agar heading bohot lambi lag rahi ho to word-break bhi add kar sakte ho */
  .main-headline {
    
    hyphens: auto !important;
    text-align: center;
  }

  .feature-icon {
  font-size: 1.3rem;   /* smaller icon */
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
}
 /* Feature card layout */
.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heading */
.feature-card h3 {
  font-size: 1rem !important;
  margin-bottom: 6px !important;
}

/* Description text alignment fix */
.feature-card p {
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  max-width: 180px;   /* forces same text width */
  margin: 0 auto;     /* centers text block */
}}

/* What Are We Offering – mobile: full side space used, text comfortable */
.benefits-section {
  padding: 40px 15px !important;
}

.benefits-heading {
  font-size: clamp(26px, 8vw, 32px) !important;
  white-space: nowrap !important;
  margin-bottom: 30px !important;
}

.benefits-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}

.benefit-box {
  padding: 14px 16px !important;          /* sides padding kam → full space use */
  min-height: 110px !important;
  border-radius: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;     /* left align text for natural flow */
  text-align: left !important;            /* text left-aligned for better readability */
}

.benefit-box h3 {
  font-size: 15px !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
  width: 100% !important;                 /* heading full width */
}

  .benefit-card{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    min-height:70px;
    padding:14px;
  }

 .benefit-card h3{
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: 500;   /* lighter than default */
}

  .benefit-card p{
    display:none; /* hide description on mobile */
  }




  /* ==================== MOBILE-ONLY – Phones (≤576px) ==================== */
@media (max-width: 576px) {
  /* Footer – sirf copyright line, baki sab hata do */
  .site-footer {
    padding: 20px 15px 20px !important; /* bohot chota */
  }

  .footer-top-row,
  .footer-logo,
  .footer-links,
  .footer-links-grid,
  .footer-column {
    display: none !important; /* logo aur links pura hata do */
  }

  .footer-bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    text-align: center !important;
  }

  .footer-bottom p {
    font-size: 11px !important;
    color: #a0a0c0 !important;
    opacity: 0.8 !important;
    margin: 0 !important;
  }
  

  /* Optional: agar bohot chota chahiye to padding aur kam kar sakte ho */
  /* .site-footer { padding: 15px 15px 15px !important; } */
}}



/* Tablets & medium screens (≤992px) */
@media (max-width: 992px) {
  header {
    padding: 20px 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .pro-intro-section {
    padding: 80px 30px;
  }

  .intro-card {
    padding: 50px 40px;
  }

  .services {
    padding: 70px 40px;
  }

  .stats-section {
    padding: 60px 30px 30px;
  }

  /* Stats – sirf pehle 2 cards dikhao (tablet pe bhi) */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
  }

  .stats-grid .stat-card:nth-child(-n+2) {
    display: flex !important;
  }

  .stats-grid .stat-card:nth-child(n+3) {
    display: none !important;
  }

  .zowie-features {
    padding: 80px 30px 100px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
  }

  .contact-alt {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-headings-row {
    gap: 50px;
    justify-content: center;
  }

  /* FAQ – sirf pehle 6 questions dikhao (tablet pe bhi) */
  .faq-grid {
    grid-template-columns: 1fr !important; /* ya 1fr 1fr agar 2 columns chahiye to */
    gap: 40px !important;
  }

  .faq-item:nth-child(-n+6) {
    display: block !important;
  }

  .faq-item:nth-child(n+7) {
    display: none !important;
  }
}

/* Large tablets & small laptops (≤1200px) */
@media (max-width: 1200px) {
  .services-container {
    gap: 40px;
  }

  .service-card {
    padding: 35px 40px;
  }

  .stats-section {
    padding: 70px 6% 30px;
  }

  /* Stats – sirf pehle 2 cards dikhao (yeh breakpoint pe bhi) */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important; /* ya repeat(2, 1fr) agar chhota chahiye */
    gap: 40px !important;
  }

  .stats-grid .stat-card:nth-child(-n+2) {
    display: flex !important;
  }

  .stats-grid .stat-card:nth-child(n+3) {
    display: none !important;
  }

  .cta-section {
    padding: 90px 30px;
  }

  .industries {
    padding: 110px 50px;
  }

  /* FAQ – sirf pehle 6 questions dikhao (yeh breakpoint pe bhi) */
  .faq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 50px !important;
  }

  .faq-item:nth-child(-n+6) {
    display: block !important;
  }

  .faq-item:nth-child(n+7) {
    display: none !important;
  }
}



/* ===== DUAL LANGUAGE BUTTONS ===== */
.language-selector {
  margin-left: auto;
  display: flex;
  gap: 8px;
  background: rgba(20, 30, 50, 0.4);
  padding: 4px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(95, 169, 255, 0.3);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 70px;
  justify-content: center;
  letter-spacing: 0.5px;
}

.lang-btn .flag {
  font-size: 18px;
}

.lang-btn.en {
  border: 1px solid #3b82f6;
  background: transparent;
}

.lang-btn.es {
  border: 1px solid #3b82f6;
  background: transparent;
}

/* Active state */
.lang-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Hover effect */
.lang-btn:hover:not(.active) {
  background: rgba(59, 130, 246, 0.2);
  border-color: #60a5fa;
  transform: translateY(-2px);
}

.lang-btn:active {
  transform: translateY(0);
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  header {
    padding: 12px 15px !important;
  }
  
  .logo {
    gap: 5px !important;
  }
  
  .logo img {
    height: 30px !important;
    width: 30px !important;
  }
  
  .logo span {
    font-size: 18px !important;
    margin-right: 0 !important;
  }
  
  .language-selector {
    gap: 5px;
    padding: 3px;
  }
  
  .lang-btn {
    padding: 5px 10px;
    font-size: 12px;
    min-width: 52px;
    gap: 3px;
  }
  
  .lang-btn .flag {
    font-size: 14px;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  header {
    padding: 10px 12px !important;
  }
  
  .logo img {
    height: 26px !important;
    width: 26px !important;
  }
  
  .logo span {
    font-size: 16px !important;
  }
  
  .language-selector {
    gap: 4px !important;
    padding: 2px !important;
  }
  
  .lang-btn {
    padding: 4px 8px !important;
    font-size: 11px !important;
    min-width: 42px !important;
    gap: 2px !important;
  }
  
  .lang-btn .flag {
    font-size: 12px !important;
  }
}

/* Extra small devices (iPhone SE) */
@media (max-width: 375px) {
  header {
    padding: 8px 10px !important;
  }
  
  .logo img {
    height: 22px !important;
    width: 22px !important;
  }
  
  .logo span {
    font-size: 14px !important;
  }
  
  .lang-btn {
    padding: 3px 6px !important;
    font-size: 10px !important;
    min-width: 38px !important;
  }
  
  .lang-btn .flag {
    font-size: 11px !important;
  }
}

/* Purani language switcher ko hata do */
.header-language-switcher,
.language-popup,
.mobile-lang-switcher,
.language-flag,
.flag-btn {
  display: none !important;
}
