*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background: #050b16;
  color: white;
}

/* NAVBAR */
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 140px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo{
  font-weight: 700;
  font-size: 20px;
  color: #6fffe9;
}

nav a{
  color: #d0d6dc;
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover{
  color: #6fffe9;
}

/* HERO */
.hero{
 height: 70vh;
  position: relative;
  overflow: hidden;
}

#particles{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-40px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform: translateY(-40px); }
  50%{ transform: translateY(-55px); }
}

/* TITLE */
.hero-title{
  font-size: 56px;
  font-weight: 800;
  color: #6fffe9;
  text-shadow:
    0 0 25px rgba(111,255,233,0.7),
    0 0 45px rgba(111,255,233,0.3);
  margin-bottom: 10px;
}

/* SUBTITLE SAME POWER */
.hero-subtitle{
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(255,255,255,0.25);
}

/* DESCRIPTION */
.hero-desc{
  max-width: 760px;
  font-size: 15px;
  color: #cfd8dc;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* BUTTON */
.hero-btn{
  padding: 12px 34px;
  background: #6fffe9;
  color: #001d2b;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(151, 182, 177, 0.7);
  transition: 0.3s ease;
}

.hero-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(111,255,233,1);
}
.logo img{
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(111,255,233,0.8));
}
/* === REMOVE WHITE / BLUR STRIP ABOVE LOGO === */

/* Kill any overlay */
header::before,
header::after,
nav::before,
nav::after {
  content: none !important;
  display: none !important;
}

/* Make header fully transparent */
header,
nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Ensure logo stays on top */
.logo,
.logo img {
  position: relative;
  z-index: 9999;
  background: transparent !important;
}

/* SERVICES SECTION */
.services-section {
  padding: 10px 8% 70px;
  position: relative;
  z-index: 2;
}

.services-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #4efcff;
  text-shadow: 0 0 20px rgba(78,252,255,0.6);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.service-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 22px 35px;
  text-align: left;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(78,252,255,0.35);
}

/* IMAGE */
.service-box img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  margin-bottom: 18px;
}

/* TEXT */
.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #6b0f0f;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #9e1b1b;
}
.services-section {
  position: relative;
  padding: 120px 8%;
  overflow: hidden;
}

/* Particle canvas */
#services-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Content upar rahe */
.services-heading,
.services-grid {
  position: relative;
  z-index: 2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0b1f33, #050b14);
  color: white;
}

/* SECTION */
.clients-section {
  padding: 80px 0;
  overflow: hidden;
}

/* TITLE */
.clients-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #6fffd2;
  letter-spacing: 1px;
}

/* WRAPPER */
.clients-wrapper {
  width: 100%;
  overflow: hidden;
}

/* TRAIN */
.clients-track {
  display: flex;
  gap: 50px;
  animation: train 25s linear infinite;
}

/* CARD */
.client-card {
  min-width: 260px;
  height: 140px;
  background: linear-gradient(145deg, #ffffff, #eaeaea);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}

.client-card:hover {
  transform: scale(1.08);
}

/* IMAGE */
.client-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ANIMATION */
@keyframes train {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0c1d3a, #020916);
  color: #fff;
  overflow-x: hidden;
}

/* PARTICLES */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 40px;
}

.navbar nav a {
  color: #fff;
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: #4efcff;
}

/* PUBLISHERS SECTION */
.publishers-section {
  position: relative;
  z-index: 5;
  padding: 120px 8%;
  text-align: center;
}

.glow-title {
  font-size: 48px;
  color: #4efcff;
  text-shadow: 0 0 25px rgba(78,252,255,0.6);
  margin-bottom: 15px;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 15px;
  opacity: 0.85;
}

/* GRID */
.publishers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* CARDS */
.publisher-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  transition: 0.4s ease;
}

.publisher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(78,252,255,0.3);
}

.publisher-card h3 {
  color: #4efcff;
  margin-bottom: 10px;
}

.publisher-card p {
  font-size: 14px;
  opacity: 0.85;
}
/* ABOUT SECTION */
.about-section {
  min-height: 100vh;
  padding: 140px 8% 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-title {
  font-size: 48px;
  color: #4efcff;
  text-shadow: 0 0 25px rgba(78,252,255,0.7);
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.about-content {
  max-width: 850px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}

.about-content p {
  margin-bottom: 20px;
}

/* ABOUT CARDS */
.about-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.about-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  font-size: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(78,252,255,0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #020b1c;
  color: #fff;
  overflow-x: hidden;
}

/* PARTICLES */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
}

.logo img {
  height: 45px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #4efcff;
}

/* CONTACT SECTION */
.contact-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 120px 10% 80px;
  text-align: center;
}

.section-title {
  font-size: 46px;
  color: #4efcff;
  text-shadow: 0 0 20px rgba(78,252,255,0.6);
}

.section-subtitle {
  margin-top: 12px;
  color: #ccc;
}

/* CONTACT BOX */
.contact-box {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.contact-form {
  position: relative;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  padding: 45px 40px;
  width: 440px;
  border-radius: 22px;
  box-shadow:
    0 0 30px rgba(78,252,255,0.25),
    inset 0 0 25px rgba(255,255,255,0.05);
  animation: floatForm 4s ease-in-out infinite;
}

/* FLOATING ANIMATION */
@keyframes floatForm {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 32px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding: 12px 0;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 14px;
  color: #aaa;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s;
}

/* FLOAT LABEL */
.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:valid ~ label {
  top: -12px;
  font-size: 11px;
  color: #4efcff;
}

/* GLOW ON FOCUS */
.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: #4efcff;
  box-shadow: 0 4px 15px rgba(78,252,255,0.35);
}

/* BUTTON */
.send-btn {
  position: relative;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg,#4efcff,#1f9fff);
  color: #000;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.4s;
}

.send-btn span {
  position: relative;
  z-index: 2;
}

/* BUTTON WAVE EFFECT */
.send-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: 0.6s;
}

.send-btn:hover::before {
  left: 100%;
}

.send-btn:hover {
  box-shadow: 0 0 30px rgba(78,252,255,0.9);
  transform: translateY(-2px);
}

/* MOBILE */
@media(max-width:500px){
  .contact-form{
    width: 100%;
    padding: 35px 25px;
  }
}

/* ADDON SECTIONS */
.addon-section {
  padding: 120px 8%;
  text-align: center;
}

.addon-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #4efcff;
  text-shadow: 0 0 15px rgba(78,252,255,0.6);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.addon-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 35px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.addon-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgba(78,252,255,0.45);
}

/* HIGHLIGHT STRIP */
.highlight-section {
  padding: 80px 8%;
}

.highlight-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  background: linear-gradient(135deg, rgba(78,252,255,0.15), rgba(0,0,0,0.2));
  border-radius: 22px;
  padding: 50px;
  text-align: center;
}

.highlight-box h3 {
  font-size: 42px;
  color: #4efcff;
}

.highlight-box p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.8;
}


/* SECTION COMMON */
.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: #6fffe9;
  text-shadow: 0 0 20px rgba(111,255,233,0.6);
}

/* ADDON SECTION */
.addon-section {
  padding: 120px 8%;
  background: transparent;
  position: relative;
  z-index: 2;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.addon-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(111,255,233,0.2);
  transition: 0.4s ease;
}

.addon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(111,255,233,0.35);
}

.addon-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* COUNTER SECTION */
.highlight-section {
  padding: 120px 8%;
  position: relative;
  z-index: 2;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.counter-box {
  background: rgba(255,255,255,0.06);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(111,255,233,0.25);
}

.counter-box h3 {
  font-size: 42px;
  color: #6fffe9;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 15px;
  color: #ddd;
}
.highlight-section {
  position: relative;
  z-index: 3;
}

#particles {
  z-index: 1;
}

.addon-card {
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(100,255,255,0.15);
  transition: 0.4s ease;
  cursor: pointer;
}

.addon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(100,255,255,0.35);
}

/* REMOVE COLORFUL BACKGROUND */
.opportunity-section {
  background: transparent;
  padding: 60px 20px;
  text-align: center;
}

/* Heading */
.opportunity-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 30px;
}

/* Buttons container */
.opportunity-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons style */
.opportunity-buttons a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(111, 255, 233, 0.6);
  padding: 12px 26px;
  border-radius: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Hover effect */
.opportunity-buttons a:hover {
  background: rgba(111, 255, 233, 0.15);
  box-shadow: 0 0 15px rgba(111, 255, 233, 0.6);
}

.opportunity-buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 25px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.op-btn{
  padding: 10px 22px;
  background: rgba(111,255,233,0.15);
  color: #6fffe9;
  border-radius: 8px;
  border: 1px solid rgba(111,255,233,0.5);
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(111,255,233,0.4);
  transition: 0.3s ease;
}

.op-btn:hover{
  background: #6fffe9;
  color: #000;
  box-shadow: 0 0 25px rgba(111,255,233,0.9);
  transform: translateY(-2px);
}

/* ===== FIX PARTICLES CLICK ISSUE ===== */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero,
.hero-content,
.opportunity-section,
.addon-section {
  position: relative;
  z-index: 2;
}

/* ===== OPPORTUNITY SECTION ===== */
.opportunity-section {
  text-align: center;
  padding: 20px 0 10px;   /* GAP KAM */
}

.opportunity-title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

/* BUTTON CONTAINER */
.opportunity-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTON STYLE (START GAME jaisa) */
.opportunity-btn {
  padding: 10px 22px;
  background: rgba(111, 255, 233, 0.15);
  border: 1px solid rgba(111, 255, 233, 0.6);
  border-radius: 8px;
  color: #6fffe9;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(111,255,233,0.4);
  transition: all 0.3s ease;
}

/* HOVER */
.opportunity-btn:hover {
  background: #6fffe9;
  color: #000;
  box-shadow: 0 0 25px rgba(111,255,233,0.9);
  transform: translateY(-2px);
}


/* ===== WHY SECTION ===== */
.why-section {
  padding: 70px 10%;
  text-align: center;
}

.why-title {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 14px;
}

.why-desc {
  max-width: 850px;
  margin: 0 auto 50px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(111,255,233,0.25);
  border-radius: 14px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(111,255,233,0.35);
}

/* ICON */
.why-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(111,255,233,0.15);
  color: #6fffe9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5;
}

/* SECTION GAP CONTROL */
.addon-section {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.highlight-section {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

.why-journey-section {
  padding-top: 40px;
  margin-top: 0;
}

/* HERO aur Opportunity ke beech gap kam */
.hero {
  padding-bottom: 5px;   /* pehle zyada hoga */
}

.opportunity-section {
  margin-top: 0;
  padding-top: 2px;      /* thoda sa space */
}


/* VERTICALS SECTION */
.verticals-section {
  padding: 60px 0 40px;
  text-align: center;
  overflow: hidden;
}

.verticals-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #6fffe9;
  text-shadow: 0 0 15px rgba(111,255,233,0.6);
}

/* MARQUEE */
.verticals-marquee {
  width: 100%;
  overflow: hidden;
}

.verticals-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

.verticals-track span {
  padding: 14px 26px;
  border-radius: 30px;
  border: 1px solid rgba(111,255,233,0.4);
  color: #eafffb;
  font-size: 15px;
  white-space: nowrap;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(111,255,233,0.15);
}

/* ANIMATION */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ADVANTAGE SECTION */
.advantage-section {
  padding: 80px 8% 70px;   /* gap controlled */
  text-align: center;
}

.advantage-title {
  font-size: 38px;
  margin-bottom: 60px;
    color: #6fffe9;   
     text-shadow: 0 0 12px rgba(111, 255, 233, 0.4); /* glow effect */
  letter-spacing: 0.5px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.advantage-card {
  color: #6fffe9;     
  padding: 20px;
}

.advantage-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
   color: #6fffe9;     
}

.advantage-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #b7d6ff;
}

.adv-icon {
  font-size: 40px;
  color: #6fffe9;
  margin-bottom: 10px;
}

.adv-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #7681d7;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.adv-btn:hover {
  background: #89b8f5;
}


/* GLOW CTA BUTTON (same as Start Game) */
.cta-glow-btn {
  display: inline-block;
  padding: 14px 42px;
  margin-top: 40px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #022b2b;
  background: #6fffe9;
  border-radius: 8px;

  text-decoration: none;
  box-shadow:
    0 0 10px rgba(111, 255, 233, 0.6),
    0 0 25px rgba(111, 255, 233, 0.4);

  transition: all 0.3s ease;
}

/* Hover Effect */
.cta-glow-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(111, 255, 233, 0.9),
    0 0 40px rgba(111, 255, 233, 0.7);
}

/* Center button */
.cta-glow-btn {
  margin-left: auto;
  margin-right: auto;
}


/* ================== GLOBAL RESET ================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ================== BODY & BACKGROUND ================== */
html, body{
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, #0b1d2a, #040b12);
  color: #ffffff;
  overflow-x: hidden;
}

/* ================== PARTICLES ================== */
#particles{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ================== NAVBAR ================== */
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}

.logo img{
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(111,255,233,0.8));
}

nav a{
  color: #d0d6dc;
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover,
nav a.active{
  color: #6fffe9;
}

/* ================== PUBLISHERS SECTION ================== */
.publishers-section{
  position: relative;
  z-index: 2;
  padding: 140px 8% 70px;
  text-align: center;
}

.glow-title{
  font-size: 48px;
  color: #6fffe9;
  text-shadow: 0 0 25px rgba(111,255,233,0.6);
}

.subtitle{
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #cfd8dc;
}

/* GRID */
.publishers-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
  margin-top: 60px;
}

.publisher-card{
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  transition: 0.3s;
}

.publisher-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(111,255,233,0.35);
}

.publisher-card h3{
  color: #6fffe9;
  margin-bottom: 10px;
}

.publisher-card p{
  font-size: 14px;
  color: #cfd8dc;
}

/* ================== VERTICALS ================== */
.verticals-section{
  padding: 60px 0 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.verticals-title{
  font-size: 32px;
  color: #6fffe9;
  margin-bottom: 30px;
}

.verticals-marquee{
  width: 100%;
  overflow: hidden;
}

.verticals-track{
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

.verticals-track span{
  padding: 14px 26px;
  border-radius: 30px;
  border: 1px solid rgba(111,255,233,0.4);
  color: #eafffb;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}

@keyframes marqueeMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ================== ADVANTAGE ================== */
.advantage-section{
  padding: 70px 8% 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.advantage-title{
  font-size: 38px;
  color: #6fffe9;
  margin-bottom: 60px;
}

.advantage-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
}

.advantage-card h3{
  color: #6fffe9;
  margin: 15px 0 10px;
}

.advantage-card p{
  font-size: 14px;
  color: #cfd8dc;
}

/* CTA */
.cta-glow-btn{
  display: inline-block;
  margin-top: 40px;
  padding: 14px 42px;
  background: #6fffe9;
  color: #001c1f;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(111,255,233,0.6);
}

.cta-glow-btn:hover{
  box-shadow: 0 0 45px rgba(111,255,233,0.9);
}

/* ===== FEATURES SECTION FINAL FIX ===== */

.features-section{
  width: 100%;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}

.features-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* TITLE – FIXED POSITION */
.features-title{
  font-size: 38px;
  color: #6fffe9;
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(111,255,233,0.6);
  display: block;
}

/* DESCRIPTION */
.features-desc{
  max-width: 820px;
  margin: 0 auto 1px;
  font-size: 15px;
  line-height: 1.7;
  color: #cfd8dc;
}

/* GRID – 3 UP / 3 DOWN */
.features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.feature-box{
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid rgba(111,255,233,0.25);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.feature-box:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(111,255,233,0.4);
}

/* ICON */
.feature-icon{
  font-size: 34px;
  margin-bottom: 14px;
  color: #6fffe9;
}

/* TITLE */
.feature-box h3{
  font-size: 18px;
  margin-bottom: 1px;
  color: #6fffe9;
}

/* TEXT */
.feature-box p{
  font-size: 14px;
  line-height: 1.6;
  color: #cfd8dc;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 520px){
  .features-grid{
    grid-template-columns: 1fr;
  }
}


.footer-main{
  width: 100%;
  background: transparent;
  padding: 40px 20px 20px;
  position: relative;   /* ❌ fixed / absolute nahi */
  z-index: 2;
}

.features-section{
  padding-bottom: 70px;   /* 🔥 ye line add karo */
}
}


/* ===== FOOTER STRIP HARD FIX ===== */

.footer-strip-fixed{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex !important;
  justify-content: space-between;
  align-items: center;

  padding: 40px 20px 60px;
  background: transparent;

  position: relative;
  z-index: 999;
}

/* BOX */
.footer-strip-box{
  display: flex !important;
  align-items: center;
  gap: 14px;

  color: #ffffff;
}

/* ICON */
.footer-strip-box i{
  font-size: 26px;
  color: #6fffe9;
  text-shadow: 0 0 12px rgba(111,255,233,0.6);
}

/* TEXT */
.footer-strip-box h4{
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.footer-strip-box p{
  font-size: 14px;
  margin: 0;
  color: #cfd8dc;
}

/* MOBILE */
@media(max-width: 900px){
  .footer-strip-fixed{
    flex-direction: column !important;
    gap: 26px;
    text-align: center;
  }

  .footer-strip-box{
    justify-content: center;
  }
}

.footer-strip-box h4{
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6fffe9;
}

.footer-strip-box p{
  font-size: 14px;
  color: #e6fdf8;
}

/* FOOTER BOTTOM LAYOUT */
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8%;
  gap: 40px;
}

/* CONTACT COLUMN */
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i{
  color: #6fffe9;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact-item strong{
  font-size: 12px;
  letter-spacing: 1px;
  color: #6fffe9;
  margin-bottom: 4px;
  display: block;
}

.footer-contact-item span{
  font-size: 14px;
  color: #e6fdf8;
}



.simple-footer{
  width: 100%;
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.5px;

  /* TRANSPARENT DARK */
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);

  color: #cfd8dc;
  border-top: 1px solid rgba(255,255,255,0.08);

  position: relative;
  z-index: 3;
}

/* ===== GAP FIX – OUR SERVICES SECTION ===== */

.services-title{
  margin-bottom: 5px !important;
}

.services-tagline{
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  line-height: 1.2;
}

.services-desc{
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

/* FIX GAP BETWEEN "We help..." AND "Our Services" */

.we-help{
  margin-bottom: 20px !important;
}

.our-services{
  margin-top: 20px !important;
  padding-top: 0 !important;
}

/* ===============================
   SERVICE PAGE – HERO GAP FIX
   =============================== */

/* Hero height kam */
.hero{
  height: 55vh !important;   /* pehle 70vh tha */
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Center content ko neeche se upar lao */
.hero-content{
  transform: translateY(-10px) !important; /* pehle -40 / -55 */
  animation: none !important;              /* floating se gap badh raha tha */
}

/* OUR SERVICES title */
.hero-title{
  margin-bottom: 6px !important;
}

/* Visibility. Impact. Growth. */
.hero-subtitle{
  margin-bottom: 6px !important;
}

/* We help brands... line */
.hero-desc{
  margin-bottom: 8px !important;
}

/* Hero ke baad aane wala section chipkao */
.services-section{
  margin-top: 0 !important;
  padding-top: 20px !important;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 upar + 3 neeche */
  gap: 30px;
}

/* Tablet */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SERVICE PAGE – HERO GAP FIX
   =============================== */

/* Hero height kam */
.hero{
  height: 55vh !important;   /* pehle 70vh tha */
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Center content ko neeche se upar lao */
.hero-content{
  transform: translateY(-10px) !important; /* pehle -40 / -55 */
  animation: none !important;              /* floating se gap badh raha tha */
}

/* OUR SERVICES title */
.hero-title{
  margin-bottom: 6px !important;
}

/* Visibility. Impact. Growth. */
.hero-subtitle{
  margin-bottom: 6px !important;
}

/* We help brands... line */
.hero-desc{
  margin-bottom: 8px !important;
}

/* Hero ke baad aane wala section chipkao */
.services-section{
  margin-top: 0 !important;
  padding-top: 20px !important;
}
/* ===============================
   SERVICES – GLASS CARD STYLE
   =============================== */

.services-section{
  padding: 30px 8% 40px;
  position: relative;
  z-index: 2;
}

.services-heading{
  text-align: center;
  font-size: 42px;
  color: #6fffe9;
  margin-bottom: 40px;
  text-shadow: 0 0 18px rgba(111,255,233,0.6);
}

/* GRID */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* GLASS CARD */
.service-card{
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(111,255,233,0.25);
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(111,255,233,0.45);
}

/* TITLE */
.service-card h3{
  font-size: 20px;
  color: #6fffe9;
  margin-bottom: 10px;
}

/* TEXT */
.service-card p{
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.service-btn{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none;
  color: #6fffe9;
  border: 1px solid rgba(111,255,233,0.5);
  background: rgba(111,255,233,0.12);
  box-shadow: 0 0 12px rgba(111,255,233,0.35);
  transition: all 0.3s ease;
}

.service-btn:hover{
  background: #6fffe9;
  color: #001c1f;
  box-shadow: 0 0 25px rgba(111,255,233,0.9);
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 upar + 3 neeche */
  gap: 30px;
}

/* Tablet */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* SOCIAL ICONS */
.footer-social{
  display: flex;
  gap: 16px;
}

.footer-social a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6fffe9;
  border: 1px solid rgba(111,255,233,0.4);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover{
  background: #6fffe9;
  color: #001c1f;
  box-shadow: 0 0 25px rgba(111,255,233,0.8);
  transform: translateY(-4px);
}

/* MOBILE FIX */
@media(max-width: 768px){
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }

  .footer-social{
    margin-top: 20px;
  }
}

.simple-footer{
  width: 100%;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  background: rgba(0,0,0,0.35);
  color: #cfd8dc;

  position: relative;
  margin-top: 40px;   /* 🔥 ye important */
  z-index: 5;
}

footer,
.footer-main,
.simple-footer {
  position: relative !important;
  bottom: auto !important;
  margin-top: 60px;
}


/* ===== RESET ===== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ===== BACKGROUND ===== */
body{
  background: radial-gradient(circle at top, #0b1d2a, #040b12);
  color: #ffffff;
  overflow-x: hidden;
}

/* PARTICLES (optional) */
#particles{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 10;
}

.logo{
  font-size: 22px;
  font-weight: 700;
  color: #6fffe9;
  text-shadow: 0 0 10px rgba(111,255,233,0.6);
}

nav a{
  color: #d0d6dc;
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover,
nav a.active{
  color: #6fffe9;
}

/* ===== ABOUT SECTION ===== */
.about-section{
  position: relative;
  z-index: 2;
  padding: 140px 8% 100px;
  text-align: center;
}

/* TITLE */
.about-title{
  font-size: 48px;
  color: #6fffe9;
  text-shadow: 0 0 25px rgba(111,255,233,0.7);
  margin-bottom: 8px;
}

/* SUBTITLE */
.about-subtitle{
  font-size: 18px;
  color: #cfd8dc;
  margin-bottom: 40px;
}

/* CONTENT */
.about-content{
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #dfecec;
}

.about-content p{
  margin-bottom: 18px;
}

/* ===== FEATURE STRIP ===== */
.about-features{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* GLASS CARD */
.about-card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(111,255,233,0.25);
  border-radius: 20px;
  padding: 35px 25px;

  transition: all 0.35s ease;
}

.about-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(111,255,233,0.45);
}

/* ICON */
.about-card i{
  font-size: 34px;
  color: #6fffe9;
  margin-bottom: 14px;
}

/* TEXT */
.about-card h3{
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
}

/* ===== PARTICLES FIX (FINAL) ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#particles canvas {
  width: 100%;
  height: 100%;
}

/* Content always above particles */
.navbar,
.about-section,
.footer-main,
.simple-footer {
  position: relative;
  z-index: 2;
}

/* Body fix */
body {
  position: relative;
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background: radial-gradient(circle at top, #0b2a3d, #020d18);
  color:#fff;
  overflow-x:hidden;
}

/* PARTICLES */
#particles{
  position:fixed;
  inset:0;
  z-index:-1;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
}

.logo{
  font-size:26px;
  font-weight:bold;
  color:#4efcff;
}

nav a{
  color:#cfd8dc;
  text-decoration:none;
  margin-left:25px;
  transition:.3s;
}

nav a:hover,
nav a.active{
  color:#4efcff;
}

/* CLIENTS SECTION */
.clients-section{
  text-align:center;
  padding:100px 20px;
}

.glow-title{
  font-size:48px;
  color:#4efcff;
  text-shadow:0 0 15px rgba(78,252,255,.8);
}

.subtitle{
  margin-top:15px;
  opacity:.85;
}

/* CLIENT GRID */
.clients-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.client-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  padding:40px;
  border-radius:16px;
  backdrop-filter: blur(10px);
  transition:.4s;
  cursor:pointer;
}

.client-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 0 25px rgba(78,252,255,.4);
}

/* FOOTER */
.footer{
  padding:60px 20px;
  background:rgba(0,0,0,.3);
  text-align:center;
}

.footer-box{
  margin-bottom:20px;
}

.footer h4{
  color:#4efcff;
  margin-bottom:8px;
}

.socials{
  margin:25px 0;
}

.socials a{
  color:#fff;
  margin:0 10px;
  font-size:18px;
  transition:.3s;
}

.socials a:hover{
  color:#4efcff;
}

copyright{
  opacity:.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .navbar{
    flex-direction:column;
  }
  nav{
    margin-top:15px;
  }
}


.client-card img{
  max-width:140px;
  max-height:70px;
  object-fit:contain;
  filter: grayscale(100%);
  transition:0.4s;
}

.client-card:hover img{
  filter: grayscale(0%);
  transform: scale(1.08);
}


/* ===== OUR CLIENTS SECTION ===== */

.clients-section {
  padding: 80px 6%;
  background: #f8f9fb;
  text-align: center;
}

.clients-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.clients-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.client-card {
  height: 160px;
  background: linear-gradient(135deg, #f4e7f0, #efeaf7);
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}



/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

/* ================= BODY ================= */
html, body {
  width: 100%;
  height: 100%;
}

body {
  background: radial-gradient(circle at top, #0b1d2a, #040b12);
  color: #ffffff;
  overflow-x: hidden;
}
}

/* ================= PARTICLES ================= */
#particles{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
}

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 60px;
  z-index:1000;

  background:rgba(5,15,25,0.7);
  backdrop-filter:blur(10px);
}

.logo img{
  height:38px;
  filter:drop-shadow(0 0 8px rgba(111,255,233,.8));
}

nav a{
  margin-left:24px;
  color:#cfd8dc;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

nav a:hover,
nav a.active{
  color:#6fffe9;
}

/* ================= COMMON SECTION ================= */
section{
  position:relative;
  z-index:2;
  padding-top:110px; /* navbar space */
}

/* ================= HERO ================= */
.hero{
  height:55vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-title{
  font-size:52px;
  color:#6fffe9;
  text-shadow:0 0 25px rgba(111,255,233,.6);
}

.hero-subtitle{
  font-size:36px;
  margin-top:6px;
}

.hero-desc{
  max-width:760px;
  margin:10px auto 20px;
  color:#cfd8dc;
}

/* ================= CLIENTS ================= */
.clients-section{
  padding-bottom:90px;
  text-align:center;
}

.section-title{
  font-size:42px;
  color:#6fffe9;
  margin-bottom:10px;
  text-shadow:0 0 20px rgba(111,255,233,.6);
}

.section-subtitle{
  color:#cfd8dc;
  margin-bottom:50px;
}

.clients-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.client-card{
  aspect-ratio:1/1;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(111,255,233,.25);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.client-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 25px rgba(111,255,233,.4);
}

.client-card img{
  max-width:80%;
  max-height:80%;
  object-fit:contain;
}

/* ================= FOOTER ================= */
footer{
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(8px);
  padding:30px;
  text-align:center;
  font-size:13px;
  color:#cfd8dc;
  position:relative;
  z-index:2;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .navbar{
    padding:0 20px;
  }

  nav a{
    margin-left:14px;
    font-size:13px;
  }

  .hero-title{
    font-size:36px;
  }
}

.clients-section{
  background: transparent !important;
  position: relative;
  z-index: 2;
}


/* GLOBAL PARTICLES */
#particles{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.clients-section{
  position: relative;
  z-index: 2;
  background: transparent !important;
}


.client-card{
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(111,255,233,0.25);
}

.contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #7c6cff;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(124, 108, 255, 0.6);
  background: rgba(124, 108, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #7c6cff;
  color: #fff;
  box-shadow: 0 0 15px rgba(124, 108, 255, 0.6);
  transform: translateY(-2px);
  
  
  /* ===== COUNTER SECTION FINAL ===== */

.highlight-section{
  padding: 120px 8%;
  position: relative;
  z-index: 2;
  overflow: visible; /* 🔥 VERY IMPORTANT */
}

.counter-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
  text-align: center;
}

.counter-box{
  background: rgba(255,255,255,0.06);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(111,255,233,0.25);
}

.counter-box h3{
  font-size: 42px;
  color: #6fffe9;
  margin-bottom: 8px;
}

.counter-box p{
  font-size: 15px;
  color: #ddd;
  
  .footer-contact{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-item i{
  font-size: 18px;
  color: #6fffe9;
  margin-top: 4px;
}

.footer-text strong{
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #6fffe9;
  margin-bottom: 4px;
}

.footer-text span{
  font-size: 14px;
  color: #e6fdf8;
}
}
}

/* ===== FOOTER FIX ===== */

.footer-main{
  width: 100%;
  margin-top: 120px;
  position: relative;
  z-index: 2;
}

.footer-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-contact-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-item i{
  font-size: 18px;
  color: #6fffe9;
  margin-top: 4px;
}

.footer-contact-item strong{
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #6fffe9;
  margin-bottom: 4px;
}

.footer-contact-item span{
  font-size: 14px;
  color: #e6fdf8;
}

/* COPYRIGHT BAR */
.simple-footer{
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  color: #cfd8dc;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= FOOTER FINAL (ALL PAGES) ================= */

.footer-main{
  width: 100%;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

/* MAIN FOOTER CONTENT */
.footer-bottom{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* CONTACT COLUMN */
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-item i{
  font-size: 18px;
  color: #6fffe9;
  margin-top: 3px;
}

.footer-contact-item strong{
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6fffe9;
  margin-bottom: 4px;
}

.footer-contact-item span{
  font-size: 14px;
  color: #e6fdf8;
}

/* SOCIAL ICONS */
.footer-social{
  display: flex;
  gap: 16px;
}

.footer-social a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6fffe9;
  border: 1px solid rgba(111,255,233,0.4);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover{
  background: #6fffe9;
  color: #001c1f;
  box-shadow: 0 0 25px rgba(111,255,233,0.8);
  transform: translateY(-4px);
}

/* COPYRIGHT BAR */
.simple-footer{
  width: 100%;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #cfd8dc;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= FINAL GLOBAL HEADER ================= */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(5,15,25,0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.header-inner{
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO LEFT */
.site-logo img{
  height: 36px;
  filter: drop-shadow(0 0 6px rgba(111,255,233,0.7));
}

/* MENU RIGHT */
.site-nav{
  display: flex;
  gap: 22px;
}

.site-nav a{
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.site-nav a:hover,
.site-nav a.active{
  color: #6fffe9;
}

/* ================= PAGE CONTENT OFFSET ================= */
/* Header ke niche content push */
.hero,
.clients-section,
.contact-section,
.page-hero{
  padding-top: 110px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px){

  .site-header{
    height: 56px;
  }

  .site-logo img{
    height: 26px;
  }

  .site-nav{
    gap: 14px;
  }

  .site-nav a{
    font-size: 12px;
  }

  /* 🔥 HOME PAGE HERO FIX (MAIN ISSUE) */
  .hero img{
    display: none !important;
  }

  .hero::before,
  .hero::after{
    display: none !important;
  }

  .hero-content{
    margin-top: 10px;
  }
}

/* ================= MOBILE HOME HERO FIX (FINAL) ================= */

@media (max-width: 768px){

  /* HERO background / logo image HIDE */
  .hero img,
  .hero-logo,
  .hero-image,
  .hero-bg {
    display: none !important;
  }

  /* Agar background-image se aa raha ho */
  .hero{
    background-image: none !important;
    min-height: auto !important;
    padding-top: 90px;
  }

  /* Text upar lao */
  .hero-content{
    transform: none !important;
    margin-top: 0 !important;
  }
}

/* ================= HOME HERO – FINAL MOBILE FIX ================= */

/* Desktop */
.home-hero{
  background: none !important;
}

/* Mobile */
@media (max-width: 768px){

  /* HERO IMAGE / LOGO COMPLETELY REMOVE */
  .home-hero img,
  .home-hero::before,
  .home-hero::after{
    display: none !important;
    content: none !important;
  }

  /* HERO HEIGHT CONTROL */
  .home-hero{
    min-height: 100vh !important;
    padding-top: 90px;
  }

  /* TEXT CENTER & CLEAN */
  .home-hero .hero-content{
    transform: none !important;
    margin-top: 0 !important;
    padding: 0 18px;
  }

  .home-hero .hero-title{
    font-size: 32px;
  }

  .home-hero .hero-subtitle{
    font-size: 26px;
    line-height: 1.25;
  }

  .home-hero .hero-desc{
    font-size: 14px;
  }
}

/* ================= FINAL HOME PAGE FIX ================= */

/* 🔴 REMOVE HOME PAGE BACKGROUND IMAGE COMPLETELY */
.home-hero,
.home-hero::before,
.home-hero::after,
body.home-page {
  background-image: none !important;
}

/* 🔥 FORCE LOGO SIZE (MOBILE) */
@media (max-width: 768px){

  .site-header{
    height: 56px !important;
  }

  .site-logo img{
    height: 26px !important;
    max-height: 26px !important;
    width: auto !important;
  }

  /* HERO CLEAN */
  .home-hero{
    min-height: 100vh !important;
    padding-top: 80px !important;
    background: none !important;
  }

  .home-hero .hero-content{
    transform: none !important;
    margin-top: 0 !important;
    padding: 0 16px;
  }

  .home-hero .hero-title{
    font-size: 30px !important;
  }

  .home-hero .hero-subtitle{
    font-size: 24px !important;
    line-height: 1.25;
  }

  .home-hero .hero-desc{
    font-size: 14px;
  }
}


/* ================= RESET ================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= BODY ================= */
body{
  background: radial-gradient(circle at top, #0b1d2a, #040b12);
  color: #ffffff;
  overflow-x: hidden;
}

/* ================= PARTICLES ================= */
#particles{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ================= HEADER ================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(5,15,25,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-inner{
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO — ONLY THIS CONTROLS LOGO SIZE */
.site-logo img{
  height: 32px;        /* DESKTOP */
  width: auto;
}

/* MENU */
.site-nav{
  display: flex;
  gap: 20px;
}

.site-nav a{
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a.active{
  color: #6fffe9;
}

/* ================= HERO ================= */
.hero{
  min-height: 100vh;
  padding-top: 90px; /* header space */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content{
  max-width: 900px;
  padding: 0 16px;
}

.hero-title{
  font-size: 44px;
  color: #6fffe9;
  margin-bottom: 8px;
}

.hero-subtitle{
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-desc{
  font-size: 15px;
  color: #cfd8dc;
  margin-bottom: 20px;
}

.hero-btn{
  padding: 12px 32px;
  background: #6fffe9;
  color: #001c1f;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= MOBILE FIX (MAIN ISSUE) ================= */
@media (max-width: 768px){

  /* HEADER */
  .site-header{
    height: 56px;
  }

  .site-logo img{
    height: 24px;   /* 🔥 FINAL MOBILE LOGO SIZE */
  }

  .site-nav a{
    font-size: 12px;
  }

  /* 🔥 REMOVE BIG HOME IMAGE COMPLETELY */
  .hero img,
  .hero::before,
  .hero::after{
    display: none !important;
  }

  .hero{
    padding-top: 80px;
  }

  .hero-title{
    font-size: 30px;
  }

  .hero-subtitle{
    font-size: 22px;
  }

  .hero-desc{
    font-size: 14px;
  }
}




/* ===== FOOTER MAIN ===== */
.footer-main{
  width:100%;
  position:relative;
  z-index:2;
}

/* ===== FOOTER ROW ===== */
.footer-bottom{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

/* ===== CONTACT LEFT ===== */
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  color:#cfd8dc;
  font-size:14px;
}

.footer-contact-item i{
  color:#6fffe9;
  font-size:16px;
}

/* ===== SOCIAL RIGHT ===== */
.footer-social{
  display:flex;
  gap:14px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(111,255,233,0.4);
  color:#6fffe9;
  text-decoration:none;
  transition:0.3s;
}

.footer-social a:hover{
  background:#6fffe9;
  color:#001c1f;
  box-shadow:0 0 20px rgba(111,255,233,0.8);
}

/* ===== COPYRIGHT ===== */
.simple-footer{
  text-align:center;
  padding:12px 0;
  font-size:13px;
  color:#cfd8dc;
  background:rgba(0,0,0,0.35);
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-contact{
    align-items:center;
  }
}


/* ===== CTA BUTTON FORCE CENTER (FINAL FIX) ===== */
.cta-center{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.cta-center .cta-glow-btn{
  display: inline-block;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
}

/* ===== CTA CENTER FINAL FIX ===== */
.cta-center{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile extra safety */
@media (max-width: 768px){
  .cta-center{
    margin: 30px 0;
  }

  .cta-center .cta-glow-btn{
    margin: 0 auto;
  }
}


.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-glow-btn {
    margin-top: 20px;
}

.live-offer, .live-offer-btn, .cta-glow-btn {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999;
}

