/* RESET & FONTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #6101BF;
  --dark-blue: #0d0630;
  --text-dark: #121212;
  --text-gray: #666666;
  --bg-light: #f6f9fc;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);

  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CURSOR GLOW EFFECT */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.1s ease-out;
}

.purple-text {
display: block;
  color: #6101BF;
}

/* HEADER BASE SETUP */
.top-header {
  position: absolute; /* Dynamic fixed child control karne ke liye */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-contact-info {
background: transparent;
    padding: 11px 0 13px 0px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    max-height: 40px;
    overflow: hidden;
    opacity: 1;
    border-bottom: solid 1px #ccc;
  
}

.top-contact-info .contact-details {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  width: 100%;
  font-size: 12px;
}

.top-header.scrolled .top-contact-info {
  max-height: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-100%);
}


.main-nav-wrapper {
  width: 100%;
  padding: 12px 0;
  transition: all 0.3s ease;
}


.top-header.scrolled .main-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
background: #6101bf;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0px;
  animation: slideDown 0.3s ease-out;
}

.top-header.scrolled .main-nav-wrapper .header-logo {
    height: 58px;
    background-color: #fff;
    padding: 10px;
    border-radius: 9px;
    margin: 10px 0px;
}


.top-header.scrolled .nav-item.active {
    color:hsl(59, 100%, 50%)
}

.top-header.scrolled .nav-item {
    color: #fff;
}

.top-header.scrolled .active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color:hsl(59, 100%, 50%);
    border-radius: 2px;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
height: 70px;
   
    padding: 5px;
    border-radius: 9px;
        position: relative;
        top: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-item {
  text-decoration: none;
  color: #250934;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-item.active {
  color: #000;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color:#D35639;
  border-radius: 2px;
}

.sticky-menu-bar {
position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 999;
  width: 440px;
  max-width: calc(100vw - 32px); /* Mobile responsive safety */
  background: linear-gradient(135deg, #3200a8 0%, #4c00be 50%, #6800d7 100%);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 12px 35px rgba(13, 6, 48, 0.3);
  overflow: hidden;
  isolation: isolate;

  /* 🎯 Logo ko Dead-Center karne ke liye 3-Column Grid */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}



/* ROTATING BORDER */
.sticky-menu-bar .vibe-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
/* 1. Left Side: Menu Button */
.sticky-menu-bar .menu-btn {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
}

/* 2. Dead Center: Brand Logo */
.sticky-menu-bar .brand-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sticky-menu-bar .menu-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* 3. Right Side: Connect Button */
.sticky-menu-bar .connect-btn {
  justify-self: end;
  white-space: nowrap;
  text-decoration: none;
  z-index: 2;
}
/* ROTATING LIGHT */
.sticky-menu-bar .vibe-glow::before {
    content: "";
    position: absolute;

    width: 200%;
    height: 200%;

    left: -50%;
    top: -50%;

    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 210deg,

        rgba(70, 160, 255, 0.05) 225deg,
        rgba(70, 160, 255, 0.35) 250deg,
        rgba(150, 220, 255, 0.95) 275deg,
        rgba(255, 255, 255, 1) 295deg,
        rgba(70, 160, 255, 0.45) 320deg,

        transparent 345deg,
        transparent 360deg
    );

    animation: stickyBorderRotate 4.5s linear infinite;

    filter: blur(2px);
}


/* DARK INNER COVER
   Creates border-only appearance */
.sticky-menu-bar .vibe-glow::after {
    content: "";

    position: absolute;
    inset: 3px;

    border-radius: inherit;

 background: linear-gradient(135deg, #3200a8 0%, #4c00be 50%, #6800d7 100%);
}


/* ROTATION */
@keyframes stickyBorderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* KEEP CONTENT ABOVE GLOW */
.sticky-menu-bar > * {
    position: relative;
    z-index: 2;
}

.menu-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.brand-logo .sub-logo {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 400;
}

.connect-btn {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;

  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* FLOATING LOGO BASE SETUP */
#floating-logo-container {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  pointer-events: none;
  
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

#rotating-logo {
  width: 600px;
  height: 600px;
  object-fit: contain;
}

/* SECTION 2 TARGET SPOT */
#logo-target-spot {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  pointer-events: none;
}
/* 3. HERO SECTION */
.hero-section {
  min-height: 100vh;
  padding:0px 0px 40px 0px;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-container {

  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-card-container {
  width:400px;
  background-size: 100% 100%;
  /* padding: 40px; */
  margin-left:70px;

 
}

.card-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
  font-weight:200;
  color: #D30100;
  display: block;
  margin-bottom: 4px;
  text-transform:inherit  ;
}



.card-description {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 0px 0;
}

.card-btn {
  background: linear-gradient(135deg, #7c12ff 0%, #4f00e9 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(92, 0, 235, 0.3);
  transition: transform 0.2s ease;
      margin-left: 13px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(108, 0, 245, 0.45);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
}

.carousel-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 22px;
}

.dot-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.dot-wrapper.active {
  border-color: #D30100;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #9aa5b9;
  background: transparent;
  box-sizing: border-box;
}

.dot-wrapper.active .dot {
  background: #D30100;
  border: none;
  width: 12px;
  height: 12px;
}

.graph-image {
  width: 110px;
  height: auto;
  object-fit: contain;
  position: absolute;
  right: 27px;
  bottom: 0px;
}

.main-title {
display: flex;
  flex-direction: column; /* Line to Line alignment */
  align-items: flex-start; /* Left align */
  margin: 0;
  padding: 0;
      font-size: 65px;
    line-height: 1.05;
    color: rgb(0, 0, 0);
    text-align: left;
    font-weight: 700;
}
.title-line {
  display: block;
  width: 100%;
}
.badge-container {

  margin-left:60px

}
.google-box{
  
  margin-top: 60px;
  margin-left: 10px;;
}
.google-badge {
  width: 150px;
      z-index: 1;
    position: relative;
}

.ai-assistant-wrapper {
  position: fixed;
  right: 25px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  padding-right: 110px;
  pointer-events: auto;
  bottom: 10px;
}

.speech-bubble {
  position: relative;
  background: #ffffff;
  padding: 12px 24px 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  border: 1px solid rgba(220, 225, 235, 0.9);
}.speech-bubble {
  display: inline-block;
  animation: floatBubble 3s ease-in-out infinite;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px); /* Upar-neche floating ke liye */
  }
}

.speech-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-top: 1px solid rgba(220, 225, 235, 0.9);
  border-right: 1px solid rgba(220, 225, 235, 0.9);
  border-radius: 2px;
}

.mira-title {
display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #6366f1; /* Cursor line */
  width: 0;
  animation: 
    typeTitle 1.5s steps(18) forwards,
    removeCursor 0.1s 1.6s forwards;
}

.mira-sub {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #6366f1;
  width: 0;
  opacity: 0;
  animation: 
    typeSub 2s steps(26) 1.7s forwards,
    blinkCursor 0.75s step-end infinite 1.7s;
}

/* TYPING KEYFRAMES */
@keyframes typeTitle {
  to { width: 100%; }
}

@keyframes typeSub {
  to { 
    width: 100%; 
    opacity: 1; 
  }
}

@keyframes removeCursor {
  to { border-right-color: transparent; }
}

@keyframes blinkCursor {
  50% { border-right-color: transparent; }
}

.mira-character-img {
   position: absolute;
    right: -8px;
    bottom: 9px;
    height: 80px;
    width: 80px;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* 4. CHALLENGES SECTION */
.challenges-section {
  min-height: 100vh;
  padding: 100px 40px;
  background-image: url('../images/challenges-section.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.challenges-section .section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
}

.challenges-section .section-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.challenges-section .highlight-purple {
 font-family: 'Poppins', sans-serif;
  background: #6101BF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .highlight-purple {
  font-family: 'Oswald', sans-serif;
  background: #6101BF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.highlight-purple {
  font-family: 'Oswald', sans-serif;
  background: #6101BF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.challenges-section .section-title p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  line-height: 1.6;
}

.challenges-section .challenges-grid {
  display: grid;
  grid-template-columns: 2fr 640px 2fr;
  grid-template-rows: auto auto;
  gap: 40px 10px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.challenges-section .center-target-space {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}


.challenges-section .challenge-card {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.challenges-section .top-left { grid-column: 1; grid-row: 1; justify-content: flex-end; text-align: left; }
.challenges-section .bottom-left { grid-column: 1; grid-row: 2; justify-content: flex-end; text-align: left; }
.challenges-section .top-right { grid-column: 3; grid-row: 1; justify-content: flex-start; text-align: left; }
.challenges-section .bottom-right { grid-column: 3; grid-row: 2; justify-content: flex-start; text-align: left; }

.challenges-section .card-text {
  max-width: 280px;
}

.challenges-section .challenge-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.challenges-section .challenge-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}

.challenges-section .connector-line {
  position: absolute;
  width: 110px;
  height: 55px;
  pointer-events: none;
}

.challenges-section .line-top-left { right: -100px; top: 10px; }
.challenges-section .line-top-right { left: -136px; top: 10px; }
.challenges-section .line-bottom-left { right: -100px; bottom: 10px; }
.challenges-section .line-bottom-right { left: -136px; bottom: 10px; }

/* 5. PRODUCTS SECTION */
.products-section {
 position: relative;
  width: 100%;
  height: 100vh; /* Whole screen pinned */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  box-sizing: border-box;
  background-image: url(../images/products.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.product-header {
position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.product-header .sub-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-header .main-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-header .description {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}

.product-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
}

.product-tabs .tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 1 !important;
  transition: transform 0.3s ease;
  flex-shrink: 0 !important;
  width: 110px;
}

.product-tabs .icon-box {
  width: 110px ;
  height: 110px ;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  overflow: hidden;
}

.product-tabs .icon-box img {
  width: 90px;
  height: 90px;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  flex-shrink: 0 !important;
}

.product-tabs .tab-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #cbd5e1;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.product-tabs .tab-item:hover {
  transform: translateY(-4px);
}

.product-tabs .tab-item.active .icon-box {
  border: 3px solid #ffffff !important;
  background: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.product-tabs .tab-item.active span {
  color: #ffffff !important;
  font-weight: 600;
}

.product-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  position: relative;
}

.product-slider-wrapper .owl-carousel .owl-stage-outer {
  padding: 40px 0;
  overflow: hidden !important;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.88);

}

.owl-carousel .owl-item .product-card {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 40px 45px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  filter: brightness(0.6);
}

.owl-carousel .owl-item .product-card .card-content {
  opacity: 0.3;
}

.owl-carousel .owl-item.active.center {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

.owl-carousel .owl-item.active.center .product-card {
  background: #ffffff !important;
  border: none;
  filter: brightness(1) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.25);
}

.owl-carousel .owl-item.active.center .product-card .card-content {
  opacity: 1;
}

.product-card .card-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card .card-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

.product-card .card-content {
  flex: 1.2;
}

.product-card .pill-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  background: #e0e7ff;
  color: #4f46e5;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

.product-card .btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
  transition: all 0.3s ease;
}

.product-card .btn-know-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.6);
}

.bottom-features-grid {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bottom-features-grid .feature-item {
  display: flex;
align-items: center;
  gap: 16px;
  position: relative;
}

.bottom-features-grid .feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
}

.bottom-features-grid .feature-icon {

  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon  img{
  width:50px;
} 
.bottom-features-grid .feature-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

.bottom-features-grid .feature-info p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

/* 6. WHY CHOOSE SECTION & TIMELINE */
.why-choose-section {
  position: relative;
  width: 100%;
  padding: 100px 20px 0px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-header .highlight-purple {
  font-family: 'Oswald', sans-serif;
  background: #6101BF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-container .center-line-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(226, 232, 240, 0.8);
  transform: translateX(-50%);
}

.timeline-container .center-line-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 100%);
  transform: translateX(-50%);
  transform-origin: top;
  scale: 1 0;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  position: relative;
  width: 100%;
  opacity: 0.15;
  filter: blur(2px);
  transform: translateY(30px);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.timeline-row.active-step {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateY(0) !important;
}

.timeline-row .content-side,
.timeline-row .image-side {
  width: 42%;
  box-sizing: border-box;
}

.timeline-row.left-text .content-side {
  text-align: right;
}

.timeline-row.right-text .content-side {
  text-align: left;
}

.timeline-row .content-side h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.timeline-row .content-side p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  line-height: 1.6;
  max-width: 380px;
}

.timeline-row.left-text .content-side p {
  margin-left: auto;
}

.timeline-row.right-text .content-side p {
  margin-right: auto;
}

.timeline-row .image-side {
  display: flex;
}

.timeline-row.left-text .image-side {
  justify-content: flex-start;
}

.timeline-row.right-text .image-side {
  justify-content: flex-end;
}

.icon-card {
  width: 150px;
  height: 150px;
  background: #ffffff;
  border-radius: 30px; /* Thoda rounded corner soft look ke liye */
  display: flex;
  justify-content: center;
  align-items: center;

  /* SOFT 3D CLAYMORPHIC SHADOWS & BORDER */
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 
    /* Outer Ambient Soft Shadow */
    0 15px 35px -5px rgba(0, 0, 0, 0.05),
    0 5px 15px -3px rgba(0, 0, 0, 0.02),
    /* Inner Top Light Highlight (Upar ki taraf se light highlight) */
    inset 0 4px 6px rgba(255, 255, 255, 1),
    /* Inner Bottom Soft Shade (Niche halki shadow 3D Depth ke liye) */
    inset 0 -4px 6px rgba(0, 0, 0, 0.03),
    /* Soft Bevel Ring */
    0 0 0 1px rgba(226, 232, 240, 0.6);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect (Optional) */
.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 22px 40px -5px rgba(99, 102, 241, 0.15),
    0 8px 18px -3px rgba(0, 0, 0, 0.03),
    inset 0 4px 6px rgba(255, 255, 255, 1),
    inset 0 -4px 6px rgba(0, 0, 0, 0.03),
    0 0 0 1.5px #6366f1;
}

.timeline-row.active-step .icon-card {
  transform: scale(1.05);


}

.icon-card img {
width: 100%;
    /* height: 90px; */
    /* object-fit: contain; */
    padding: 13px;
}

.node-point {
  position: absolute;
  left: 50%;
  
  width: 14px;
  height: 14px;
  background: #cbd5e1;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-row.active-step .node-point {
  background: #6366f1;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.25);
  transform: translateX(-50%) scale(1.2);
}


.timeline {
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 520px;
  z-index: 10;
}

.timeline .line {
  position: absolute;
  left: 72px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,.15);
}

.point {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  transition: .45s;
}

.point:nth-child(2) { top: 20px; }
.point:nth-child(3) { top: 230px; }
.point:nth-child(4) { top: 440px; }

.point span {
  font-size: 22px;
  color: rgba(255,255,255,.35);
  transition: .45s;
}

.point i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  background: #051326;
  transition: .45s;
}

.point.active span { color: #fff; }
.point.active i {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 0 25px rgba(0,180,255,.7);
}
/* Jab active class lage */
.menu-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Menu button ko clickable banane ke liye */
.open-menu-btn,
.sticky-menu-bar .menu-btn {
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 99999 !important;
}
.hero-card-container .owl-carousel .owl-stage-outer {
    padding:0px 0px !important;
    overflow: hidden !important;
}

/* OVERLAY CONTAINER */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 5, 24, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999 !important; /* Header aur baki sabhi elements ke upar */
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* POPUP MAIN CARD */
.menu-popup-card {
  width: 580px;
  background: linear-gradient(90deg, #4500a0 0%, #2a006c 50%, #12003c 100%);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  perspective: 1000px;

}

/* LEFT MENU LINKS */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
}

.menu-link-btn {
  background: #fff; /* Neon Green Tone */
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  display: block;
  transition: transform 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.menu-link-btn:hover {
  transform: scale(1.04);
  background: #fff;
}

/* RIGHT QR CODE CONTAINER */
.menu-qr-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  will-change: transform, opacity;
}

.qr-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.qr-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #121212;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qr-text .dot {
  width: 6px;
  height: 6px;
  background: #5c27fe;
  border-radius: 50%;
}

/* BOTTOM CLOSE CONTROL BAR */
.overlay-close-bar {
  position: absolute;
  bottom: 20px;
    width: auto;
  background:transparent;
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
    border: none;
}

.close-icon {
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
}

 /* MAIN SECTION */
    .trusted-section {
      position: relative;
      width: 100%;
      height: 100vh;
   background-image: url(../images/features.webp);
      overflow: hidden;
      
      background-size: cover;
    }

    .glow-purple {
      position: absolute;
      top: -100px;
      left: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
    }

    .glow-red {
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(220, 20, 60, 0.25) 0%, transparent 70%);
      filter: blur(90px);
      pointer-events: none;
    }

    .trusted-container {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 70px 20px 90px 20px;

      z-index: 5;
    }
.trusted-container .text-center{
  text-align: center;
}
    .trusted-title {
      font-family: 'Oswald', sans-serif;
      font-size: 68px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.05;
      margin-bottom: 25px;
      background: linear-gradient(180deg, #ffffff 0%, #d8e2fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .trusted-desc {
      font-size: 16px;
      color: #cbd5e1;
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.65;
      padding-bottom: 60px;
    }

    /* CENTER FIXED DISPLAY AREA */
    .stats-pinned-area {
      position: relative;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 280px;
    }

    .stats-display-box {
      position: relative;
      width: 450px;
      height: 200px;
    }

    .stat-card {
      position: absolute;
    top: 0px;
      left: 0;
      width: 100%;
      text-align: center;
      opacity: 0;
      transform: translateY(80px);
      filter: blur(8px);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* CENTER ACTIVE POSITION (FIXED SPOT FOR ALL NUMBERS) */
    .stat-card.active {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    /* UPWARD EXIT SLIDE */
    .stat-card.exit-up {
      opacity: 0;
      transform: translateY(-80px);
      filter: blur(8px);
    }

    .stat-label {
      font-size: 26px;
      color: #cbd5e1;
      display: block;
      margin-bottom: 10px;
    }

    .stat-label b {
      color: #ffffff;
    }

    .stat-number {
      font-family: 'Oswald', sans-serif;
      font-size: 110px;
      font-weight: 700;
      line-height: 1;
      color: #ffffff;
      text-shadow: 0 0 35px rgba(0, 162, 255, 0.4);
    }

    /* PERFECT CENTER ROTATION DIAL WHEEL */
    .volume-dial-wrapper {
      position: absolute;
  right: -360px;
  top: 50%;
  width: 700px;
  height: 700px;
  margin-top: -350px;
  z-index: 10;
  pointer-events: none;
    }

    .dial-circle-svg {
      width: 100%;
      height: 100%;
    }

    .dial-notch {
      position: absolute;
  left: -10px;
  top: 350px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
    }

    .dial-notch.active {
      opacity: 1;
    }

.dial-notch .num {
font-size: 20px;
  color: #ffffff;
  font-weight: 600;

}

    .dial-notch .dot {
    width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #030112;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15), 0 0 18px rgba(0, 180, 255, 0.9);
  display: block;
    }

    @media (max-width: 992px) {
      .trusted-title { font-size: 42px; }
      .stat-number { font-size: 70px; }
      .stats-pinned-area { padding-right: 0; justify-content: center; }
      .volume-dial-wrapper { display: none; }
    }

/* ABOUT US SECTION */
.about-section {
  padding: 70px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.about-content {
  max-width: 580px;
}

.about-content .sub-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #64748b;
  text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.about-content .main-title {
  font-family: 'Oswald', sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.purple-gradient-text {
  background: #6101BF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-content .description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #334155;
  line-height: 1.65;
  margin-bottom:0px;
}

/* START GROWING BUTTON */
.btn-start-growing {
  background: linear-gradient(135deg, #2b0080 0%, #5c27fe 100%);
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(92, 39, 254, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-start-growing:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(92, 39, 254, 0.5);
  color: #ffffff;
}

.btn-start-growing .arrow-icon {
  width: 20px;
  height: 20px;
}

/* RIGHT VISUAL GRAPHIC */
.about-visual-wrapper {
  position: relative;
  display: inline-block;
}

.about-graphic-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}



/* CATEGORIES WE SERVE SECTION */
.categories-section {
  padding: 70px 0;
  background-color: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  border-top: solid 1px #ccc;
}

.categories-section .section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.categories-section .section-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  color: #0f172a;
  margin-bottom: 16px;
  
}

.categories-section .section-description {
  font-size: 16px;
  color: #475569;
  max-width: 760px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

/* INFINITE MARQUEE SLIDER */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  /* Left aur Right edges par soft gradient fade effect */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeLoop 25s linear infinite;
  will-change: transform;
}

/* Hover karne par scroll ruk jayega */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* CATEGORY PILL DESIGN */
.category-pill {
  background-color: #f5f3ff; /* Light Lavender Tint */
  color: #838383;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  white-space: nowrap;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-pill:hover {
  background-color: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);

}

/* SMOOTH LOOP ANIMATION KEYFRAMES */
@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Seamless Loop Shift */
  }
}



/* FAQ SECTION STYLING */
.faq-section {
  padding:70px 0;
  border-top: solid 1px #ccc;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #121212;
}

/* Left Title Styling */
.faq-main-title {
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.faq-sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}

/* Accordion Wrapper & Items */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.faq-item:first-child {
  padding-top: 0;
}

/* Header & Question */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-header:hover .faq-question {
  color: #5c27fe;
}

/* Toggle Icon Button (+ / -) */
.faq-toggle-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.faq-toggle-btn .icon {
  font-size: 18px;
  font-weight: 400;
  color: #475569;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Accordion Body & Answer Animation */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.65;
  margin: 16px 0 0 0;
}

/* ACTIVE ACCORDION ITEM STATE */
.faq-item.active .faq-question {
  color: #0f172a;
}

.faq-item.active .faq-toggle-btn {
  border-color: #94a3b8;
  background-color: #f8fafc;
}

.faq-item.active .faq-toggle-btn .icon {
  transform: rotate(45deg); /* Plus + rotate ho kar Cross/Minus jaisa ban jayega */
  color: #0f172a;
}



/* FOOTER SECTION STYLING */
.footer-section {
  position: relative;
  background:url(../images/footer.webp);
  padding: 70px 0 30px 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.z-index-2 {
  z-index: 2;
}
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-logo-img {
    width: 96px;
    object-fit: contain;
    padding-top: 5px;
}
/* Background Glows */
.footer-glow-red {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.footer-glow-purple {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 39, 254, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Brand & Description */
.footer-logo {
 width:220px;
  object-fit: contain;
}

.footer-title {
font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.footer-desc {
  font-size: 15px;
  font-weight: 300;
  color: #a0aec0;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 30px;
}

/* Contact Blocks */
.contact-block-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info .label {
  font-size: 12px;
  color: #a0aec0;
  font-weight: 400;
}

.contact-info .value {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .value:hover {
  color: #7c12ff;
}

/* Column Divider Lines */
.border-left-column {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* Nav Headings & Lists */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav-list a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav-list a .arrow {
  font-size: 18px;
  color: #7c12ff;
  transition: transform 0.3s ease;
}

.footer-nav-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-nav-list a:hover .arrow {
  transform: translateX(4px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.social-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: #7c12ff;
  border-color: #7c12ff;
  color: #ffffff;
  transform: translateY(-3px);
}

.copyright-text {
  font-size: 13px;
  color: #94a3b8;
}



.contact-details img{
  width: 10px;
}

/* STICKY MENU BAR SMOOTH TRANSITION */
.sticky-menu-bar {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

/* FOOTER PAR AATE HI HIDE HONE KI CLASS */
.sticky-menu-bar.hide-menu {
  transform: translate(-50%, 120px) !important; /* Screen ke niche slide ho kar hide ho jayega */
  opacity: 0 !important;
  pointer-events: none !important;
}
/* CUSTOM CURSOR STYLING */

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #D30100;
    width: 29px;
}

html {
  scroll-behavior: smooth !important;
}

/* Active Link State */
.nav-link.active {
  color: #ffc700 !important; /* Active Color Highlight */
  font-weight: 700 !important;
  border-bottom: 2px solid #ffc700; /* Optional Active Underline */
}

/* Custom CSS Property for Angle Animation */
@property --retool-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}



/* OVERLAY BACKDROP WITH BLUR */
.pia-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/pia-overlay.png);
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.pia-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* MAIN MODAL CONTAINER */
.pia-modal-card {
  position: relative;
  width: 1050px;
  max-width: 92%;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.pia-close-btn {
  position: absolute;
  top: -35px;
  right: 0;
  background: none;
  border: none;
  color: #8a8aa0;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}
.pia-close-btn:hover { color: #fff; }

/* 2-COLUMN LAYOUT */
.pia-modal-body {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

/* LEFT COLUMN (Character & Badge) */
.pia-left-col {
  position: relative;
  width: 420px;
  flex-shrink: 0;
}

.pia-char-img {
    width: 800px;
    height: auto;
    display: block;
        position: relative;
    left: -181px;
    bottom: -55px;

   
}

/* Pia Badge at bottom left */
.pia-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, #4f10cd 0%, #290875 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.pia-badge .badge-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pia-badge .badge-sub {
  font-size: 11px;
  color: #b3a2fb;
}

/* RIGHT COLUMN */
.pia-right-col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(13, 16, 38, 0.9);
  padding: 20px;
  border-radius: 10px;
      z-index: 99;
}

/* CHAT CARD CONTAINER */
.pia-chat-card {
  background: rgba(13, 16, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

}

.chat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.user-status {
  font-size: 12px;
  color: #8c8ca1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
}

.three-dots {
  color: #6b6b80;
  letter-spacing: 2px;
  font-size: 16px;
  cursor: pointer;
}

/* INNER CHAT BUBBLE */
.chat-message-bubble {
  position: relative;
  background: rgba(22, 26, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px 20px;
}

.chat-message-bubble p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.chat-message-bubble p b { color: #fff; }

.chat-time {
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-size: 11px;
  color: #525266;
}

/* OPTIONS GRID */
.pia-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pia-opt-btn {
  background: rgba(13, 16, 38, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pia-opt-btn:hover {
  background: rgba(79, 70, 229, 0.2);
  border-color: rgba(129, 140, 248, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.pia-opt-btn .arrow {
  font-size: 18px;
  color: #818cf8;
}

.pia-opt-btn.full-width {
  grid-column: span 2;
}

.top-bottom-spacer {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #080321;
    }

    .top-bottom-spacer h2 {
      font-family: 'Oswald', sans-serif;
      color: #9d4edd;
      font-size: 28px;
    }
/* PIA DYNAMIC STEPS CONTROL */
.pia-step {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.3s ease;
}

.pia-step.active-step {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* INPUT BOX & NEXT BUTTON STYLING */
.pia-input-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.pia-input {
  width: 100%;
  background: rgba(13, 16, 38, 0.7);
  border: 1px solid rgba(79, 70, 229, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pia-input::placeholder {
  color: #8c8ca1;
}

.pia-input:focus {
  border-color: #818cf8;
  box-shadow: 0 0 15px rgba(129, 140, 248, 0.3);
}

.pia-next-btn {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.pia-next-btn:hover {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.5);
}
.ai-chat{
  cursor: pointer;
}
.pia-success-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  color: #10b981;
}

.pia-success-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pia-success-box p {
  color: #cbd5e1;
  font-size: 14px;
}


    /* BACKGROUND NEON GLOWS */
    .glow-overlay-purple {
      position: absolute;
      top: -140px;
      left: -140px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(138, 43, 226, 0.35) 0%, transparent 70%);
      filter: blur(100px);
      pointer-events: none;
    }

    .glow-overlay-magenta {
      position: absolute;
      bottom: -140px;
      right: -80px;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(225, 29, 72, 0.3) 0%, transparent 70%);
      filter: blur(120px);
      pointer-events: none;
    }

    /* GLOBE IMAGE (BOTTOM LEFT) */
    .globe-network-bg { 
      position: absolute;
      left: -110px;
      bottom: -70px;
      width: 600px;
      height: auto;
      z-index: 1;
      pointer-events: none;
      opacity: 0.88;
    }

    /* HEADER BLOCK */
    .trusted-publisher-header {
      position: relative;
      z-index: 5;
      text-align: center;
      max-width: 850px;
      margin: 0 auto;
    }

    .trusted-publisher-header h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 64px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .trusted-publisher-header p {
      font-size: 16px;
      color: #cbd5e1;
      line-height: 1.65;
    }

    /* MAIN DISPLAY AREA */
    .wheel-interactive-stage {
      position: relative;
      flex: 1;
      width: 100%;
      z-index: 5;
    }

    /* CENTER-RIGHT FIXED HEADINGS SPOT */
    .stat-content-box {
      position: absolute;
      right: 330px;
      top: 38%;
      transform: translateY(-50%);
      width: 420px;
      height: 160px;
      text-align: right;
    }

    .stat-slide {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(40px);
      filter: blur(6px);
      pointer-events: none;
    }

    .stat-slide.active-slide {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0px);
      pointer-events: auto;
    }

    .stat-label-text {
      font-size: 20px;
      color: #94a3b8;
      display: block;
      margin-bottom: 4px;
      font-weight: 400;
    }

    .stat-label-text b {
      color: #ffffff;
      font-weight: 600;
    }

    .stat-value-heading {
      font-family: 'Oswald', sans-serif;
      font-size: 82px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
      margin: 0;
    }

    /* ROTATING WHEEL ARC */
    .dial-wheel-arc {
      position: absolute;
      right: -300px;
      top: 50%;
      width: 760px;
      height: 760px;
      margin-top: -380px;
      z-index: 10;
      pointer-events: none;
      transform-origin: center center;
    }

    .dial-svg-circle {
      width: 100%;
      height: 100%;
    }

    /* WHEEL NOTCH POINTS */
    .wheel-notch {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 12px;
      transform: translateY(-50%);
      opacity: 0.35;
      transition: opacity 0.4s ease;
    }

    .wheel-notch.active-notch {
      opacity: 1;
    }

    /* STRAIGHT TEXT (COUNTER-ROTATED BY GSAP) */
    .wheel-notch .notch-num {
      font-size: 22px;
      color: #ffffff;
      font-weight: 600;
      display: inline-block;
      transform-origin: center center;
      will-change: transform;
    }

    .wheel-notch .notch-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #ffffff;
      background: #030112;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
      display: block;
      flex-shrink: 0;
    }

    .wheel-notch.active-notch .notch-dot {
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), 0 0 20px #ffffff;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .trusted-publisher-header h2 { font-size: 40px; }
      .globe-network-bg { width: 350px; }
      .dial-wheel-arc { display: none; }
      .stat-content-box { position: relative; right: auto; top: auto; transform: none; width: 100%; text-align: center; }
      .stat-slide { position: relative; opacity: 1; filter: none; transform: none; margin-bottom: 20px; }
    }


/* Background Glows */
.glow-overlay-purple {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.35) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.glow-overlay-magenta {
  position: absolute;
  bottom: -140px;
  right: -80px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.3) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

/* Globe Graphic Left */
.globe-network-bg {
  position: absolute;
  left: -110px;
  bottom: -70px;
  width: 600px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
}

/* Header */
.trusted-publisher-header {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.trusted-publisher-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.trusted-publisher-header p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.65;
}

/* Interactive Stage */
.wheel-interactive-stage {
  position: relative;
  flex: 1;
  width: 100%;
  z-index: 5;
}

/* Headings Box */
.stat-content-box {
  position: absolute;
  right: 330px;
  top: 38%;
  transform: translateY(-50%);
  width: 420px;
  height: 160px;
  text-align: right;
}

.stat-slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  pointer-events: none;
}

.stat-slide.active-slide {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  pointer-events: auto;
}

.stat-label-text {
  font-size: 20px;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
}

.stat-label-text b {
  color: #ffffff;
  font-weight: 600;
}

.stat-value-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 82px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

/* Rotating Wheel Arc */
.dial-wheel-arc {
  position: absolute;
  right: -300px;
  top: 50%;
  width: 760px;
  height: 760px;
  margin-top: -380px;
  z-index: 10;
  pointer-events: none;
  transform-origin: center center;
}

.dial-svg-circle {
  width: 100%;
  height: 100%;
}

.wheel-notch {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.wheel-notch.active-notch {
  opacity: 1;
}

.wheel-notch .notch-num {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  transform-origin: center center;
  will-change: transform;
}



/* =========================================================
   TRUSTED BY PUBLISHERS
========================================================= */

.trusted-publishers-section {
 position: relative;
  width: 100%;
  height: auto;
  background: #03030d;
}


/* =========================================
   PIN AREA
========================================= */

.tp-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(90, 30, 255, .30),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 55%,
      rgba(255, 0, 80, .22),
      transparent 38%
    ),
    #03030d;
}

/* =========================================
   BACKGROUND
========================================= */

.tp-bg {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(100, 30, 255, .20),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(255, 0, 100, .16),
      transparent 32%
    );

  pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.tp-header {
  position: absolute;

  z-index: 10;

  top: 7%;

  left: 50%;

  width: min(1000px, 90%);

  transform: translateX(-50%);

  text-align: center;
}

.tp-header h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 78px);

  font-weight: 800;

  line-height: .95;

  letter-spacing: -3px;
}

.tp-header p {
  max-width: 850px;

  margin: 30px auto 0;

  color: rgba(255,255,255,.82);

  font-size: clamp(15px, 1.3vw, 21px);

  line-height: 1.6;
}


/* =========================================
   WHEEL
========================================= */

.tp-wheel-wrap {
  position: absolute;

  z-index: 5;

  width: 900px;
  height: 900px;

  right: -31%;

  top: 50%;

  transform: translateY(-50%);

  pointer-events: none;
}


/*
  IMPORTANT:
  ONLY .tp-wheel rotates.
*/

.tp-wheel {
  position: relative;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.65);

  transform-origin: center center;

  will-change: transform;
}


/* =========================================
   WHEEL LINES
========================================= */

.tp-wheel-line {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);
}


.tp-wheel-inner {
  position: absolute;

  inset: 14%;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);
}


/* =========================================
   NUMBERS
========================================= */

.tp-wheel-point {
  position: absolute;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #050510;

  border: 2px solid rgba(255,255,255,.85);

  color: #fff;

  font-size: 13px;

  z-index: 20;
}


/*
  These remain CHILDREN of wheel.
  Therefore they rotate with wheel.
*/

.tp-point-01 {
  left: 1%;
  top: 31%;
}

.tp-point-02 {
  left: 4%;
  top: 51%;
}

.tp-point-03 {
  left: 14%;
  top: 71%;
}


/* =========================================
   STATS
========================================= */

.tp-stats {
  position: absolute;

  z-index: 20;

  left: 52%;

  top: 53%;

  width: 450px;

  transform: translateY(-50%);
}


.tp-stat {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;

  opacity: 0;

  visibility: hidden;
}


.tp-stat.active {
  opacity: 1;

  visibility: visible;
}


.tp-stat-title {
  margin-bottom: 10px;

  color: rgba(255,255,255,.55);

  font-size: 22px;
}

.tp-stat-title strong {
  color: #fff;
}


.tp-stat-number {
  color: #fff;

  font-size: clamp(72px, 7vw, 115px);

  line-height: .9;

  font-weight: 800;

  letter-spacing: -5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .trusted-publishers-section {
    height: 320vh;
  }

  .tp-header {
    top: 6%;
  }

  .tp-header h2 {
    font-size: 38px;

    letter-spacing: -1px;
  }

  .tp-header p {
    margin-top: 18px;

    font-size: 13px;
  }

  .tp-wheel-wrap {
    width: 650px;
    height: 650px;

    right: -65%;

    top: 64%;
  }

  .tp-stats {
    left: 7%;

    top: 48%;

    width: 280px;
  }

  .tp-stat-title {
    font-size: 16px;
  }

  .tp-stat-number {
    font-size: 64px;

    letter-spacing: -3px;
  }

}

.hide-menu{
    display: none;
  }

  /* Product Stacked Cards Wrapper */
.product-stack-wrapper {
position: relative;
  width: 100%;
  max-width: 1000px;
  height: 480px; /* Fixed Height for Cards Stack */
  margin: 0 auto;
}

/* Individual Sticky Card */
.product-stack-card {
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 40px;
  box-sizing: border-box;
  transform-origin: center top; /* Top se scaling lock rahegi */
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  will-change: transform, opacity;
}

/* Folder Tab Staggered Offsets & Unique Gradients */
.product-stack-card.card-lite {
  top: 90px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.product-stack-card.card-gamez {
  top: 130px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.product-stack-card.card-quizzupp {
  top: 170px;
  background: linear-gradient(135deg, #2e1065 0%, #3b0764 100%);
}

.product-stack-card.card-predchamp {
  top: 210px;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
}

.product-stack-card.card-mgl {
  top: 250px;
  background: linear-gradient(135deg, #172554 0%, #1e40af 100%);
}

/* Top Tab Badge */
.stack-card-header {
display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.stack-card-header .badge-num {
background: #fff;
  color: #000;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
}

/* Card Content & Image Layout */
.product-card-inner {
 display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.product-card-inner .card-content {
  flex: 1;
}

.product-card-inner .card-image {
 flex: 0 0 280px;
}

.product-card-inner .card-image img {
max-width: 100%; height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-stack-card {
    top: 80px !important;
    padding: 25px 20px;
  }

  .product-card-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .product-card-inner .card-image {
    flex: 0 0 auto;
    max-width: 220px;
    margin: 0 auto 15px;
  }
}


/* Main Section Container (Background Image Support Included) */
.products-stack-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 50px;
  /* Background Image ke liye niche wali line uncomment kar lena */
  background: url('../images/products.png') center/cover no-repeat fixed;
 
  color: #ffffff;
  overflow: visible !important;
  box-sizing: border-box;
}

.products-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.products-sub-tag {
  font-size:16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.products-title {
    font-family: 'Oswald', sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.products-desc {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    margin-bottom:5rem;
}

/* Stack Wrapper with 3D Perspective */
.cards-stack-wrapper {
position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Individual Card Styling */
.product-card-item {
 position: sticky;
  top: 100px;
  width: 100%;
  background: #ffffff !important;
  border-radius: 36px;
  padding: 50px 60px;
  box-sizing: border-box;
  transform-origin: top center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.product-card-item:nth-child(1) { top: 90px;  z-index: 1; }
.product-card-item:nth-child(2) { top: 130px; z-index: 2; }
.product-card-item:nth-child(3) { top: 170px; z-index: 3; }
.product-card-item:nth-child(4) { top: 210px; z-index: 4; }

/* Individual Card Themes */
.card-bg-1 { background: linear-gradient(135deg, #13112c 0%, #252352 100%); }
.card-bg-2 { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.card-bg-3 { background: linear-gradient(135deg, #2e1065 0%, #3b0764 100%); }
.card-bg-4 { background: linear-gradient(135deg, #022c22 0%, #064e3b 100%); }
.card-bg-5 { background: linear-gradient(135deg, #172554 0%, #1e40af 100%); }rd-bg-5 { background: linear-gradient(135deg, #172554 0%, #1e40af 100%); }

/* Card Top Badge */
.card-badge {
position: absolute;
  top: 35px;
  right: 45px;
  width: 60px;
  height: 60px;
}
.card-brand-badge{
 position: absolute;
    left: 27px;
    top: 25px;
    width: auto;
}   

.qureka-logo{
  width: 70px;
}
.badge-index {
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 12px;
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Card Content Layout */
.card-inner-grid {
display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-direction: row; /* Normal flow (Left Image, Right Text) */
}

.card-info { flex: 1; }

.pill-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}




.card-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #000000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn-action:hover {
  background: #a855f7;
  color: #ffffff;
  transform: translateY(-2px);
}

.card-media {
 flex: 0 0 40%;
  text-align: center;
}


.product-card-item .card-media {
  flex: 0 0 42%;
  text-align: center;
}

.product-card-item .card-media img {
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Right Text Content */
.product-card-item .card-info {
  flex: 1;
      margin-top: 0px;
}

.product-card-item .card-title {
  font-size:30px;
  font-weight: 900;
  color: #050505;
      font-family: 'Poppins', sans-serif;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
      text-transform: capitalize;

}

.product-card-item .card-description {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
  text-transform: capitalize;
}

/* Checkmark Feature List */
.card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.card-feature-list .check-icon {
  color: #16a34a; /* Green checkmark */
  font-weight: 900;
  font-size: 20px;
}

/* Pill Action Button */
.product-card-item .card-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #1b004d 0%, #4a0099 100%); /* Deep Purple Gradient */
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(27, 0, 77, 0.25);
  transition: transform 0.3s ease;
}

.product-card-item .card-btn-action:hover {
  transform: translateY(-2px);
}

.product-card-item .btn-arrow {
  color: #facc15; /* Yellow Accent Arrow */
  font-size: 18px;
  font-weight: 900;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .product-card-item {
    padding: 30px 25px;
  }
  
  .card-inner-grid {
    flex-direction: column;
    text-align: left;
    gap: 25px;
  }

  .card-brand-badge {
       position: relative;
        top: 0px;
        right: 0px;
        height: 65px;
        z-index: 5;
      
  }
.product-card-item .card-info {
    flex: 1;
    margin-top: 20px;
}
  .product-card-item .card-title {
    font-size: 28px;
  }

  .card-feature-list li {
    font-size: 15px;
  }
}
.card-brand-badge img {

  height: 100%;
  object-fit: contain;
}

.gamez{
    width: 100px;
}
.predchamp{
      width: 70px;
}

.mgl{
      width: 70px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .product-card-item {
    padding: 30px 20px;
    top: 80px;
  }
  .card-inner-grid {
    flex-direction: column-reverse;
    text-align: center;
  }
  .card-media {
    flex: 0 0 auto;
    max-width: 220px;
  }
  .products-title {
    font-size: 28px;
  }

  
}



/* Center Vertical Grid Line */
/* .center-vertical-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #e2e8f0;
  pointer-events: none;
  z-index: 1;
} */

/* =========================================================
   FIXED TOP HEADER & CENTER LINE (Existing Classes Unchanged)
   ========================================================= */

/* Top Fixed Header */
.top-header-fixed {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
    border-bottom: none;
    margin-bottom:0px;
  padding:0px;
}

.hero-section .top-header-fixed {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
    border-bottom: none;
    margin-bottom: 80px;
  padding:0px;
}

/* Top Horizontal Border Line */


.header-inner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  top:0px;
    position: relative;
}


/* Top Right Contact Details */
.top-contact-details {
display: flex;
  align-items: center; /* Vertical Center Alignment */
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  position: relative;
    top: 6px;
}
.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #6101BF;
    line-height: 1.1;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.item .card-title {
      font-family: 'Poppins', sans-serif;
    font-size:34px;
    font-weight: 500;
    color: #6101BF;
    line-height: 1.1;
    margin:20px 26px 15px 0px;
   letter-spacing: -0.74px;
    text-transform: capitalize;
}
.top-contact-details span {
display: inline-flex;
  align-items: center; /* Span ke andar Icon aur Text ko center karega */
  gap: 8px;
  margin-right: 10px;
  line-height: 1; /* Extra line-height offset hatane ke liye */
}

.top-contact-details .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px; /* Icon container fixed height */
}

.top-contact-details .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block; /* Extra bottom gap hatane ke liye */
}



/* .hero-section::before {
content: '';
    position: absolute;
    top: -60px; 
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 60px); 
    background: #e2e8f0;
    pointer-events: none;
    z-index: 9; 
} */

/* Responsive Handling */
@media (max-width: 991px) {
  
  
  .top-contact-details {
    font-size: 11px;
    gap: 12px;
  }
}



/* =========================
CONTACT PAGE
========================= */

.coolboots-contact-page{
    padding: 0px 0 80px;
    background: #f7f7fb;
}
.career-page{
    padding: 30px 0 10px;
    background: #f7f7fb;
}
/* HERO */
.careers-section{
  background-color: #ffff;
  padding-top: 40px;

}
.coolboots-contact-hero{
       padding:100px 0px 77px 30px;
}

.coolboots-contact-tag{
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #222;
    display: inline-block;
    margin-bottom: 24px;
}

.coolboots-contact-left h1{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 26px;
}

.coolboots-contact-left p{
    font-size: 22px;
    line-height: 1.9;
    color: #555;
    max-width: 520px;
}

.coolboots-contact-image{
    text-align: right;
}

.coolboots-contact-image img{
    width: 100%;
    max-width: 560px;
}

/* CARD */

.coolboots-office-card,
.coolboots-contact-form-box{
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 38px 34px;
    height: 100%;
}

.coolboots-office-card h2,
.coolboots-contact-form-box h2{
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.coolboots-line{
    width: 60px;
    height: 3px;
    background: #3046E5;
    border-radius: 50px;
    margin-bottom: 30px;
}

/* LEFT INFO */

.coolboots-office-item{
   
    margin-bottom: 24px;
    border-bottom: 1px solid #ececf3;
}

.coolboots-office-item:last-child{
    border-bottom: 0;
}
.coolboots-office-title{
 display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.46px;
    color: #213DE3;
}

.coolboots-office-title img{
       width: 20px;
    height: auto;
}

/* CHECKBOX WRAPPER */

.coolboots-check{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  
}

/* CHECKBOX */

.coolboots-check input{
    width: 18px !important;
    height: 18px !important;
    margin: 0;
    cursor: pointer;
    accent-color: #3046E5;
    flex-shrink: 0;
}

/* LABEL */

.coolboots-check label{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    cursor: pointer;
}

/* LINK */

.coolboots-check label a{
    color: #3046E5;
    text-decoration: none;
    font-weight: 500;
}


.coolboots-office-item h5{
    font-size: 16px;
    font-weight: 600;
    color: #3046E5;
    margin-bottom: 16px;
}

.coolboots-office-item p{
font-size: 16px;
    color: #000;
}

.coolboots-map img{
    width: 100%;
    border-radius: 14px;
}

/* FORM */

.coolboots-form-subtitle{
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.coolboots-contact-form-box input,
.coolboots-contact-form-box textarea{
    width: 100%;
    border: 1px solid #e4e4ed;
    background: #f8f8fc;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 17px;
    outline: none;
    transition: .3s ease;
}

.coolboots-contact-form-box input:focus,
.coolboots-contact-form-box textarea:focus{
    border-color: #3046E5;
    background: #fff;
}

.coolboots-contact-form-box textarea{
    height: 240px;
    resize: none;
}

.coolboots-contact-form-box input::placeholder,
.coolboots-contact-form-box textarea::placeholder{
    color: #777;
}

.error-text{
    color: red;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

/* CHECK */


.coolboots-check label{
    font-size: 16px;
    color: #666;
}

.coolboots-check a{
    color: #3046E5;
    text-decoration: none;
}

/* BUTTON */

.coolboots-submit-btn{
    height: 62px;
    padding: 0 32px;
    border: 0;
    border-radius: 100px;
    background: #3046E5;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    transition: .3s ease;
}

.coolboots-submit-btn span{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #3046E5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-submit-btn:hover{
    transform: translateY(-3px);
}

/* WHATSAPP */
.partnership-banner {
    width: 100%;
    margin-top: 20px;
    padding: 24px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #F5F4FD;
    border: 1px solid #E2D7D7;
    border-radius: 16px;
}
.partnership-banner .banner-left {
    display: flex;
    align-items: center;
    gap: 25px;
}
.partnership-banner .banner-left .handshake-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.partnership-banner .banner-left .handshake-icon-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.partnership-banner .banner-left .banner-text h5 {
    margin-bottom: 2px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
}
.partnership-banner .banner-left .banner-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
}
.partnership-banner .whatsapp-btn {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.partnership-banner .whatsapp-btn img {
    width: 100%;
    height: auto;
    display: block;
}


.button-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 30PX;
}

.coolboots-hero-video{
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    line-height: 0;
        position: absolute;
    top: -30px;
    max-width: 650px;
}

.coolboots-hero-video video{
    width: 100%;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.coolboots-hero-right{
    overflow: hidden;
}
.hero-right{
position: relative;
    right: 25px;
    top: -53px;

}
/* MOBILE */

@media(max-width:991px){

    .coolboots-hero-video{
        max-width: 100%;
        margin-top: 40px;
        position: relative;
    top: -31px;
    }

}

.coolboots-solution-video{
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.coolboots-solution-video video{
    width: 100%;

    object-fit: cover;

    border: none;
    outline: none;
    box-shadow: none;

  
}

.coolboots-growth-video{
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: auto;

    overflow: hidden;
    line-height: 0;
}

.coolboots-growth-video video{
    width: 100%;

    object-fit: cover;

    border: none;
    outline: none;
    box-shadow: none;

    /* CLEAN LOOK */

    transform: scale(1.04);
}

.GCPP_logo{
margin-top: 30px;
}

.coolboots-logo a{
    display:flex;
    align-items:center;
    gap:15px;
}

/* GIF size */
.logo-gif{
    width:80px;
    height:auto;
}


.logo-img{
      margin-left: -15px;
    margin-top: 0px;
    position: relative;
    top: 5px;
}

.fixed-navbar .logo-gif{
    width:100px !important;
    height:auto;
}


/* privacy */

/* =========================
PRIVACY POLICY
========================= */

.coolboots-privacy-policy{
    padding: 10px 0 80px;
    background: #f7f7fb;
}

/* HERO */

.coolboots-policy-hero{
   padding: 44px 0px 40px 30px
}

.coolboots-policy-left{
    padding-top: 30px;
}

.coolboots-policy-tag{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #222;
    display: inline-block;
    margin-bottom: 22px;
}

.coolboots-policy-left h1{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 34px;
}

.coolboots-policy-update{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ededf3;
    box-shadow:
    0 8px 20px rgba(0,0,0,.04);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
}

.coolboots-policy-right{
    text-align: right;
}

.coolboots-policy-right img{
    width: 100%;
    max-width: 520px;
}

/* CONTENT */

.coolboots-policy-content{
    background: #fff;
    border: 1px solid #ebebf2;
    border-radius: 24px;
    padding: 52px 46px;
}

.coolboots-policy-content p{
    font-size: 16px;
    line-height: 2;
    color: #000;

    font-weight: 400;
}

.coolboots-policy-content .policy-bold{
    font-weight: 700;
    color: #111;
}

.coolboots-policy-content strong{
    color: #111;
    font-weight: 700;
}
.coolboots-policy-content h1{
       font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f3a8a ;
}


.coolboots-policy-content h2{
       font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f3a8a ;
}



.coolboots-policy-content ul{
padding-left: 30px;
}

.coolboots-policy-content ul li{

    list-style-type: disc;
    font-size: 16px;
    margin-bottom: 15px;
}


.coolboots-policy-content table p{
margin-bottom: 0px;
 color: #000;
}
.coolboots-policy-content table td{
      border: solid #cccccc 0.5pt;
    padding: 10px 16px 10px 13px;
    text-align: CENTER;
    color: #000;
}
.coolboots-policy-content table th{
   color:#1f3a8a;background-color:#1f3a8a;border: solid #cccccc 0.5pt;
       color: #fff;
    padding: 5px;
    text-align: center;
}

.policy {
    background: #fff;
    border: 1px solid #ebebf2;
    border-radius: 24px;
    padding: 52px 46px;
}
.policy p {
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 20px;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.policy h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1f3a8a;
}

.menu-icon{
  width: 30px;
}
.top-header-fixed.header-scrolled {
  /* 🔹 Light Theme ke liye Solid White Background: */
  background-color: #fff; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Mild Bottom Shadow */
  border-bottom: 1px solid #cbd5e1; /* Subtle Bottom Border */

  /* 🔹 Agar Dark Theme chahiye to upar wali line hata ke niche wala uncomment kar lena: */
  /* background-color: #0b071e !important; */
}

.top-header-fixed.header-scrolled .header-logo{
    height: 50px;
        background-color: #fff;
        padding: 0px;
        border-radius: 9px;
            position: relative;
    top: 16px;
}      

/* 🎯 1. Fixed Position on Screen (Bottom Right) */
.floating-spin-avatar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  
  /* 🔥 Continuous Smooth 360 Degree Rotation */
  animation: rotateAvatar 12s linear infinite;
}

.floating-spin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Hover karne par ghumna pause karna ho to */
.floating-spin-avatar:hover {
  animation-play-state: paused;
}

/* 🎯 2. Pure CSS Rotation Keyframes */
@keyframes rotateAvatar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 📱 Mobile Screen Adjustment */
@media (max-width: 768px) {
  .floating-spin-avatar {
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}
/* Alternative: Sirf Border Ghumega, Face Seedha Rahega */
.floating-spin-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(#a855f7, #6366f1, #ec4899, #a855f7);
  z-index: -1;
  animation: rotateAvatar 4s linear infinite;
}



    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 45px;
    }

    .sub-title {
      color: #38bdf8;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 12px !important;
      display: block;
      text-align: center;
    }
.careers-section h2 {
    font-size: 30px;
    padding-top: 0px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
}
.cl-card{
  background-color: #fff;
    border: solid 1px #ccc;
}
/* 🎯 EXACT COLUMN ALIGNMENT FOR HEADER & SUMMARY */
.job-table-header,
.job-summary-row {
  display: grid !important;
  /* 50% for Position Name, 25% for Location, 25% for Exp */
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}

/* Colors */
.bg-custom-blue {
  background-color: #1553a6 !important;
}

.bg-custom-light-blue {
  background-color: #eaf2fd !important;
}

.text-custom-blue {
  color: #1553a6 !important;
}

.header-col {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.job-title {
  font-size: 16px;
  line-height: 1.4;
}

/* Bullet Points */
.job-list {
  list-style-type: square !important;
}

/* 📱 Mobile Responsive View */
@media (max-width: 768px) {
  .job-table-header {
    display: none !important;
  }

  .job-summary-row {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
}
.careers-section .text-secondary p{
  text-align: center;
    color: #000;
    padding-left: 20em;
    padding-right: 20em;
    font: 15px / 24px "Poppins", sans-serif;
    margin-bottom: 5rem;
}


    .description {
      font-size: 14px;
      color: #475569;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Job Card Table Wrapper */
    .job-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      border: 1px solid #e2e8f0;
    }

    /* Blue Table Header */
    .job-header-row {
      background-color: #1553a6;
      color: #ffffff;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      padding: 16px 28px;
      font-weight: 700;
      font-size: 15px;
    }

    /* Light Blue Position Summary Row */
    .job-summary-row {
      background-color: #eaf2fd;
      color: #1553a6;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      padding: 20px 28px;
      font-weight: 600;
      font-size: 16px;
      align-items: center;
      border-bottom: 1px solid #dbeafe;
    }

    /* Job Detail Content */
    .job-details-body {
      padding: 32px 28px;
      background: #ffffff;
      font-size: 13.5px;
      line-height: 1.65;
      color: #334155;
    }

    .detail-group {
      margin-bottom: 20px;
    }

    .detail-heading {
      font-weight: 700;
      color: #000000;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .detail-text {
      color: #334155;
      margin-bottom: 14px;
    }

    /* Custom Bullet List */
    .job-list {
      list-style-type: square;
      padding-left: 20px;
      margin-top: 8px;
    }

    .job-list li {
      margin-bottom: 10px;
      color: #334155;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .job-header-row {
        display: none; /* Mobile par headers hide honge */
      }

      .job-summary-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .main-title {
        font-size: 26px;
      }
    }
    /* Brand Colors */
    .bg-custom-blue {
      background-color: #1553a6 !important;
    }
    .bg-custom-light-blue {
      background-color: #eaf2fd !important;
    }
    .text-custom-blue {
      color: #1553a6 !important;
    }
    /* Bullet points */
    .job-list {
      list-style-type: square;
      padding-left: 1.2rem;
    }
    .job-list li {
      margin-bottom: 0.5rem;
      color: #334155;
    }

    /* =========================================================
   📱 ZERO GAP MOBILE STACKING (TIGHT & SMOOTH)
   ========================================================= */
@media (max-width: 991px) {

  #trusted-section {
    display: none !important;
  }

  .pure-css-stats-section {
    background: url(../images/features.webp);
    color: #ffffff;
    padding: 40px 16px 50px 16px;
    position: relative;
  }

  /* Badge */
  .css-badge {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
margin-top: 15px;
margin-bottom: 30px;
    font-weight: 400;
    line-height: inherit;
    max-width: 380px;
  }

  .css-badge .dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
  }

  .css-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.25;
  }

  .purple-gradient {
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* 🎯 Parent Track: Chhota sa 24px gap cards ke beech */
  .css-cards-track {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Pehle ka 65vh khatam! Ab sirf 24px ka clean gap */
    position: relative;
    margin-top: 15px;
  }

  /* 🎯 Sticky Cards: Direct Overlay on Top */
  .css-card {
    position: sticky !important;
    top: 70px !important;
    border-radius: 22px;
    padding: 22px 18px;
    overflow: hidden;
    
    /* Dark Background + 3D Depth Shadow */
    background: #110b29 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.9), 0 15px 30px rgba(0, 0, 0, 0.6);
  }

  /* Color Borders */
  .card-purple { border-top: 2px solid #a855f7; }
  .card-blue   { border-top: 2px solid #3b82f6; }
  .card-gold   { border-top: 2px solid #f59e0b; }

  /* Background Glow */
  .card-glow {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(50px);
    top: -20px;
    right: -20px;
    pointer-events: none;
    opacity: 0.35;
  }
  .card-purple .card-glow { background: #8b5cf6; }
  .card-blue .card-glow   { background: #3b82f6; }
  .card-gold .card-glow   { background: #f59e0b; }

  .card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .step-pill {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
    color: #e2e8f0;
  }

  .step-count {
    font-size: 11px;
    font-weight: 700;
    color: #a855f7;
  }

  .card-number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -1px;
  }

  .card-number .unit {
    color: #fbbf24;
    font-size: 34px;
    margin-left: 2px;
  }

  .card-heading {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
  }

  .card-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 0;
  }
}

/* =========================================================
   🎯 REUSABLE COMMON BUTTON (.btn-pill-gradient)
   ========================================================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
  padding: 19px 29px;
  /* Exact Dark Purple to Vibrant Violet Gradient */
  background: linear-gradient(90deg, #18004b 0%, #5a00be 100%);
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size:23px;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  outline: none;
  border-radius: 50px; /* Full Pill Shape */
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(90, 0, 190, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.about-content .cta{
  opacity: 1 !important;
  display: inline-block !important;
}
/* Hover & Active Effect */
.cta:hover {
  background: linear-gradient(90deg, #220063 0%, #6e00e8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(110, 0, 232, 0.6);
  color: #ffffff !important;
}

.cta:active {
  transform: translateY(0);
}

/* Yellow Arrow Icon */
.cta .btn-arrow {
  color: #ffc107; /* Bright Yellow / Gold */
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.3s ease;
}

/* Hover par Arrow halka sa upar-right animate hoga */
.cta:hover .btn-arrow {
  transform: translate(3px, -3px);
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating {
    display: inline-block;
    position: fixed;
    z-index: 99;
    right: 0px;
    left: auto;
    bottom: 50px;
    background: #fff;
    border-radius: 10px;

}

.gqTMHp {
    height: 80px;
    width: 80px;
    z-index: 9;
    -webkit-animation: pulse 2s linear 1s infinite;
    border-radius: 50%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: transparent;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 75%;
    right: 40px;
    bottom: 100px;
}
.floating a {

    padding: 0px 9px;
    font-size: 12px;
    display: inline-block;
    margin: 0px;
    text-decoration: none;
    font-weight: 600;
}

.gqTMHp img {

  width: 100%;
  padding: 5px;

}

@-webkit-keyframes pulse {

  0% {
    box-shadow: 0 0 8px #6101BF inset 0 0 1px #6101BF;
  }

  50% {
    box-shadow: 0 0 36px #6101BF, inset 0 0 36px #6101BF;
  }

  100% {
    box-shadow: 0 0 8px #6101BF, inset 0 0 3px #6101BF;
  }

}



.inner {

  background-color: transparent;

  width: 100px;

  height: 100px;

  border-radius: 50px;


  -webkit-animation: pulse 1s linear 1s infinite;

}

@keyframes floating {

  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }

}



.floating {
 right: 30px;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

}


/* 4th Card Theme Styling */
.css-card.card-green {
  border-color: rgba(34, 197, 94, 0.25);
  background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.15), transparent 70%), #110b29;
}

.css-card.card-green .card-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
}

.css-card.card-green .step-pill {
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.css-card.card-green .card-number {
  color: #4ade80;
}