/* ===================================
   RESET & GLOBAL STYLES
   (original reset + global styles)
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color: #333;
  background: linear-gradient(180deg, #FFFFFF 0%, #E6F4FF 50%, #FFFFFF 100%);
}

/* ========== HEADER WRAPPER ========== */
.site-header {
  width: 100%;
  background: #ffffffcc;
  padding: 24px 4vw;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  transition: backdrop-filter .3s ease;
}

.site-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ========== LOGO ========== */
.site-logo-wrap {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 42px;
  max-height: 42px;
  width: auto;
}

.site-navigation .nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
  /* ensure nav items vertically center */
}

.site-navigation .nav-list a {
  text-decoration: none;
  color: #4E4E4E;
  font-size: 16px;
  white-space: nowrap;
  transition: .3s;
  position: relative;
  display: inline-flex;
  /* make each link a flex container */
  align-items: center;
  /* vertically center link contents */
  height: 42px;
  /* match logo height so text is centered vertically */
  padding: 0 6px;
  /* small horizontal padding for touch comfort */
}

.site-navigation .nav-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #03649c;
  bottom: -5px;
  left: 0;
  transition: .3s;
}

.site-navigation .nav-list a:hover {
  color: #03649c;
}

.site-navigation .nav-list a:hover::after {
  width: 100%;
}

/* ========== RIGHT SECTION ========== */
.site-right-area {
  display: flex;
  align-items: center;
  gap: 22px;
}

.partner-logo-img {
  width: auto;
  max-height: 30px;
}

/* ========== LAPTOP OPTIMIZATION (1025px - 1350px) ========== */
@media (min-width: 1025px) and (max-width: 1350px) {
  .site-navigation .nav-list {
    gap: 15px;
  }

  .site-navigation .nav-list a {
    font-size: 15px;
  }

  .site-header {
    padding: 20px 2vw;
  }
}

.header-cta-btn {
  background: linear-gradient(90deg, #0088CE, #44BFFF);
  color: #fff;
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: .3s;
}

.header-cta-btn:hover {
  background: #024d78;
  transform: translateY(-2px);
}

/* ========== MOBILE MENU TOGGLE BUTTON ========== */
.menu-toggle-btn {
  display: none;
  /* Hidden on desktop */
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0078ff;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-toggle-btn:hover {
  transform: scale(1.05);
  color: #005fcc;
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle-btn {
  display: none;
}


/* ========== RESPONSIVE TABLE - ONLY TABLET (768px to 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {


  .common-section {
    padding-top: 30px;
    padding-bottom: 10px;
    margin: 0px 20px;
  }
}


/* Tablet */
@media (max-width: 1024px) {
  .site-header {
    padding: 16px 4vw;
    /* header thoda chota */
  }

  .site-logo {
    height: 36px;
  }

  .site-navigation .nav-list {
    gap: 18px;
  }

  .site-navigation .nav-list a {
    font-size: 12px;
  }

  .header-cta-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}



/* =====================================================
                  RESPONSIVE MENU BEHAVIOUR
===================================================== */
@media (max-width: 768px) {
  .menu-toggle-btn {
    display: block !important;
    /* visible only on mobile */
  }

  /* Hidden nav initially */
  .site-navigation,
  .site-right-area {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.4s ease;
  }

  /* Overlay for mobile menu */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1499;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Active state for menu - slide from right */
  .site-navigation.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 100px 30px 30px;
    gap: 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.4s ease forwards;
  }

  .site-navigation .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .site-navigation .nav-list a {
    font-size: 18px;
    font-weight: 600;
    color: #002147;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .site-navigation .nav-list a:hover,
  .site-navigation .nav-list a.active {
    color: #0078ff;
    transform: translateX(5px);
  }

  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (max-width: 768px) {

  /* FULL HEADER FIXED WITH WHITE BG */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.97) !important;
    /* Full white */


    padding: 12px 18px;
    z-index: 9999;
  }

  /* Align everything inside */
  .site-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO */
  .site-logo {
    height: 36px !important;
  }

  /* Menu Button */
  .menu-toggle-btn {
    display: block !important;
    position: relative !important;
    top: 0;
    right: 0;

    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  }

  /* FIX 1: Remove conflicting body padding-top */
  body {
    padding-top: 0 !important;
    /* Remove previous padding */
  }

  /* FIX 2: Proper fixed header */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 1) !important;
    backdrop-filter: blur(10px) !important;
    padding: 12px 18px !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    height: 70px !important;
    /* Fixed height */
    box-sizing: border-box !important;
  }

  .site-header-container {
    height: 100% !important;
    align-items: center !important;
  }

  /* FIX 3: Logo sizing */
  .site-logo {
    height: 32px !important;
    max-height: 32px !important;
  }

  /* FIX 4: Menu button positioning */
  .menu-toggle-btn {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 136, 206, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }

  /* FIX 5: Hero section padding to account for fixed header */
  .data-hero {
    padding: 120px 4vw 40px !important;
    /* Increased top padding */
    margin-top: 70px !important;
    /* Match header height */
    min-height: auto !important;
  }

  /* FIX 6: Ensure hero content doesn't go under header */
  .data-hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* FIX 7: Mobile menu overlay */
  .mobile-menu-overlay.active {
    position: fixed;
    top: 70px !important;
    /* Start below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 1499;
  }

  /* FIX 8: Adjust navigation position */
  .site-navigation.active {
    top: 70px !important;
    /* Start below header */
    height: calc(100vh - 70px) !important;
  }
}

/* ========== ADD THESE FIXES TO YOUR EXISTING MOBILE MEDIA QUERY ========== */
@media (max-width: 768px) {

  /* Ensure body has no margin/padding at top */
  body,
  html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  /* Fix the data-hero positioning */
  .data-hero {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }

  /* Fix hero title sizing */
  .data-hero h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
  }

  /* Fix subtitle */
  .data-hero .subtitle {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  /* Fix hero image */
  .hero-image-container {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* Hide desktop CTA */
  .site-right-area .header-cta-btn {
    display: none !important;
  }

  /* Show hero CTA */
  .data-hero-content .header-cta-btn {
    display: inline-block !important;
    width: auto !important;
    margin: 20px auto 0 !important;
    text-align: center !important;
  }
}

/* ========== EXTRA FIX FOR VERY SMALL SCREENS ========== */
@media (max-width: 480px) {
  .data-hero {
    padding: 100px 20px 30px !important;
    margin-top: 60px !important;
  }

  .site-header {
    height: 60px !important;
    padding: 10px 15px !important;
  }

  .data-hero h1 {
    font-size: 28px !important;
  }

  .data-hero .subtitle {
    font-size: 16px !important;
  }

  /* Adjust mobile menu positions for smaller header */
  .mobile-menu-overlay.active {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
  }

  .site-navigation.active {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
  }
}


/* ===================================
   HERO SECTION
=================================== */
.hero {
  width: 100%;
  min-height: 90vh;
  background: url("https://www.webitlab.com/development/Synthlake-final/assets/images/g.png") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  animation: fadeIn 1s ease-in-out;
}

.hero .content {
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 50px 40px;
  animation: slideUp 1s ease-in-out;
}

.hero .content h1 {
  font-size: 80px;
  font-weight: 600;
  color: #0088CE;
  margin-bottom: 20px;
}

.hero .content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4E4E4E;
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(63, 62, 62, 0.25);
  max-width: 900px;
  margin: 0 auto 40px;
}

.hero .cta-btn {
  background: linear-gradient(90deg, #0088CE, #44BFFF);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 119, 204, 0.3);
  transition: all 0.3s ease;
}

.hero .cta-btn:hover {
  background: linear-gradient(90deg, #0088CE, #44BFFF);
  box-shadow: 0 10px 20px rgba(0, 119, 204, 0.4);
  transform: translateY(-3px);
}

/* ===================================
   ANIMATIONS
=================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================
   PROCESS SECTION
   (diagram + center circle + nodes)
=================================== */
.process-section {
  text-align: center;
  padding: 20px 20px;
}

.process-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
}

/* Diagram */
.process-diagram {
  position: relative;
  width: 800px;
  height: 500px;
  margin: 0 auto;
}

/* Center Circle */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.center-circle img {
  width: 60px;
  margin-bottom: 10px;
}

.center-circle h3 {
  font-size: 15px;
  color: #121331;
}




/* Nodes */
.node {
  position: absolute;
  background: #f9fcff;
  border: 2px solid #cdeaff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 3;
}

.node img {
  width: 61px;
  margin-bottom: 9px;
  margin-left: -0px;
}

.node p {
  font-size: 16px;
  color: #121331;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  bottom: 146px;
  width: 160px;
}

/* Node positions */
.node1 {
  top: 8%;
  left: 20%;
}

.node2 {
  top: 40%;
  left: 5%;
}

.node3 {
  bottom: 8%;
  left: 22%;
}

.node4 {
  top: 8%;
  right: 20%;
}

.node5 {
  top: 40%;
  right: 5%;
}

.node6 {
  bottom: 8%;
  right: 22%;
}

/* SVG Lines */
.lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 500px;
  z-index: 1;
}

.line {
  stroke: #00aaff;
  stroke-width: 2;
  stroke-dasharray: 8;
  animation: dash 3s linear infinite;
  opacity: 0.7;
}

@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-section {
    padding: 0px 15px;
    text-align: center;
  }
}

.line {
  filter: drop-shadow(0 0 6px #00aaff);
}

/* ===================================
   BACKGROUND CANVAS
=================================== */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* ===================================
   REST SECTION (placeholder)
=================================== */
.rest {
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0088CE;
}

/* ===================================
   BASE / AI SECTION (cards + heading)
=================================== */
/* reset / base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {

  background: #ffffff;
  color: #122;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* container */
.ai-section {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
}

.wrap {
  width: min(1180px, 94%);
}

/* Heading centered with subtle boxed title effect */
.heading {
  text-align: center;
  margin-bottom: 22px;
}

.heading h1 {
  display: inline-block;
  background: #ffffff;
  /* white inside the box */
  padding: 18px 26px;
  border-radius: 12px;
  font-size: 65px;
  line-height: 1;
  font-weight: 700;
  color: #1A1B1F;
}

.subtitle {
  margin-top: 18.52px;
  color: #4E4E4E;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18.52px;
  line-height: 1.6;
  padding: 0 0px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* single card */
.card {
  background: #F2FAFF;
  border-radius: 14px;
  border: 0.67px solid #0088CE;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 510px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-points {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.card-points li {
  font-size: 15px;
  color: #47525a;
  margin-bottom: 8px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}


.card-title {
  font-weight: 700;
  color: #0b2130;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
  padding: 0px 6px;
  margin: 13px 0px;
}

.card-body {
  text-align: left;
  padding: 1px 6px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  font-size: 16px;
  color: #47525a;
  line-height: 1.5;
  max-width: 332px;
  height: 120px;
}

.icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  background: none;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
}

.icon-placeholder img {
  width: 332px;
  /* adjust as needed */
  height: auto;
  object-fit: contain;
  margin-top: 19px;
}

.icon-placeholders img {
  width: 332px;
  /* adjust as needed */
  height: auto;
  object-fit: contain;
  margin-top: 19px;
}

.icon-placeholders {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  background: none;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
}

/* ============ TABLET ONLY (max-width:1024px) ============ */
@media (max-width: 1024px) {

  .ai-section {
    padding: 0px 18px;
  }

  /* Heading adjustments */
  .heading h1 {
    font-size: 52px;
    padding: 16px 22px;
  }

  .subtitle {
    font-size: 17px;
    max-width: 800px;
  }

  /* Still 3 columns */
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 auto;
    max-width: 100%;
    justify-items: center;
  }

  /* Tablet card scaling */
  .card {
    width: 100%;
    max-width: 310px;
    /* from 392 → 310 so 3 fit easily */
    height: 470px;
    /* reduce height a little */
    padding: 16px;
  }

  .card-title {
    font-size: 18px;
  }

  .card p {
    font-size: 15px;
    max-width: 100%;
    height: auto;
  }

  .icon-placeholder img,
  .icon-placeholders img {
    width: 230px;
    /* from 332 → 230 for better fit */
    margin-top: 14px;
  }
}




@media (max-width: 480px) {
  .icon-placeholders {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    width: 100%;
    padding: 0;
  }

  .icon-placeholders img {
    width: 194px;
    /* made smaller for mobile */
    height: auto;
    object-fit: contain;
    margin-top: 8px;
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(7, 38, 66, 0.06);
}


/* =======================
   RESPONSIVE BREAKPOINTS
======================= */

/* Tablet (2 cards) */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 card - center) */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    width: 90%;
    /* auto adjust */
    height: auto;
    /* height flexible */
    margin: 0 auto;
    /* center */
  }

  .icon-placeholder img {
    width: 194px;
  }
}



/* ===================================
   TRUSTED CUSTOMERS (logo slider)
=================================== */
.trusted-customers {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;

  background: #fff;

}

.trusted-customers h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1A1B1F;
  margin-bottom: 30px;
}

/* Centered slider area */
.logo-slider {
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

/* Scrolling track */
.slide-track {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll 25s linear infinite;
  width: calc(140px * 10);
}

/* Logo Slider Container */
.logo-slider {
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0px 0;
  border-radius: 10px;
}

/* Slide track (moving container) */
.slide-track {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  gap: 65px;
  /* spacing between logos */
}

/* Individual slide */
.slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo images */
.slide img {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.08);
}




@media (max-width: 600px) {
  .trusted-customers {
    padding: 28px 0;
    margin: 0 auto;
    width: 100%;
  }

  .trusted-customers h2 {

    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .trusted-customers h2 {
    font-size: 28px;
    /* Smaller but bold */
    font-weight: 700;
    margin-bottom: 12px;
    /* Better spacing */
    text-align: center;
    /* Center for mobile */
    line-height: 1.2;
  }
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-slider:hover .slide-track {
  animation-play-state: paused;
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===================================
   WHY CHOOSE SECTION
=================================== */
.why-choose {
  padding-top: 40px;
  padding-bottom: 10px;
  background: #fff;
  margin: 0px 20px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;

  flex-wrap: wrap;
  /* Zoom par content wrap hoga, overflow nahi */
}

.left-content {
  flex: 1 1 500px;
  min-width: 320px;
}

.left-content h2 {
  font-size: 65px;
  color: #1A1B1F;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  color: #4E4E4E;
  font-size: 16.56px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Features list */
.features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 7px;
}

.feature h4 {
  font-size: 22.13px;
  color: #000;
  margin-bottom: 4px;
  font-weight: 600;
  margin-left: 16px;
}

.feature p {
  font-size: 16.56px;
  color: #4E4E4E;
  line-height: 1.5;
  max-width: 400px;
  margin-left: 16px;
}

/* Right image */
.right-image {
  flex: 1 1 500px;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-img {
  max-width: 100%;
  height: auto;

}

/* ============ TABLET ONLY (768px–1024px) ============ */


@media (max-width: 768px) {
  .why-choose {
    padding-top: 20px;
    /* Smaller padding */
    padding-bottom: 0;
    margin: 0px 10px;
    /* Side margin kam so mobile me fit ho */
    background: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    width: 100%;
    justify-items: center;
  }

  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 330px;
  }

  .right-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-img {
    width: 100%;
    max-width: none;
  }

  .left-content {
    order: 1;
    width: 100%;
  }
}





/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {

  .left-content h2 {
    font-size: 27px;
    /* Title chota */
    text-align: center;
    /* Center */
  }

  .subtitle {
    font-size: 13px;
    /* Para chota */
    text-align: center;
    /* Center */
    margin: 0 auto 30px;
    max-width: 320px;
  }

  /* Features list should stay left aligned */
  .features {
    align-items: flex-start;
  }

  .feature h4,
  .feature p {
    margin-left: 0;
    /* Mobile me unnecessary gap remove */
    font-size: 15px;
  }

  .icon-img {
    width: 32px;
    /* Icon thoda chhota */
    height: 32px;
  }

  .container {
    flex-direction: column;
    text-align: center;
    margin-top: -61px;
    /* Sirf title area ke liye */
  }

  /* Features ko wapas left align karna (container center ki wajah se) */
  .features,
  .feature {
    text-align: left;
    width: 100%;
  }
}





/* ===================================
   DATA ANALYTICS SECTION
=================================== */
.data-analytics {
  width: 100%;
  text-align: center;
  padding: 0px 0;
  font-family: 'Rubik';
  background-color: #fff;
  margin-bottom: 27px;
}

.data-analytics h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1A1B1F;
  margin-bottom: 30px;
}

.analytics-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 39px;
  padding: 10px 40px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

.analytics-logo {
  padding: 9px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.analytics-logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.analytics-logo img:hover {
  transform: scale(1.08);
}

/* REMOVE ALL TOP SPACE */
.data-analytics {
  padding-top: 40px;
  padding-bottom: 10px;
}

/* 📱 MOBILE VIEW - 2 ROWS (3 UP, 3 DOWN) + BIGGER IMAGES */


@media (max-width: 767px) {
  .data-analytics {
    padding-top: 0px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {

  .analytics-box {
    gap: 0px;
    padding: 0px 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 10px;
  }

  .analytics-logo {
    flex: 1 1 calc(33.33% - 10px);
    display: flex;
    justify-content: center;
  }

  .analytics-logo img {
    width: 75px;
    height: auto;
  }

  .data-analytics h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
}




/* ===================================
   SUCCESS STORY SECTION
=================================== */
.success-story {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(275deg, #0380c5 0%, #037fc5 50%, #0387cc 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}



.success-story .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0px;
  margin: 0 auto;
}

.success-story .image-side {
  flex: 1;
  text-align: left;
}

.success-story .image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.success-story .content-side {
  flex: 1;
}

.success-story h2 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-story h3 {
  font-size: 22.13px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.success-story h3 span {
  color: #fff;
  font-weight: 600;
}

.success-story p {
  font-size: 16.56px;
  color: #e6f4ff;
  line-height: 1.4;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-box {
  background: #fff;
  color: #0088CE;
  border-radius: 10px;
  padding: 0px 13px;
  flex: 1;
  min-width: 120px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.stat-box h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 3px;
  margin-top: 21px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.btnn {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ========== MOBILE RESPONSIVE (SUCCESS STORY) ========== */
@media (max-width: 768px) {

  .success-story {
    min-height: auto;
    padding: 40px 20px;
    text-align: center;
    /*  Everything centered */
  }

  /*  Hide images on mobile */
  .success-story .image-side {
    display: none !important;
  }

  .success-story .container {
    flex-direction: column;
    /*  Image upar, content neeche */
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    margin: -68px 0px;
  }

  .success-story .image-side {
    width: 100%;
    text-align: center;
  }

  .success-story .image-side img {
    max-width: 240px;
    /*  Auto shrink on phones */
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .success-story h2 {
    font-size: 37px;
    /*  Equivalent to ~30px */
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .success-story h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .success-story p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 25px;
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
  }

  .stat-box {
    min-width: 90px;
    padding: 10px 10px;
    text-align: center;
  }

  .stat-box h4 {
    /* Smaller stat number */
    margin: 6px 0 2px 0;
  }

  .stat-box p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .btnn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 12px;
  }
}









/* ===================================
   FEATURES HEADER
=================================== */
.features-header {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #fff;
}

.features-header .container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.features-header h2 {
  font-size: 65px;
  font-weight: 700;
  color: #1A1B1F;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 13.56px;
  color: #4E4E4E;
  line-height: 1.5;
}

.features-header .btn {
  background: linear-gradient(90deg, #0088CE, #44BFFF);
  color: #fff;
  font-size: 17.23px;
  font-weight: 600;
  text-decoration: none;
  width: 174.42px;
  /* added */
  height: 51.68px;
  /* added */
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.text-content {
  width: 800px;
}


/* ===================================
   TABLET (768px – 1024px)
   Desktop-like layout (LEFT + RIGHT)
=================================== */
@media (max-width: 1024px) {

  .features-header {
    padding: 0px 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .features-header .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    /* LEFT + RIGHT */
    flex-wrap: nowrap !important;
    gap: 20px;
  }

  .text-content {
    width: 600px !important;
    text-align: left !important;
  }

  .features-header h2 {
    font-size: 48px;
    margin-bottom: 8px;
    text-align: left !important;
  }

  .features-header p {
    font-size: 14px;
    text-align: left !important;
  }

  /* BUTTON RIGHT SIDE ALWAYS */
  .features-header .btn {
    width: 160px;
    height: 48px;
    font-size: 16px;
    white-space: nowrap;
    margin-left: auto !important;
    /* FORCED RIGHT */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


/* ===================================
   MOBILE (0 – 768px)
   Everything Center
=================================== */
@media (max-width: 768px) {

  .features-header {

    text-align: center !important;
  }

  .features-header .container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px;
  }

  .text-content {
    width: 100% !important;
    max-width: 350px;
    text-align: center !important;
  }

  .features-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    text-align: center !important;
  }

  .features-header p {
    font-size: 13px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
    text-align: center !important;
  }

  /* CENTER BUTTON */
  .features-header .btn {
    display: block !important;
    width: 100%;
    max-width: 168px;
    height: 45px;
    font-size: 15px;
    margin: 0 auto !important;
    text-align: center;
    padding: 12px 0;
  }
}


/* ===================================
   NEW FEATURES CARDS
=================================== */
.new-features-section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #fff;
}

.new-features-section .new-container {
  max-width: 1150px;
  margin: 8px auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;               /* allow wrapping if needed */
}

.new-feature-card-platform {
  flex: 0 0 calc(33.333% - 18px); /* 👉 3 cards in one row */
  min-width: 0;
  background: #fff;
  border: 1.11px solid #DEE0ED;
  border-radius: 22px;
  text-align: center;
  padding: 40px 25px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.new-feature-card-platform:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.new-feature-card-platform img {
  width: 314px;
  height: auto;
  margin-bottom: 25px;
}

.new-feature-card-platform h3 {
  font-size: 30.3px;
  color: #191A15;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.new-feature-card-platform p {
  font-size: 12.56px;
  color: #4E4E4E;
  line-height: 1.6;
  min-height: 50px;
  margin-bottom: 25px;
  text-align: left;
}

.new-feature-card-platform .new-btn {
  background: linear-gradient(90deg, #0088ce, #44bfff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.new-feature-card-platform .new-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.line-divider {
  height: 1.5px;
  background: #DEE0ED;
  margin: 20px 0;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}

/* ========== TABLET (768px – 1024px) — still 3 cards in a row ========== */
@media (min-width: 768px) and (max-width: 1024px) {

  .new-features-section-platform .new-container {
    justify-content: center;
    gap: 18px;
    padding-top: 20px;
  }

  .new-feature-card-platform {
    flex: 0 0 31%;
    min-width: auto;
    padding: 32px 20px 28px;
  }

  .new-features-section-platform {
    width: 100%;
    padding: 4px 20px 10px;
  }

  .new-feature-card-platform img {
    width: 250px;
  }

  .new-feature-card-platform  h3 {
    font-size: 26px;
  }

  .new-feature-card-platform p {
    font-size: 12px;
  }
}

/* ========== MOBILE (<= 767px) — 3 smaller cards in one row ========== */
@media (max-width: 767px) {

  .new-features-section .new-container {
    max-width: 100%;
    margin: 12px auto;
    display: flex;
    flex-direction: column;      /* 👉 stack vertically */
    align-items: center;
    gap: 16px;
    padding: 0 10px;
  }

  .new-feature-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 320px;
    padding: 22px 15px;
    margin: 0 auto;
    text-align: center;
  }

  .new-feature-card img {
    width: 140px;
    margin-bottom: 15px;
  }

  .new-feature-card h3,
  .new-feature-card p {
    text-align: center;
  }
}


/* ===================================
   DATA APPROACH SECTION
=================================== */
.dataapproach-section {
  width: 100%;
  padding: 56px 20px;
  background: url('../images/bggg.png') no-repeat center center/cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 10px;
}

.dataapproach-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.dataapproach-content {
  flex: 1 1 45%;
}

.dataapproach-content h2 {
  font-size: 65px;
  color: #1A1B1F;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

.dataapproach-content p {
  font-size: 20px;
  color: #4E4E4E;
  line-height: 1.6;
}

.dataapproach-image {
  flex: 1 1 45%;
  text-align: center;
}

.dataapproach-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
}


/* ========== ONLY TABLET (768px – 1024px) ========== */
@media(max-width: 1024px) {

  .dataapproach-section {
    padding: 46px 30px;
    /* spacing हल्का कम */
    margin-top: 40px;
  }

  .dataapproach-container {
    gap: 30px;
    /* थोड़ा gap reduce */
  }

  .dataapproach-content h2 {
    font-size: 48px;
    /* 65px से छोटा */
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .dataapproach-content p {
    font-size: 17px;
    /* 20px से कम */
    line-height: 1.55;
  }

  .dataapproach-image img {
    max-width: 360px;
    /* image थोड़ा छोटा */
  }
}


/* ============ RESPONSIVE FOR DATA APPROACH ============ */
@media (max-width: 768px) {

  .dataapproach-section {
    margin-top: 0px;
    padding: 40px 20px;
    /* thoda side se spacing for better look */
    text-align: center;
  }

  .dataapproach-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
  }

  .dataapproach-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .dataapproach-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .dataapproach-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
  }

  .dataapproach-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .dataapproach-image img {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* Extra small phones */
@media (max-width: 480px) {

  .dataapproach-section {
    padding: 0px 14px;
  }

  .dataapproach-content h2 {
    font-size: 30px;
  }

  .dataapproach-content p {
    font-size: 13px;
  }

  .dataapproach-image img {
    max-width: 230px;
  }
}




/* ===================================
   AUDIO / PODCAST TESTIMONIALS
=================================== */
.aud-testimonials-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.aud-testimonials-wrapper {
  background-color: #fff;

  text-align: center;
  padding-top: 60px;
  padding-bottom: 10px;
}

.aud-container {
  max-width: 1200px;
  margin: -27px auto;
}

.aud-heading {
  font-size: 65px;
  font-weight: 700;
  color: #1A1B1F;
  margin-bottom: 10px;
}

.aud-subtext {
  color: #4E4E4E;
  font-size: 16.56px;
  margin: 0 auto 50px;

  text-align: center;
}

.aud-testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.aud-testimonial-card {
  background: #F8F9FC;
  border: 1.03px solid #DEE0ED;
  border-radius: 20.58px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.aud-testimonial-card:hover {
  transform: translateY(-5px);
}

/* ============ IMAGE AREA ============ */
.aud-image-area {
  position: relative;
  width: 100%;
  height: 376.63px;
  overflow: hidden;
  border-radius: 16.46px;
  /* full rounded image */
}

.aud-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  margin: 2px 0px;
  padding: 5px;
}

.aud-play-btn {
  position: absolute;
  top: 39px;
  left: 30px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 0.85rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 2;
}

/* ============ QUOTE TEXT ON IMAGE ============ */
.aud-quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-align: left;
  line-height: 1.6;
}

/* ============ AUTHOR BOX ============ */
.aud-quote-box {
  padding: 20px;
  text-align: left;
}

.aud-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.aud-name-role {
  display: flex;
  flex-direction: column;
}

.aud-name {
  font-weight: 600;
  color: #0B0C0E;
  margin-bottom: 4px;
  font-size: 17.64px;
}

.aud-role {
  color: #52597A;
  font-size: 0.9rem;
  font-weight: 500;
}

.aud-role span {
  color: #52597A;
  font-weight: 500;
}

/* ============ QUOTE ICON ============ */
.aud-quote-icon {
  width: 44.25px;
  height: 44.25px;
  opacity: 0.2;
  /* light faded effect */
}


@media (max-width: 1024px) {
  .aud-subtext {
    font-size: 15px;
    /* thoda chhota tablet ke liye */
    margin: 0 auto 20px;
    /* niche ka gap thoda kam */
    text-align: center;
    /* safe side */
    width: 90%;
    /* tablet me line-break better */
  }
}


/* ==== TABLET (768px – 1024px) — 3 CARDS + 20px SIDE SPACE ==== */
@media (max-width: 1024px) {

  .aud-container {
    padding: 0 20px;
    /* left & right 20px space */
  }

  .aud-testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    /* wrap band — row break nahi hoga */
    justify-content: center;
    gap: 20px;
  }

  .aud-testimonial-card {
    width: 30%;
    /* 3 boxes fit in one row */
    min-width: 240px;
  }

  .aud-image-area {
    height: 260px;
    /* thoda compact for tablet */
  }

  .aud-heading {
    font-size: 50px;
  }
}



/* ============ RESPONSIVE FOR AUDIO / PODCAST TESTIMONIALS ============ */
@media (max-width: 768px) {

  .aud-heading {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .aud-subtext {
    width: 100%;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .aud-testimonial-grid {
    gap: 18px;
  }

  .aud-testimonial-card {
    width: 240px;
    /* box chota */
    border-radius: 16px;
  }

  .aud-image-area {
    height: 230px;
    /* image area chota */
    border-radius: 14px;
  }

  .aud-image-area img {
    margin: 4px 0px;
    padding: 4px;
  }

  .aud-quote {
    font-size: 0.80rem;
    bottom: 14px;
    line-height: 1.3;
  }

  .aud-quote-box {
    padding: 14px;
  }

  .aud-name {
    font-size: 15px;
  }

  .aud-role {
    font-size: 12px;
  }

  .aud-quote-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .aud-testimonials-wrapper {
    background-color: #fff;
    text-align: center;
    margin-top: 52px !important;
    padding: 0px !important;
    margin-bottom: 52px;
  }
}


/* Extra Small Devices */
@media (max-width: 480px) {

  .aud-testimonial-card {
    width: 200px;
    /* mobile me aur thoda cute size */
  }

  .aud-image-area {
    height: 190px;
  }

  .aud-heading {
    font-size: 24px;
  }



}

@media (max-width: 768px) {
  .aud-subtext {
    width: 80% !important;
    /* compact width */
    margin: 0 auto 25px;
    /* center + spacing */
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .aud-heading {
    font-size: 32px;
    width: 80% !important;
    /* heading also same width */
    margin: 0 auto 12px;
    /* center */
    line-height: 1.3;
    text-align: center;
  }
}





@media (max-width: 480px) {

  .testimonial-wrapper {
    width: 100% !important;
    padding: 0px 0px !important;
    /* mobile ke liye small padding */
    margin: 15px 0px !important;
    display: flex;
    justify-content: center;
  }

}


/* ============================
   TESTIMONIAL (3 cards layout)
============================ */
.testimonial-wrapper {
  width: 100%;
  background: #fff;

  display: flex;
  justify-content: center;
  margin: 47px 0px;
}


.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;

}

/* Line above each testimonial message */
.testimonial-card .message {
  position: relative;
  margin-top: 20px;
  padding-top: 15px;
}

.testimonial-card .message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 343.7px;
  height: 1.03px;
  background-color: #E1E4EB;
  border-radius: 2px;
}


.testimonial-card {
  background: #F8F9FC;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: 0.3s ease;
  flex: none;
  width: 373.44px;
  border: 1.03px solid #DEE0ED;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* 1st & 2nd card height */
.testimonial-card:nth-child(1),
.testimonial-card:nth-child(2) {
  height: 230.9px;
}

/* 3rd card height */
.testimonial-card:nth-child(3) {
  height: 230.9px;
}

/* Profile row (profile + stars) */
.profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.profile h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0B0C0E;
}

.profile p {
  font-size: 13px;
  color: #52597A;
  margin-top: 2px;
  font-weight: 600;
}

.stars {
  color: #f7b500;
  font-size: 18px;
}

.message {
  font-size: 14px;
  color: #4E4E4E;
  line-height: 1.6;
}


/* 📌 Tablet Responsive — 768px to 1024px */
@media(max-width: 1024px) {

  .testimonial-container {
    gap: 15px;

  }

  .testimonial-wrapper {
    display: block;
    /* tablet par flex hata diya */
    margin: 40px 0px;
    /* tablet spacing */
  }

  .testimonial-card {
    width: 31%;
    /* 3 cards same row me hi rahen */
    padding: 22px;
  }

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    height: auto;
    /* height auto so content perfect dikhe */
  }

  .profile img {
    width: 45px;
    height: 45px;
  }

  .profile h3 {
    font-size: 16px;
  }

  .profile p {
    font-size: 12px;
  }

  .stars {
    font-size: 17px;
  }

  .message {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* top divider line width adjust */
  .testimonial-card .message::before {
    width: 90%;
  }

}





/* ===================================
   FOOTER SECTIONS
   (footer, bottom-footer, main-footer)
=================================== */
.footer {
  background-color: #0088CE;
  color: #fff;
  padding: 10px 10%;
  font-family: 'Raleway', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 44px;
}

.footer-left {
  max-width: 500px;
  color: #ffffff;
  font-weight: 100;
  font-family: Raleway;
  line-height: 1.5;
}

.footer-left2 {
  max-width: 500px;
  color: #ffffff;
  font-size: 13px;

  line-height: 1.5;
  margin: -18px 0px;
}



.footer-left p strong {
  color: #ffffff;
  /* Welcome to Synthlake, */
}

.footer-left p span {
  color: #929292;
  /* where innovation meets... */
}

.footer-left small {
  color: #777;
  font-size: 13px;
  display: block;
  margin-top: 8px;
}


.footer-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.bottom-footer {
  background-color: #0088CE;
  color: #fff;
  padding: 2px 10%;


}

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

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left p {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 11px;
}

.email {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-top: 7px;
  text-decoration: none;
  transition: 0.3s;
}

.email:hover {
  color: #00bcd4;
}

.social-images {
  display: flex;
  gap: 15px;
  margin-top: 26px;
}

.social-images img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* make white logos */
  opacity: 0.9;
  transition: 0.3s ease;
}

.social-images img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
  margin: 56px 0px;
}

.footer-right a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-right a:hover {
  color: #0088CE;
}

.main-footer {
  background-color: #0088CE;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 10px 10% 30px;
}

.footer-content img.footer-logo {
  width: 700px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  /* left & right same line */
  align-items: center;
  /* vertical center dono ko equal line me rakhega */
  padding: 10px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.footer-bottom-right a {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}


/* ========== TABLET ONLY (max-width:1024px) — same layout, only smaller ========== */
@media (max-width: 1024px) {

  .footer {
    padding: 10px 2%;
  }

  .footer-left p {
    font-size: 20px;
  }

  .footer-left2 {
    font-size: 11.5px;
  }

  .email {
    font-size: 12px;
  }

  .social-images img {
    width: 18px;
    height: 18px;
  }

  .footer-right {
    gap: 18px;
    margin: 40px 0px;
  }

  .footer-right a {
    font-size: 12.5px;
  }

  /* Main logo resize only */
  .footer-content img.footer-logo {
    width: 520px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom-right a {
    font-size: 12px;
  }
}



/* =========================
   MAIN FOOTER MOBILE VIEW
========================= */
@media (max-width: 600px) {

  .main-footer {
    padding: 35px 6% 25px;
    text-align: center;
  }

  .footer-content img.footer-logo {
    width: 220px;
    margin-bottom: 18px;
  }

  .footer-bottom p {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* =========================
   MOBILE RESPONSIVE FOOTER
========================= */
@media (max-width: 600px) {

  .footer {
    padding: 7px 6%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left p {
    font-size: 18px;
    line-height: 1.4;
  }

  .footer-left2 {
    text-align: center;
    font-size: 12px;
    margin-top: 24px;
  }

  /* -------- FOOTER RIGHT -------- */
  .footer-right {
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
    width: 100%;
    /* added */
    text-align: center;
    /* added */
    display: flex;
    flex-wrap: nowrap;
    /* optional: ek line me force */
  }

  .footer-right a {
    font-size: 13px;
    display: inline-block;
    /* added */
    white-space: nowrap;
    /* added */
  }

  /* Social icons center */
  .social-images {
    justify-content: center;
  }

  /* -------- BOTTOM FOOTER -------- */
  .footer-container1 {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
    margin: 0px 20px;
  }
}



/* ===================================
   RESPONSIVE (TABLET + MOBILE)
   — consolidated common breakpoints
   (kept at end as requested)
=================================== */

/* Large tablets / small desktops */
@media (max-width: 992px) {
  .navbar ul {
    gap: 18px;
  }

  .btn {
    padding: 8px 18px;
  }

  .hero .content h1 {
    font-size: 2rem;
  }

  /* Process diagram -> stacked */
  .process-diagram {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .node,
  .center-circle {
    position: relative;
    transform: none;
  }

  .node p {
    position: static;
    margin-top: 10px;
  }
}

/* Medium tablets / landscape phones */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .features {
    align-items: center;
  }



  .feature {
    justify-content: center;
  }

  .right-image {
    margin-top: 0px;
    display: none !important;
  }

  .transform-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .transform-right {
    justify-content: center;
    margin-top: 25px;
  }

  .dataapproach-container {
    flex-direction: column;
    text-align: center;
    margin: 39px 0px;
  }

  .dataapproach-content {
    flex: 1 1 100%;
  }

  .dataapproach-image img {
    max-width: 320px;
  }
}

/* ==== TABLET ONLY (max-width:1024px) - Bottom Footer Small ==== */
@media (max-width: 1024px) {
  .bottom-footer {
    padding: 2px 2%;
  }
}

/* ==== TABLET ONLY (max-width:1024px) - Main Footer Small Padding ==== */
@media (max-width: 1024px) {
  .main-footer {
    padding: 10px 2% 18px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 0px;

  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .right-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .partner-logo {
    height: 32px;
    margin: 0 auto;
    display: block;
  }

  .hero .content {
    padding: 35px 20px;
    text-align: center;
  }

  .hero .content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero .content p {
    font-size: 0.95rem;
  }

  .features-header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .aud-testimonial-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aud-testimonial-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 90%;
    margin: 0 auto;
    max-width: 360px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-logo {
    margin: 0 auto;
  }
}


/* Narrow phones */

@media (max-width: 620px) {
  .heading h1 {
    font-size: 32px;
    padding: 14px 18px;
    line-height: 1.2;
  }
}





/* ===================================
   CTA TRANSFORM SECTION
=================================== */
.cta-section {
  background: url(../images/Transform.png) no-repeat center center / cover;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  margin: 40px auto;
  max-width: 1236px;
  padding: 101px 106px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .cta-section {
    background: none !important;
    padding: 40px 20px;
    /* optional: mobile ke liye better spacing */
  }
}


.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text h2 {
  font-size: 48px;
  color: #1A1B1F;
  font-weight: 700;
  margin-bottom: 15px;
}





.cta-text p span {
  color: #0088CE;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.cta-text {
  text-align: left;
  margin-left: 0;
}

.cta-text span {
  color: #3bb8f9;
  font-weight: 600;
}



.cta-text {
  max-width: 483px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 28px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.outline {
  border: 1.5px solid #0088CE;
  color: #0088CE;
  background: transparent;
}

.cta-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

.cta-btn.fill {

  border: 1.5px solid #0088CE;
  color: #0088CE;
  background: #ffffff00;
}


/* ========== ONLY TABLET (768px – 1024px) ========== */
@media (max-width: 1024px) {

  .cta-section {
    padding: 50px 60px;
    /* tablet पर थोड़ा छोटा spacing */
    border-radius: 40px;
    max-width: 1100px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .cta-text h2 {
    font-size: 38px;
    /* 48px से छोटा */
    margin-bottom: 10px;
  }

  .cta-text {
    max-width: 400px;
    /* width थोड़ा reduce */
  }

  .cta-buttons {
    gap: 12px;
    justify-content: flex-start;
    /* tablet पर अच्छी alignment */
  }

  .cta-btn {
    padding: 22px 20px;
    /* button size छोटा */
    font-size: 14px;
  }
}




/* ============ RESPONSIVE ============ */
@media(max-width: 768px) {

  .cta-section {
    padding: 0px 25px;
    /* background left/right se andar aa gaya */
    border-radius: 20px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin: 0px 0px;
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .cta-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
  }

  .cta-text h2 {
    font-size: 28px;
    /* phone me chota */
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 13px;
  }

  .cta-buttons {
    justify-content: center;
    width: 100%;
  }

  .cta-btn {
    padding: 18px 20px;
    font-size: 14px;
  }
}

/* Extra small phones */
@media(max-width: 480px) {

  .cta-section {
    padding: 40px 16px;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}














/* ================================
   HERO SECTION STYLES
================================ */
.hero-transform {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0088CE 0%, #44BFFF 100%);
}

/* Animated background dots */
.hero-transform::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 80px 80px, 200px 200px;
  background-position: 0 0, 40px 40px;
  animation: dotFloat 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -15px);
  }
  50% {
    transform: translate(0, -30px);
  }
  75% {
    transform: translate(-20px, -15px);
  }
}

/* Text animation for hero content */
.hero-content h2 {
  animation: textGlow 3s ease-in-out infinite, slideInDown 0.8s ease-out;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 210, 255, 1), 0 0 30px rgba(255, 255, 255, 0.5);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-buttons .hero-btn {
  animation: buttonSlideIn 0.6s ease-out;
}

@keyframes buttonSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-transform canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1000px;
  padding: 0 0px;
}

.hero-content h2{
margin-top: -150px;
}

.hero-content h2 {
  font-size: 77px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: 'Magilio', sans-serif;
}



.hero-content p {
  font-size: 19px;
  line-height: 20px;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 22px 24px;
  border-radius: 18px;
  max-width: 1000px; 
  /* text-align: center; */
  text-align: justify;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);

  /* color: #f3faff; bright white-blue */
  text-shadow: 0 10px 12px rgba(0, 210, 255, 0.6);
}


.hero-content p span {
  color: #fff;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn.outline {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(90deg, #0088CE, #44BFFF);
  box-shadow: 0 8px 16px rgba(0, 119, 204, 0.3);
  transition: all 0.3s ease;
}

/* Hover Effect */
.hero-btn.outline:hover {
  box-shadow: 0 10px 22px rgba(0, 119, 204, 0.4);
  transform: translateY(-3px);
}


.hero-btn.fill {
  background: #fff;
  color: #3BB8F9;
  border: 1.5px solid #fff;
}

.hero-btn.fill:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-btn span {
  transition: transform 0.3s ease;
}

.hero-btn:hover span {
  transform: translateX(3px);
}



/* ========== ONLY TABLET (768px–1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero-transform {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
  }

}

/* ========== ONLY TABLET (768px–1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero-content h2 {
    font-size: 77px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 26px;
    font-family: 'Magilio', sans-serif;
  }

}


/* ===========================
   📱 RESPONSIVE DESIGN
=========================== */
@media (max-width: 992px) {
  .hero-content {
    padding: 120px 30px;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 100px 25px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-transform {
    height: auto;
    padding-bottom: 0px;
  }

  #heroCanvas {
    height: 100vh;
  }

  .hero-content {
    padding: 50px 37px 70px
  }

  .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 17px;
  }

  .hero-content p {
    font-size: 12px;
    line-height: 1.55;
    max-width: 95%;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }

  .hero-buttons .hero-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* ================================
   INNER PAGE HERO (BANNERS)
================================ */
.page-hero {
  position: relative;
  /* Use full width while keeping a responsive center with the same side padding as the header (4vw) */
  width: 100%;
  max-width: 1320px;
  margin: 10px auto clamp(20px, 4vw, 40px);
  padding: clamp(20px, 4vh, 50px) 4vw;
  background: radial-gradient(circle at 5% 10%, rgba(68, 191, 255, 0.25), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(33, 189, 225, 0.2), transparent 45%),
    linear-gradient(180deg, #f2faff 0%, #ffffff 90%);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(6, 32, 67, 0.12);
  display: grid;
  align-items: center;
  /* Vertically center content and media within the hero */
  grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
  /* Keep left content flexible and right media limited */
  gap: clamp(32px, 6vw, 80px);
  overflow: visible;
  isolation: isolate;
  min-height: auto;
  box-sizing: border-box;
  /* allow anchors to offset correctly from the sticky header */
  scroll-margin-top: calc(var(--header-height, 96px) + 16px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0, 136, 206, 0.08), transparent 60%);
  z-index: 0;
}

.page-hero canvas,
.page-hero>canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0088ce;
  font-weight: 600;
  background: rgba(0, 136, 206, 0.08);
  border: 1px solid rgba(0, 136, 206, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0;
  color: #0f2138;
  line-height: 1.1;
  font-weight: 700;
  font-family: 'Magilio', 'Rubik', sans-serif;
}

.page-hero-content .hero-lede,
.page-hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #4b5a6c;
  line-height: 1.7;
  margin: 0;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 136, 206, 0.15);
  color: #0f2138;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.hero-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(0, 136, 206, 0.1);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.hero-stat h3 {
  margin: 0;
  font-size: 2rem;
  color: #0088ce;
  font-weight: 700;
}

.hero-stat p {
  margin: 6px 0 0;
  color: #4b5a6c;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banner-btn.primary {
  background: linear-gradient(120deg, #0088ce, #44bfff);
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 119, 204, 0.25);
}

.banner-btn.secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #0088ce;
  border: 1px solid rgba(0, 136, 206, 0.3);
  box-shadow: 0 10px 24px rgba(5, 51, 89, 0.08);
}

.banner-btn:hover {
  transform: translateY(-3px);
}

.page-hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  /* small offset to avoid touching the hero edge */
}

.page-hero-media::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 191, 255, 0.35), transparent 60%);
  filter: blur(5px);
  z-index: -1;
}

.page-hero-media img,
.hero-image-container {
  max-width: min(480px, 100%);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(6, 32, 67, 0.2);
  background: #f7fbff;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.08));
  animation: none;
}

.media-card-stack {
  display: grid;
  gap: 16px;
}

.media-card {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(9, 36, 70, 0.15);
  border: 1px solid rgba(0, 136, 206, 0.12);
  animation: heroFloat 7s ease-in-out infinite;
}

.media-card:nth-child(2) {
  animation-delay: 0.6s;
}

.media-card:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1100px) {
  .page-hero {
    width: min(100%, calc(100% - 40px));
    padding: 40px clamp(20px, 5vw, 60px);
  }
}

@media (max-width: 992px) {
  .page-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-content {
    margin: 0 auto;
    align-items: center;
  }

  .hero-eyebrow,
  .hero-chip-row,
  .hero-actions {
    justify-content: center;
  }

  .page-hero-media::before {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    border-radius: 22px;
    padding: 40px 20px 40px;
    min-height: auto;
    margin-top: 20px;
    /* make sure hero doesnt get overlapped on very small screens */
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-stat-grid {
    grid-template-columns: 3fr;
  }

  .page-hero-media {
    display: none;
  }
}

/* Mobile: make sure hero does not get hidden under a fixed header */
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(70px + 20px) !important;
    /* ensure clear space for header */
    margin-top: 0 !important;
  }
}

/* Specific styles for industries hero to ensure visibility */
.industries-hero {
  min-height: auto;
  overflow: visible;
}

@media (max-width: 600px) {
  .industries-hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .industries-hero .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .industries-hero .page-hero-media {
    display: none;
  }
}






:root {
  --pipe-color: #F2FAFF;
  /* ✅ All lines single color */
  --accent-pink: rgba(245, 187, 190, 0.18);
  --bg: #ffffff;
  --text: #0b2340;
  --header-height: 96px;
  /* default, can be updated at runtime via JS */
}

/* ✅ PROCESS SECTION BASE STYLES */
.wrap {
  max-width: 1200px;
  margin: 0px auto;
  padding: 14px;
}

/* ----- MOBILE VIEW ----- */
@media (max-width: 768px) {
  .mobile-wrap {
    max-width: 100%;
    padding: 14px;
    margin: 0 auto;
  }
}

.process-section h2 {
  font-size: 65px;
  font-weight: 700;
  margin: 3px 0 73px;
  text-align: center;
}

.process-stage {
  position: relative;
  width: 100%;
  height: 560px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

/* ✅ Pipes & Dots */
.pipe-main {
  fill: none;
  stroke: var(--pipe-color);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.branch-soft {
  fill: none;
  stroke: var(--accent-pink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
}

.branch-dot {
  fill: rgba(245, 187, 190, 0.9);
  opacity: 0.9;
}

.flow-dot {
  fill: var(--pipe-color);
  r: 6;
}

/* ✅ Center Node */
.center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #f5f9ff;
  box-shadow: 0 0 20px rgba(0, 157, 255, 0.2), 0 12px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 6;
  cursor: pointer;
}

.center-node img {
  width: 100px;
  height: 100px;
  margin-bottom: 8px;
}

.center-node h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

/* ✅ Side Icons */
.side-icon {
  position: absolute;
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(232, 248, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 157, 255, 0.05);
}

.icon-circle img {
  width: 58px;
  height: 58px;
}

.side-icon p {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--text);
}

/* ✅ Position Classes */
.top-left {
  left: 6%;
  top: 2%;
}

.mid-left {
  left: 7%;
  top: 35%;
}

.bottom-left {
  left: 6%;
  bottom: 2%;
}

.top-right {
  right: 6%;
  top: 2%;
}

.mid-right {
  right: 7%;
  top: 35%;
}

.bottom-right {
  right: 6%;
  bottom: 2%;
}

/* ✅ RESPONSIVE SCALING */
@media (max-width: 900px) {
  .process-section h2 {
    font-size: 30px;
  }

  .process-stage {
    transform: scale(0.88);
    transform-origin: center;
  }
}

@media (max-width: 700px) {
  .process-section h2 {
    font-size: 30px;
  }

  .process-stage {
    transform: scale(0.78);
    transform-origin: center;
  }

  .center-node {
    width: 190px;
    height: 190px;
  }

  .center-node img {
    width: 80px;
    height: 80px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .icon-circle img {
    width: 48px;
    height: 48px;
  }

  .side-icon p {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .process-stage {
    transform: scale(0.68);
    transform-origin: center;
  }

  .center-node {
    width: 160px;
    height: 160px;
  }

  .center-node img {
    width: 70px;
    height: 70px;
  }

  .center-node h3 {
    font-size: 14px;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .icon-circle img {
    width: 40px;
    height: 40px;
  }

  .side-icon p {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .process-stage {
    transform: scale(0.58);
    transform-origin: center;
  }

  .process-section h2 {
    font-size: 22px;
  }
}

/* ✅ LINE ANIMATION */
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.pipe-main.animate {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 1.2s forwards ease-in-out;
}

/* ========== MOBILE OPTIMIZATION (PROCESS SECTION) ========== */
@media (max-width: 600px) {

  .process-stage {
    transform: scale(0.65);
    transform-origin: center;
    height: 420px;
    /* smaller height for phone */
    margin: -113px 0px;
  }

  .center-node {
    width: 160px;
    height: 160px;
  }

  .center-node img {
    width: 70px;
    height: 70px;
  }

  .center-node h3 {
    font-size: 14px;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
    border-width: 4px;
  }

  .icon-circle img {
    width: 42px;
    height: 42px;
  }

  .side-icon p {
    font-size: 11px;
  }

  /* ✅ Adjusted positions for small screens */
  .bottom-right {
    right: -32%;
    bottom: 5%;
  }

  .bottom-left {
    left: -32%;
    bottom: 5%;
  }

  .mid-left {
    left: -37%;
    top: 41%;
  }

  .mid-right {
    right: -37%;
    top: 41%;
  }

  .top-left {
    left: -32%;
    top: 14%;
  }

  .top-right {
    right: -32%;
    top: 14%;
  }
}

.text-above {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
}

.text-above p {
  order: 1;
  margin-bottom: 6px;
}

.text-above .icon-circle {
  order: 2;
}

/* Only move text above icon for these two */
.top-left,
.top-right {
  display: flex;
  flex-direction: column-reverse;
}