/* Sticky navbar scroll effect */
/* Navbar base state */
.navbar-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 1.5rem 4rem;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
}
/* Scrolled state with smooth transitions */
.navbar.scrolled {
  position: fixed;
  padding: 1.5rem 1rem;
  height: 86px;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.1);
  animation: navSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Logo transitions */
.navbar #scrolledLogo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s ease;
}
.navbar.scrolled #scrolledLogo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Smooth slide down animation */
@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Ensure smooth transitions for all elements */
.navbar .nav-link,
.navbar .demo-btn,
.navbar .bi-list {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled #scrolledLogo {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.navbar .nav-link {
  transition: color 0.3s ease;
}
.navbar.scrolled .nav-link {
  color: black !important;
}
.navbar.scrolled .nav-link:hover {
  color: #38297c !important;
}
.navbar.scrolled .demo-btn {
  background: #38297c;
  color: white;
  transition: background-color 0.3s ease;
}
.navbar.scrolled .demo-btn:hover {
  background: black;
}
.navbar.scrolled .bi-list {
  color: black !important;
  transition: color 0.3s ease;
}
/* Services Swiper Styles */
.services-swiper {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .services-swiper .swiper-slide {
    width: 292px !important;
  }
}
/* Menu icon size for mobile toggler */
.menu-icon {
  font-size: 32px;
}
/* Additional styles can be added here */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero-section {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #2b3155 0%, #301e7d 100%);
  color: #fff;
  overflow: hidden;
  width: 100%;
  position: relative;
  /* min-height: 100vh; */
}
/* Navbar */
.navbar {
  background: transparent;
  padding: 1rem 4rem;
  position: relative;
  z-index: 1000;
}
.navbar-brand img {
  width: 66px;
  height: 58px;
  object-fit: contain;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #47e9ff !important;
}
.demo-btn {
  background: #47e9ff;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 15% 100%, 0 75%);
  transition: background 0.3s ease;
}
.demo-btn:hover {
  background: #00a8b5;
}
@media (max-width: 576.98px) {
  .section-btn {
    background: #00c1d3 !important;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 15% 100%, 0 75%);
    transition: background 0.3s ease;
  }
  .section-btn:hover {
    background: black !important;
  }
}
.section-btn {
  background: #38297c;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 15% 100%, 0 75%);
  transition: background 0.3s ease;
}
.section-btn:hover {
  background: black;
}
/* Mobile Overlay Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
}
.mobile-overlay.active {
  display: flex !important;
}
.mobile-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #000;
}
.mobile-overlay .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 18px auto;
  position: static;
  transform: none;
}
.mobile-overlay .nav-link {
  font-size: 18px;
  margin: 15px 0;
  color: #000 !important;
  text-align: left;
  width: 100%;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-overlay .nav-link:hover,
.mobile-overlay .nav-link.active {
  background: #000 !important;
  color: #fff !important;
}
@media (min-width: 768px) {
  .mobile-overlay .navbar-brand {
    display: none !important;
  }
}
.mobile-overlay .demo-btn {
  margin-top: auto;
  margin-bottom: 30px;
  width: 85%;
  max-width: 300px;
}
.mobile-overlay .social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.mobile-overlay .social-icons a {
  font-size: 24px;
  color: #000;
  transition: color 0.3s ease;
}
.mobile-overlay .social-icons a:hover {
  color: #47e9ff;
}
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 66px 0 40px 5%;
  min-height: calc(100vh - 86px);
}


/* Awais Aslam Change This */

@media (max-width: 575.98px) {
  .hero {
    padding-top: 0% !important; /* mobile pe bhi same */
    .hero-content { margin-top: -75px; }      /* upar pull */
  .hero-logo { margin-top: 0 !important; }  /* ensure no extra gap */
  }
}
.hero h1 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 0.9;
  color: #fff;
}
.hero h2 {
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 600;
  display: block;
  color: #47e9ff;
  margin-top: 15px;
}
.hero p {
  color: #ffff;
  margin-top: 15px;
  font-size: 1.4rem;
  max-width: 420px;
}

@media (max-width: 375px) {
  .hero {
    padding-top: 0% !important; /* mobile pe bhi same */
    .hero-content { margin-top: -75px; }      /* upar pull */
  .hero-logo { margin-top: 0 !important; width: 80px; margin-top: 0 !important;}  /* ensure no extra gap */
  }
}
.hero h1 {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 0.7;
  color: #fff;
}
.hero h2 {
  line-height: 1;
  font-size: 2.0rem;
  font-weight: 500;
  display: block;
  color: #47e9ff;
  margin-top: 15px;
}
.hero p {
  color: #ffff;
  margin-top: 8px;
  font-size: 1.2rem;
  max-width: 400px;
}


/* End Awais Aslam Change This */


.learn-btn {
  background: #00c1d3;
  color: #fff;
  font-weight: 600;
  margin-top: 25px;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 15% 100%, 0 75%);
  transition: background 0.3s ease;
}
.learn-btn:hover {
  background: black;
}
/* Right Images */
.hero-images {
  position: relative;
}
.vr-man {
  bottom: -67px;
  position: relative;
  z-index: 3;
  max-width: 270px;
}
.fingerprint {
  position: absolute;
  bottom: -67px;
  right: 70px;
  z-index: 1;
  max-width: 360px;
  opacity: 0.9;
}
/* Mobile hero button styles */
.hero-images .learn-btn {
  margin: 20px auto;
  position: relative;
  z-index: 4;
}
@media (max-width: 767.98px) {
  .hero-images .learn-btn {
    display: block;
    width: fit-content;
  }
}
.teal-icon {
  position: absolute;
  top: 55px;
  right: 238px;
  z-index: 2;
  max-width: 80px;
}
/* Responsive */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero h2 {
    font-size: 2.4rem;
  }
  .navbar {
    padding: 1rem 2rem;
  }
}
@media (max-width: 991px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .hero {
    padding: 0px 0;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  .hero-images {
    margin-top: 40px;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-right: 20px;
  }
  .fingerprint {
    position: absolute;
    max-width: 280px;
    bottom: -67px;
    right: 40px;
    left: auto;
    transform: none;
  }
  .teal-icon {
    position: absolute;
    max-width: 60px;
    top: 55px;
    right: 180px;
    left: auto;
    transform: none;
  }
  .vr-man {
    max-width: 220px;
    margin: 0;
    position: relative;
    z-index: 3;
  }
  .hero-left-side {
    padding: 0 15px;
  }
  .hero .col-lg-7 {
    text-align: center;
    padding-left: 5%;
  }
}



@media (max-width: 576px) {
  .vr-man {
    max-width: 140px;
    position: relative;
    z-index: 3;
    right: -179px !important;
  }
}
@media (max-width: 576px) {
  .fingerprint {
    /* max-width: 265px !important; */
    bottom: -67px;
    right: -20px;
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  .learn-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
  .vr-man {
    max-width: 200px;
  }
  .fingerprint {
    max-width: 240px;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar-brand img {
    width: 50px;
    height: 44px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .learn-btn {
    padding: 0.5rem 1rem;
  }
  .hero-images {
    padding-right: 10px;
  }
  .vr-man {
    max-width: 160px;
    position: relative;
    z-index: 3;
    right: 0;
  }
  .fingerprint {
    max-width: 200px;
    bottom: -67px;
    right: -20px;
    opacity: 0.7;
  }
  .teal-icon {
    max-width: 40px;
    top: -5px;
    right: 140px;
  }
}
.hero-left-side {
  padding-left: 5%;
}
.company-growth {
  padding: 80px 7%;
  background: #fff;
  color: #0c1633;
  overflow: hidden;
}
.growth-image-wrapper {
  position: relative;
}
.growth-main-img {
  height: 631px;
  width: 310px;
  max-width: 80% !important;
  display: block;
  position: relative;
  z-index: 2;
}
/* media query for small devices */
@media (max-width: 768px) {
  .growth-main-img {
    width: 100%;
    max-width: 100% !important;
    height: auto;
  }
}
.growth-bottom-img {
  height: 227px;
  position: absolute;
  bottom: -9%;
  right: 57%;
  z-index: 1;
  width: 70%;
}
/* Right content */
.growth-content {
  padding-left: 5%;
}
.growth-content p {
  color: #4a5568;
  margin-bottom: 40px;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 400;
}
.growth-content b {
  color: #2e2172;
  font-weight: 700;
}
/* Mission Box */
.mission-box {
  top: 83px;
  z-index: 11;
  left: -288px;
  width: 955px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 140px;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #2e2172,
    #2e2172 8px,
    transparent 8px,
    transparent 20px
  );
  opacity: 0.15;
}
.mission-box p {
  color: #2e2172;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
/* Responsive */
@media (max-width: 991px) {
  .company-growth {
    padding: 60px 5%;
  }
  .growth-image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .growth-bottom-img {
    width: 50%;
    right: -10%;
    display: none;
  }
  .growth-content {
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .company-growth {
    padding: 40px 20px;
  }
  .growth-bottom-img {
    width: 40%;
  }
  .mission-box {
    padding: 25px 30px;
  }
  .growth-content p,
  .mission-box p {
    font-size: 1.1rem;
  }
}
/* ===== Company Growth (pixel-match) ===== */
.company-growth {
  --brand: #2e2172;
  --text: #5a6a85;
  --card-w: 75vw; /* mission card (desktop) */
  --gap: clamp(28px, 0vw, 96px);
  background: #fff;
  padding: clamp(56px, 7vw, 96px) 7% clamp(110px, 14vw, 160px);
  position: relative;
  overflow: hidden;
}
.growth-wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
/* 2-col grid like screenshot */
.growth-grid {
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  /* align-items:center; */
  /* gap: var(--gap); */
}
/* LEFT: photo + stripes */
.growth-visual {
  position: relative;
  width: 100%;
}
.growth-photo {
  display: block;
  width: 310px;
  height: 631px;
  max-height: 640px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.growth-stripes {
  position: absolute;
  bottom: -76px;
  left: -463px;
  width: 622px;
  height: 237px;
  z-index: 1;
  pointer-events: none;
}
/* RIGHT: gradient copy */
.growth-copy p {
  color: var(--text);
  font-size: clamp(18px, 1.25vw + 12px, 22px);
  line-height: 1.8;
  margin: 16% 0% 0% 0%;
}
.growth-copy .em {
  color: var(--brand);
  font-weight: 700;
  font-style: italic;
}
/* Small devices ke liye (mobile screens <768px) */
@media (max-width: 767.98px) {
  .growth-photo {
    width: 166px; /* full responsive width */
    height: 338px; /* height apne ratio ke sath adjust */
    max-height: 400px; /* zarurat ho to limit kar do */
  }
}

.mission-card {
  padding: 0px !important;
}

@media (max-width: 575.98px) {
  /* Mission Card adjustments */
  .mission-card {
    position: relative !important;
    z-index: 3 !important;
    margin: -331px 0 0 auto !important;
    width: 58% !important;
    padding: 18px 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  /* Growth Photo Section */
  .growth-wrap {
    height: 700px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Center content */
  }
  /* Make first image appear on top */
  .growth-visual {
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
  }
  /* Move the second image (right stripes) to the bottom */
  .growth-stripes {
    order: 2 !important;
  }
  /* Right column (growth copy) on top for small devices */
  .growth-copy {
    /* order: 3 !important; */
    width: 100% !important;
    margin-top: 0px !important; /* Optional, adjust based on design */
  }
  /* Mission Card (if needed, keep in place) */
  .mission-card {
    order: 4 !important;
    margin-top: 20px !important; /* Adjust spacing */
  }
}
/* OVERLAP: mission card exact feel */
.mission-card {
  position: absolute;
  left: clamp(215px, 16vw, 560px); /* image ke right edge ke aas-paas */
  bottom: 107px; /* thora niche overlap */
  width: var(--card-w);
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 14px;
  background: #fff;
  /* OLD: box-shadow: 0 18px 50px rgba(0,0,0,.12); */
  box-shadow: 0 -18px 40px -18px #caa6e2; /* top par pink (#CAA6E2), sides minimize */
  padding: clamp(22px, 2vw, 34px) clamp(26px, 2.2vw, 40px);
  z-index: 5;
}
.mission-card p {
  color: var(--brand);
  font-weight: 700;
  font-size: clamp(16px, 0.9vw + 12px, 18px);
  line-height: 1.7;
  margin: 0;
}

/* Awais Aslam */







@media (max-width: 575.98px) {
  .services-title {
    font-size: 28px;       /* INSIGHTS text bara */
  }

  .services-icon {
    width: 90px;           /* image bara */
    height: auto;
    margin-right: 6px;     /* image aur text ke beech thoda gap */
    vertical-align: middle;/* text ke sath align rahe */
  }
}

.parent-container {
  position: relative; /* parent ko relative banana zaroori hai */
}

.img-custom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;               /* responsive base size */
  height: auto;
  transform: scale(1.2);      /* 20% zoom */
  transform-origin: bottom right;
}

/* Mobile ke liye (screen < 576px) */
@media (max-width: 575.98px) {
  .img-custom {
    width: 90%;              /* mobile pe badi ho jayegi */
    transform: scale(1.45);  /* aur zoom bhi ho jayega */
    right: -35px;            /* thoda sa right push */
  }
}

.hero-logo {
  width: 110px;          /* pehle 100px tha → ab thoda bada */
  margin-bottom: 50px;   /* text se gap */
}

/* Mobile ke liye */
@media (max-width: 575.98px) {
  .hero-logo {
    width: 125px;        /* mobile pe aur bada */
    margin-bottom: 30px; /* thoda aur spacing */
  }
}

.mobile-learn-btn {
  font-size: 15px;       /* text bada */
  padding: 12px 28px;    /* button height + width zyada */
}

/* Agar chhoti screen ke liye aur zyada bara karna ho */
@media (max-width: 575.98px) {
  .mobile-learn-btn {
    font-size: 15px;
    padding: 10px 28px;
  }
}







@media (max-width: 375px) {
  .img-custom {
    width: 90%;              /* mobile pe badi ho jayegi */
    transform: scale(1.25);  /* aur zoom bhi ho jayega */
    right: -5px;            /* thoda sa right push */
  }
}

.hero-logo {
  width: 110px;          /* pehle 100px tha → ab thoda bada */
  margin-bottom: 50px;   /* text se gap */
}

/* Mobile ke liye */
@media (max-width: 575.98px) {
  .hero-logo {
    width: 125px;        /* mobile pe aur bada */
    margin-bottom: 30px; /* thoda aur spacing */
  }
}

.mobile-learn-btn {
  font-size: 15px;       /* text bada */
  padding: 12px 28px;    /* button height + width zyada */
}

/* Agar chhoti screen ke liye aur zyada bara karna ho */
@media (max-width: 575.98px) {
  .mobile-learn-btn {
    font-size: 15px;
    padding: 10px 28px;
  }
}





.text-white {
  font-size: 18px;       /* default se thoda bada */
  line-height: 1.6;      /* text ko readable banayega */
}

/* Mobile ke liye aur bhi readable */
@media (max-width: 575.98px) {
  .text-white {
    font-size: 20px;
    line-height: 1.7;
  }
}

.mission-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0%;
  padding: 20px 30px;   /* andar spacing */
  margin-left: -50px;   /* poore card ko thoda left kheenchna */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mission-card img {
  max-width: 80px;      /* image ka size control */
  margin-right: 200px;   /* text ko right push karna */
}

@media (max-width: 575.98px) {
  .mission-card {
    margin-left: 90px !important;  /* pura card 20px left shift */
    margin-top: 50px !important;
    text-align: center;
    width: calc(100% + 20px); /* shift ke sath card cut na ho */
  }
}

.mission-card p {
  margin: 0;
  font-size: 18px;
  color: #2a2270;
  font-weight: 600;
}


.mission-img {
  max-width: 100%;
  transform: scale(1.4);         /* 20% zoom */
  transform-origin: top left; /* left se zoom karega */
}









/* mission left angled stripes */
.mission-slasher {
  display: block;
  width: 72px;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--brand),
    var(--brand) 10px,
    transparent 10px,
    transparent 24px
  );
  opacity: 0.15;
}
/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .company-growth {
    padding: 56px 5% 132px;
  }
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .growth-visual,
  .growth-copy {
    margin-inline: auto;
    max-width: 560px;
  }
  .growth-copy {
    text-align: center;
  }
  /* mission card mobile-style overlap (right side) */
  .mission-card {
    position: relative;
    left: auto;
    bottom: 351px;
    width: min(560px, 92%);
    grid-template-columns: 68px 1fr;
    margin: -40px 0 0 auto; /* pull-up overlap + right align */
  }
  .mission-slasher {
    width: 68px;
  }
}
@media (max-width: 575.98px) {
  .company-growth {
    padding: 0px 0px 0px;
  }
  .growth-stripes {
    bottom: -50px;
    left: -46px;
    width: 155%;
  }
  .growth-copy p {
    font-size: 16px;
  }
  .mission-card {
    margin-top: -28px; /* image par halka overlap */
    width: 90%;
    grid-template-columns: 56px 1fr;
    padding: 18px 20px;
  }
  .mission-slasher {
    width: 56px;
  }
}
@media (max-width: 575.98px) {
  .mission-card {
    display: flex;
    flex-direction: column;
  }
  .mission-card img {
    order: 2 !important; /* Moves the image to the bottom */
  }
  .mission-card p {
    order: 1 !important; /* Moves the paragraph to the top */
  }
}
/* ===== Small devices: text first, then image ===== */
@media (max-width: 575.98px) {
  .growth-grid {
    grid-template-columns: 1fr !important;
    grid-auto-flow: row; /* safety */
    display: flex;
    flex-direction: column;
  }
  /* Text block ko row-2 pe lao */
  .growth-copy {
    grid-column: 1;
    grid-row: 2; /* second */
    position: relative;
    z-index: 2; /* image se upar rahe */
    margin-bottom: 16px; /* image se gap */
    /* order: 1;             */
  }
  /* Image + stripes ko row-1 par */
  .growth-visual {
    grid-column: 1;
    grid-row: 1; /* first */
    position: relative;
    z-index: 1;
    order: 2; /* Show second on mobile */
  }
  .growth-photo {
    z-index: 1;
  }
  .growth-stripes {
    position: absolute;
    bottom: -77px;
    left: -46px;
    width: 50%;
    z-index: 0;
    pointer-events: none;
  }
  /* Mission card image par overlap kare, text par nahi */
  .mission-card {
    position: relative;
    z-index: 3;
    margin: -28px 0 0 auto;
    width: 90%;
    grid-template-columns: 56px 1fr;
    /* padding: 18px 20px; */
  }
}

.mission-card p {
  padding: 18px 20px 18px 20px;
}
/* services setion css starts here  */
.services-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  position: relative;
}

@media (max-width: 992px) {
  .mission-card {
    align-items: start;
    padding: 0px !important;
  }
  .mission-card p {
    padding: 18px 20px 0px 20px;
  }
}
.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.title-wrapper {
  position: relative;
  display: inline-block;
  text-align: left;
}
.dots-img {
  position: absolute;
  top: -37px;
  left: -5%;
  transform: translateX(-50%);
  width: 40px;
}
.services-title {
  font-weight: 500;
  letter-spacing: 5px;
  color: #0f0832;
  text-transform: uppercase;
  margin: 0;
}
.waves-img {
  max-width: 600px;
  height: auto;
}
@media (max-width: 992px) {
  .services-section {
    padding: 30px 0;
  }
  .services-header {
    flex-direction: column; /* abhi bhi stack hoga */
    align-items: center;
    text-align: center;
    position: relative; /* absolute ke liye reference */
  }

  .waves-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: auto;
  }

  .title-wrapper {
    text-align: center;
    margin-top: 100px; /* thoda space waves ke liye */
  }

  .dots-img {
    left: -20%;
    width: 30%;
    height: auto;
  }
}

.service-card {
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0c1633;
}
.service-card p {
  font-size: 0.95rem;
  color: #4a4a4a;
  flex-grow: 1;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .services-swiper .swiper-slide {
    height: auto;
    display: flex;
  }
  .services-swiper .swiper-slide > div {
    height: 100%;
  }
  .demo-btn {
    background-color: #38297c;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  .demo-btn:hover {
    background-color: black;
  }
}
.demo-btn {
  background-color: #00c1d3;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.demo-btn:hover {
  background-color: black;
}
/* insights section css starts here  */
.insights {
  padding: 0px 5% 120px;
  background: #fff;
  overflow: hidden;
}
.insights h2.services-title {
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .insights {
    padding: 60px 4% 100px;
  }
}
@media (max-width: 768px) {
  .insights {
    padding: 40px 3% 80px;
  }
  .main-card {
    margin-top: 90px;
  }
  .insights-card .info-box {
    bottom: -70px;
    width: 95%;
    padding: 15px;
  }
  .insights-card .info-box p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .insights {
    padding: 30px 3% 60px;
  }
  .main-card {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
  .insights-card {
    max-width: 85%;
  }

  .prototype-box-box {
    margin-top: 70px !important;
  }

  .prototype-box-img {
    margin-bottom: 63px !important;
  }

  .insights-card .info-box {
    flex-direction: row;
    text-align: center;
    bottom: -90px;
  }
  .insights-card .info-box img {
    margin-bottom: 10px;
  }
}







/* Mobile: ONLY Ideation card (first insights-card) — full width, image centered */
@media (max-width: 575.98px) {
  /* Container full width */
  .insights-card:first-child {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center; /* image ko center karega */
  }

  /* Image center + no gap */
  .insights-card:first-child > img.img-fluid {
    position: static !important;
    display: block;
    margin: 0 auto !important;   /* always center horizontally */
  }

  /* White card below image */
  .insights-card:first-child .card {
    position: static !important;
    width: 100% !important;      /* full screen cover kare */
    margin: 0 !important;        /* no side gaps */
    border-radius: 0;            /* edge-to-edge look */
  }

  /* Info box inside card */
  .insights-card:first-child .info-box {
    position: static !important;
    width: 100% !important;
  }

  /* Safe spacing with next cards */
  .insights .main-card {
    margin-bottom: 12px;         /* thoda breathing space */
  }
}

















.services-icon {
  position: absolute;
  top: -20px;
  width: 35px;
}
.insights-card {
  position: relative;
}
.insights-card img {
  display: block;
}
.insights-card .prototype-box {
  position: absolute !important;
  bottom: -105px !important;
  left: 0 !important;
  right: 0 !important;
  margin: auto !important;
  background-color: #fff !important;
  width: 90% !important;
  max-width: 100% !important;
  padding: 10px 0 !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 8px -8px 20px rgba(0, 0, 0, 0.15) !important;
}
.insights-card .info-box {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  width: 90%;
  max-width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: flex-start !important;
  box-shadow: 8px -8px 20px rgba(0, 0, 0, 0.15);
}
.main-card-insights h5,
p,
.main-card-smart-mirror h5 {
  color: #38297c !important;
}
.insights-card .info-box h4 {
  font-weight: 600;
}
.insights-card .info-box img {
  max-width: 60px;
}
.insights-card .info-box p {
  font-size: 14px;
}
.main-card {
  margin-top: 124px;
}
.insights-card .card,
.insights-card .info-box {
  border: none !important;
  outline: none !important;
}
/* our-product section css starts here  */
.our-product {
  position: relative;
  background-image: url("../images/Rectangle8.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  margin-top: 100px;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-product .services-title {
  position: absolute;
  top: 14px;
  left: 71%;
  transform: translateX(-50%);
  color: black;
  font-size: 2rem;
}
.our-product .services-title .services-icon {
  position: absolute;
  top: 0px;
  left: -43px;
  width: 35px;
}
.our-product .main-card {
  margin: 60px 5% 60px 0px;
  background-color: white;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.our-product .main-card-smart-mirror {
  margin: 60px 0px 60px 5%;
  background-color: white;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.our-product .main-card-smart-mirror .top-image {
  position: absolute;
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
}
.our-product .left-col {
  position: relative;
}
.our-product {
  color: #38297c;
}
.top-image {
  position: absolute;
  top: -92px; /* bahar nikalne ke liye */
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
}
/* media query for small devices */
@media (max-width: 576px) {
  .top-image {
    top: 0px;
    left: 70%;
  }
}
.bottom-image {
  margin-top: 150px; /* adjust depending on top image height */
  max-width: 100%;
}
/* our products section css starts here  */
:root {
  --brand-color: #38297c;
}
.our-product {
  position: relative;
  background-image: url("../images/Rectangle8.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 100px;
  padding: 80px 0 40px;
}
@media (max-width: 768px) {
  .our-product {
    background-image: url("../images/smallbackground.png") !important;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin-top: 100px;
    padding: 80px 0 40px;
  }
}
.our-product .services-title {
  position: absolute;
  top: 0px;
  left: 74%;
  transform: translateX(-50%);
  color: black;
  font-size: 2rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.our-product .services-title .services-icon {
  margin-right: 10px;
  width: 35px;
}
.main-card-insights,
.main-card-smart-mirror {
  padding: 0px 0px 60px 0px;
  background-color: white;
  margin: 60px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.main-card-insights {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.main-card-smart-mirror {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.left-col {
  position: relative;
  padding: 30px;
}
.top-image {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 238px;
  z-index: 2;
}
.mirror-top-image {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  z-index: 2;
}
.cardly-top-image {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  z-index: 2;
}
.bottom-image {
  margin-top: 100px;
  max-width: 100%;
}
.right-content {
  padding: 30px;
}
.icon-box {
  text-align: center;
}
.icon-box img {
  max-width: 132px;
  height: 136px;
}
/* form small devices only media query */
@media (max-width: 576px) {
  .icon-box img {
    max-width: 265px;
    height: 136px;
  }
}
h5.fw-bold {
  color: black;
  margin-top: 20px;
}
p {
  color: black;
}
/* Mobile Tabs */
.mobile-tabs {
  display: none;
  margin-bottom: 20px;
  width: 100%;
}
.tabs-container {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  border-bottom: 1px solid #888888;
}
.tab-btn {
  background-color: transparent;
  border: none;
  padding: 12px 15px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  color: #495057;
  transition: all 0.3s ease;
}
.tab-btn.active {
  color: var(--brand-color);
  font-weight: 600;
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-color);
  animation: underline 0.3s ease-out;
}
.tab-btn:hover {
  color: var(--brand-color);
}
.tab-btn:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  animation: underline 0.3s ease-out;
}
@keyframes underline {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .our-product {
    padding: 60px 0 30px;
  }
  .main-card-insights,
  .main-card-smart-mirror {
    margin: 100px 0 60px;
    border-radius: 20px;
  }
  .top-image {
    position: relative;
    top: -50px;
    margin-bottom: -30px;
  }
  .mirror-top-image {
    position: relative;
    top: 0px;
    margin-bottom: 10px;
  }
  .cardly-top-image {
    position: relative;
    top: -30px;
    margin-bottom: 10px;
  }
  .bottom-image {
    margin-top: 0;
  }
  .main-card-smart-mirror .left-col {
    order: 2;
  }
  .main-card-smart-mirror .right-content {
    order: 1;
  }
}
.main-card-insights,
.main-card-smart-mirror {
  margin: 60px 5% 0 0;
}
@media (max-width: 768px) {
  .our-product .services-title {
    font-size: 1.5rem;
    top: -45px;
  }
  .main-card-insights,
  .main-card-smart-mirror {
    margin: 80px 15px 40px;
  }
  .left-col,
  .right-content {
    padding: 20px;
  }
  .main-card-smart-mirror .left-col {
    order: 1;
  }
  .main-card-smart-mirror .right-content {
    order: 2;
  }
}
@media (max-width: 576px) {
  .our-product {
    margin-top: 80px;
    padding: 50px 0 20px;
  }
  .our-product .services-title {
    font-size: 1.2rem;
    top: -52px;
    right: -73%;
    padding: 8px 15px;
  }
  .services-icon {
    width: 45px !important;
  }
  .main-card-insights,
  .main-card-smart-mirror {
    margin: 60px 10px 30px;
  }
  .top-image {
    top: 24px;
    max-width: 64%;
    left: 59%;
  }
  .mobile-tabs {
    display: flex;
    justify-content: center;
  }
  .tabs-container {
    flex-wrap: nowrap;
  }
  .tab-btn {
    min-width: auto;
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  .card-container {
    display: none;
  }
  .card-container.active {
    display: block;
  }
}
/* experience section starts here  */
#experience-section {
  padding: 157px 0px 60px 0px;
  background: #f6f4fa;
  position: relative;
  overflow: hidden;
}
#experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/experience-bg.png") no-repeat left top;
  background-size: cover;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
#experience-section > * {
  position: relative;
  z-index: 1;
}
/* Swiper Styling (unique to experience) */
/* Swiper Styling (unique to experience) */
#experience-section .experience-swiper {
  width: 100%;
  padding: 0 20px 40px;
  overflow: hidden;
}
#experience-section .experience-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#experience-section .experience-swiper .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
@media (max-width: 768px) {
  #experience-section .experience-swiper {
    padding: 0 10px 40px;
  }
  #experience-section .experience-swiper .swiper-slide img {
    height: 250px;
  }
}
@media (max-width: 576px) {
  #experience-section .experience-swiper .swiper-slide img {
    height: 200px;
  }
}
#experience-section .swiper-button-prev {
  margin-left: 20px !important;
}
#experience-section .swiper-button-next {
  margin-right: 20px !important;
}
/* Custom arrows */
#experience-section .swiper-button-next,
#experience-section .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38297c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#experience-section .swiper-button-next:hover,
#experience-section .swiper-button-prev:hover {
  background: #38297c;
  color: #fff;
}
#experience-section .swiper-button-next::after,
#experience-section .swiper-button-prev::after {
  content: "";
  display: none;
}
#experience-section .swiper-button-next i,
#experience-section .swiper-button-prev i {
  font-size: 16px;
}
/* Make arrows responsive */
@media (max-width: 768px) {
  #experience-section .swiper-button-next,
  #experience-section .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  #experience-section .swiper-button-next i,
  #experience-section .swiper-button-prev i {
    font-size: 14px;
  }
}
/* Pagination dots brand color */
#experience-section .swiper-pagination-bullet {
  background: #6a1b9a; /* apna brand color yahan daal do */
  opacity: 0.5;
}
#experience-section .swiper-pagination-bullet-active {
  background: #6a1b9a;
  opacity: 1;
}
/* logos section starts here  */
#logos {
  text-align: center;
  padding: 50px 20px;
}
section h2 {
  /* max-width: 700px; */
  font-size: 1.75rem;
  margin: 0 auto 40px;
  font-weight: 600;
  color: #222;
}
.logs-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 600;
  color: #222;
}
section h2 span {
  color: #c297df; /* purple highlight */
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
.logo-row img {
  max-height: 100px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  section h2 {
    font-size: 1.2rem;
    margin: 0 auto 40px;
    font-weight: 600;
    color: #222;
  }
  .logo-row {
    gap: 16px 20px; /* thoda gap kam karo */
  }
  .logo-row img {
    margin: 8px 0;
  }
  /* Only wrap, do not force width, keep original image width */
  .logo-row img {
    display: inline-block;
  }
}
/* footr section css starts here  */
footer {
  padding: 40px 40px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0px;
}
/* Logo */
.footer-logo img {
  max-height: 90px;
  margin-bottom: 20px;
}
/* Columns */
.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-column ul li a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #c297df; /* Purple hover */
}
/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: #111;
  transition: fill 0.3s;
}
.footer-social a:hover svg {
  fill: #c297df;
}
/* Bottom Bar */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
}
.footer-bottom a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #c297df;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-column {
    margin-bottom: 20px;
  }
}

/* --- iPhone Safari horizontal scroll quick-fix --- */
html, body {
  overflow-x: hidden;   /* sirf horizontal scroll lock */
}

  