/* ===== ROOT VARIABLES ===== */
:root {
  --nexiva-blue: #0e84e1;
  --nexiva-purple: #9747ff;
  --nexiva-dark: #1f2126;
  --nexiva-gray: #7d7f85;
  --nexiva-light-bg: #f8f9fc;
  --gradient-primary: linear-gradient(90deg, #0e84e1 -1.84%, #9747ff 100%);
  --gradient-hover: linear-gradient(90deg, #9747ff -1.84%, #0e84e1 100%);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px rgba(14, 132, 225, 0.08);
  --shadow-hover: 0 30px 50px rgba(14, 132, 225, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* NEW - Eye-catching shadows */
  --shadow-glow: 0 0 30px rgba(14, 132, 225, 0.4),
    0 0 60px rgba(151, 71, 255, 0.2);
  --shadow-neon: 0 0 5px rgba(14, 132, 225, 0.55),
    0 0 20px rgba(14, 132, 225, 0.55), 0 0 40px rgba(151, 71, 255, 0.55);
  --shadow-3d: 0 30px 40px -20px rgba(14, 132, 225, 0.75),
    0 0 0 2px rgba(255, 255, 255, 0.8) inset,
    0 -5px 10px rgba(0, 0, 0, 0.1) inset;
  --shadow-layered: 0 10px 20px -10px rgba(14, 132, 225, 0.75),
    0 20px 30px -15px rgba(151, 71, 255, 0.4),
    0 30px 40px -20px rgba(14, 132, 225, 0.3);
  --shadow-double: 12px 12px 20px rgba(14, 132, 225, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.7);
  --shadow-long: 20px 25px 30px -15px rgba(9, 80, 133, 0.75);
  --shadow-soft-glow: 0 15px 35px rgba(14, 132, 225, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 40px 50px -20px rgba(14, 132, 225, 0.4),
    0 10px 20px -5px rgba(0, 0, 0, 0.1);
  --shadow-depth: 0 25px 40px -15px rgba(14, 132, 225, 0.6),
    0 10px 20px -8px rgba(151, 71, 255, 0.3);
  --shadow-spread: 0 20px 40px -10px rgba(14, 132, 225, 0.75),
    0 0 20px rgba(151, 71, 255, 0.2);
  --shadow-card: 0 25px 50px -15px rgba(14, 132, 225, 0.35),
    0 10px 25px -8px rgba(0, 0, 0, 0.1);
  --shadow-elevated: 0 50px 70px -30px rgba(14, 132, 225, 0.5),
    0 -5px 20px rgba(255, 255, 255, 0.3) inset;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nexiva-dark);
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 50px 0;
}

/* 1. Glowing Shadow - Perfect for CTAs and important elements */
.glow-example {
  box-shadow: var(--shadow-glow);
  transition: 0.3s;
}
.glow-example:hover {
  box-shadow: 0 0 40px rgba(14, 132, 225, 0.6), 0 0 80px rgba(151, 71, 255, 0.3);
}

/* 2. Neon Effect - Great for badges and highlights */
.neon-example {
  box-shadow: var(--shadow-neon);
  animation: neon-pulse 2s ease-in-out infinite;
}
@keyframes neon-pulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(14, 132, 225, 0.5),
      0 0 20px rgba(14, 132, 225, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(14, 132, 225, 0.8),
      0 0 40px rgba(151, 71, 255, 0.5);
  }
}

/* 3. 3D Depth Effect - For cards that need to pop */
.depth-example {
  box-shadow: var(--shadow-3d);
  transform: translateY(-2px);
}

/* 4. Layered Shadow - Multiple depth layers */
.layered-example {
  box-shadow: var(--shadow-layered);
  transition: 0.3s;
}
.layered-example:hover {
  box-shadow: var(--shadow-depth);
  transform: translateY(-5px);
}

/* 5. Double Shadow - Light and dark contrast */
.double-example {
  box-shadow: var(--shadow-double);
  background: white;
}

/* 6. Long Shadow - For dramatic effect */
.long-example {
  box-shadow: var(--shadow-long);
}

/* 7. Floating Effect - Element appears to float */
.float-example {
  box-shadow: var(--shadow-float);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-example:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-10px) scale(1.02);
}

/* ===== READY-TO-USE CLASSES ===== */

/* Card with premium shadow */
.premium-card {
  box-shadow: 0 30px 50px -25px rgba(14, 132, 225, 0.4),
    0 10px 20px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.premium-card:hover {
  box-shadow: 0 50px 70px -30px rgba(14, 132, 225, 0.6),
    0 20px 30px -15px rgba(0, 0, 0, 0.15);
}

/* CTA Button with glow */
.cta-glow {
  box-shadow: 0 10px 25px -8px rgba(14, 132, 225, 0.6),
    0 0 15px rgba(151, 71, 255, 0.3);
  transition: 0.3s;
}
.cta-glow:hover {
  box-shadow: 0 15px 35px -8px rgba(14, 132, 225, 0.8),
    0 0 30px rgba(151, 71, 255, 0.5);
  transform: scale(1.05);
}

/* Feature card with subtle depth */
.feature-depth {
  box-shadow: 0 20px 30px -15px rgba(14, 132, 225, 0.25),
    0 10px 15px -8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.feature-depth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.feature-depth:hover {
  box-shadow: 0 30px 40px -18px rgba(14, 132, 225, 0.4);
  transform: translateY(-3px);
}
.feature-depth:hover::after {
  opacity: 1;
}

/* Section badge with neon effect */
.badge-neon {
  box-shadow: 0 5px 15px rgba(14, 132, 225, 0.3),
    0 0 20px rgba(151, 71, 255, 0.2);
  animation: badge-pulse 3s infinite;
}
@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(14, 132, 225, 0.3),
      0 0 20px rgba(151, 71, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(14, 132, 225, 0.5),
      0 0 35px rgba(151, 71, 255, 0.4);
  }
}

/* Image with dramatic shadow */
.image-dramatic {
  box-shadow: 25px 25px 40px -20px rgba(14, 132, 225, 0.5),
    -20px -20px 30px -15px rgba(255, 255, 255, 0.7) inset;
  border-radius: 20px;
}

/* Floating element with gradient shadow */
.floating-element {
  box-shadow: 0 30px 40px -20px rgba(14, 132, 225, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 10px 10px rgba(14, 132, 225, 0.2));
}

/* ===== COMBINED SHADOW + ANIMATION ===== */
@keyframes float-shadow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-float);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 50px 60px -30px rgba(14, 132, 225, 0.6),
      0 15px 25px -12px rgba(0, 0, 0, 0.2);
  }
}

.float-animation {
  animation: float-shadow 4s ease-in-out infinite;
}

/* ===== APPLICATION TO YOUR SECTION ===== */

/* Apply to timezone cards */
.tz-feature-card {
  box-shadow: var(--shadow-card);
  transition: 0.3s;
}
.tz-feature-card:hover {
  box-shadow: var(--shadow-depth);
}

/* Apply to world clock container */
.world-clock-container {
  box-shadow: var(--shadow-layered);
}

/* Apply to CTA buttons */
.cta-btn.primary {
  box-shadow: 0 15px 30px -10px rgba(14, 132, 225, 0.5),
    0 0 20px rgba(151, 71, 255, 0.2);
}
.cta-btn.primary:hover {
  box-shadow: 0 20px 40px -10px rgba(14, 132, 225, 0.7),
    0 0 30px rgba(151, 71, 255, 0.4);
}

/* Apply to time cards */
.time-card {
  box-shadow: 0 20px 35px -15px rgba(14, 132, 225, 0.3),
    0 5px 12px -5px rgba(0, 0, 0, 0.1);
}
.time-card:hover {
  box-shadow: 0 30px 45px -18px rgba(14, 132, 225, 0.5),
    0 8px 20px -8px rgba(0, 0, 0, 0.15);
}

/* Apply to section badge */
.section-badge {
  box-shadow: 0 10px 20px -8px rgba(14, 132, 225, 0.3);
}

/* Quick stats with depth */
.quick-stats {
  box-shadow: var(--shadow-soft-glow);
}
/* ===== TYPOGRAPHY ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f242c;
  color: var(--nexiva-blue);
  padding: 10px 20px;
  border-radius: 10px 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--nexiva-dark);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--nexiva-gray);
  max-width: 700px;
}

.text-center {
  text-align: center;
}

.text-center .section-description {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid white;
  cursor: pointer;
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  /* background-color: white !important; */
  background: white !important;
  color: #0e84e1 !important;
  border: 1px solid #0e84e1;
}

.cta-btn.secondary {
  background: white;
  color: var(--nexiva-blue);
  border-color: var(--nexiva-blue);
}

.cta-btn.secondary:hover {
  background: var(--nexiva-blue);
  color: white;
  transform: translateY(-3px);
}

.cta-btn.large {
  padding: 18px 38px;
  font-size: 17px;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX (5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
}

.slide-down {
  animation: slideDown 1s ease-out forwards;
  opacity: 0;
}

.slide-left {
  animation: slideLeft 1s ease-out forwards;
  opacity: 0;
}

.slide-right {
  animation: slideRight 1s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

.delay-6 {
  animation-delay: 1.2s;
}

.delay-7 {
  animation-delay: 1.4s;
}

/* Scroll Reveal Classes */
.reveal-left,
.reveal-right,
.reveal-card {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  animation: slideLeft 0.8s ease-out forwards;
}

.reveal-right.active {
  opacity: 1;
  animation: slideRight 0.8s ease-out forwards;
}

.reveal-card.active {
  opacity: 1;
  animation: slideUp 0.8s ease-out forwards;
}

/* ===== HERO SECTION ===== */

/* ===== HERO SECTION WITH BACKGROUND IMAGE AND OVERLAY ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 150px 0 100px;
}

/* Background Image Layer */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/banner/home-3_banner-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark Overlay Layer - This is what you need! */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);

  z-index: 1;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Shapes above the overlay */
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 2;
}

.hero-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-primary);
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-hover);
  bottom: -150px;
  left: -150px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--nexiva-purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3; /* Content above everything */
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nexiva-blue);
}

.hero-badge i {
  font-size: 18px;
  color: var(--nexiva-purple);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--nexiva-light-bg);
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--nexiva-light-bg);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(125, 127, 133, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 14px;
  color: var(--nexiva-light-bg);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--nexiva-blue);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--nexiva-blue);
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: slideDown 1.5s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 12px;
  color: var(--nexiva-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: white;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-text {
  padding-right: 40px;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.trust-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--nexiva-dark);
  font-weight: 500;
}

.trust-feature-item i {
  color: var(--nexiva-blue);
  font-size: 20px;
}

.trust-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}
/* 
.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
} */

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;

  background: white;
  padding: 20px 30px;
  border-radius: 15px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(14, 132, 225, 0.1);

  display: flex;
  align-items: center;
  gap: 15px;

  animation: badgeFloat 4s ease-in-out infinite;
}

.image-badge i {
  font-size: 32px;
  color: var(--nexiva-blue);
}

.image-badge span {
  font-size: 18px;
  font-weight: 700;
  color: var(--nexiva-dark);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-18px);
    box-shadow: 0 35px 70px rgba(14, 132, 225, 0.25);
  }
}

/* ===== WHY INDIA SECTION ===== */
.why-india-section {
  background: var(--nexiva-light-bg);
}

.section-header {
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
  border-color: var(--nexiva-blue);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: rotateY(360deg);
}

.benefit-icon i {
  font-size: 36px;
  color: white;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--nexiva-dark);
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nexiva-gray);
}

/* ===== WHY NEXIVA SECTION ===== */
.why-nexiva-section {
  background: white;
}

.why-nexiva-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-collage {
  position: relative;
  height: 600px;
}

.collage-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.collage-img:hover {
  transform: scale(1.05) rotate(2deg);
  z-index: 2;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img.img-1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 1;
}

.collage-img.img-2 {
  width: 250px;
  height: 300px;
  top: 100px;
  right: 0;
}

.collage-img.img-3 {
  width: 220px;
  height: 280px;
  bottom: 0;
  left: 100px;
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #adb2d5a3;
  padding: 20px 25px;
  border-radius: 35px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.floating-badge i {
  font-size: 28px;
  color: var(--nexiva-purple);
}

.floating-badge span {
  font-size: 16px;
  font-weight: 700;
  color: var(--nexiva-dark);
}

.why-nexiva-text {
  padding-left: 40px;
}

.nexiva-highlights {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.highlight-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nexiva-dark);
  margin-bottom: 8px;
}

.highlight-content p {
  font-size: 16px;
  color: var(--nexiva-gray);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--nexiva-light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  padding: 35px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-neon);
  border-color: var(--nexiva-blue);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-hover);
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nexiva-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nexiva-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nexiva-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  /* background: white; */
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.industry-item {
  background: var(--nexiva-light-bg);
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition);
  border: 2px solid rgb(14 132 225 / 51%);
  text-align: center;
}

.industry-item:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: var(--shadow-layered);
  border-color: var(--nexiva-purple);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-item:hover .industry-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.industry-icon i {
  font-size: 36px;
  color: var(--nexiva-blue);
  transition: var(--transition);
}

.industry-item:hover .industry-icon i {
  color: white;
}

.industry-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nexiva-dark);
  margin-bottom: 15px;
}

.industry-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nexiva-gray);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--nexiva-light-bg);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--nexiva-blue),
    var(--nexiva-purple)
  );
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border: 4px solid var(--nexiva-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--nexiva-blue);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.step-content {
  flex: 1;
  background: white;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid #1f242c;
}

.process-step:nth-child(odd) .step-content {
  margin-right: auto;
  max-width: calc(50% - 30px);
}

.process-step:nth-child(even) .step-content {
  margin-left: auto;
  max-width: calc(50% - 30px);
}

.step-content:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-spread);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon i {
  font-size: 28px;
  color: white;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nexiva-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--nexiva-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--nexiva-light-bg);
  padding: 80px 0;
}

.cta-card {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 60px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.cta-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .cta-btn.primary {
  background: white;
  color: var(--nexiva-blue);
}

.cta-buttons .cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.cta-buttons .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
  backdrop-filter: blur(10px);
}

.cta-buttons .cta-btn.secondary:hover {
  background: white;
  color: var(--nexiva-blue);
}

/* ===== FOOTER ===== */
.seo-footer {
  background: var(--nexiva-dark);
  padding: 60px 0 30px;
  color: white;
}

.footer-seo-text {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.footer-seo-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-seo-text strong {
  color: white;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .section-title {
    font-size: 36px;
  }

  .hero-title {
    font-size: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 42px;
  }

  .trust-content,
  .why-nexiva-content,
  .timezone-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trust-text,
  .why-nexiva-text {
    padding: 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .step-number {
    left: 30px;
    transform: none;
  }

  .step-content {
    max-width: 100% !important;
    margin: 0 !important;
  }

  .process-step:nth-child(even) .step-content,
  .process-step:nth-child(odd) .step-content {
    max-width: 100% !important;
  }

  .image-collage {
    height: 400px;
  }

  .collage-img.img-1 {
    width: 220px;
    height: 280px;
  }

  .collage-img.img-2 {
    width: 200px;
    height: 240px;
  }

  .collage-img.img-3 {
    width: 180px;
    height: 220px;
  }

  .globe {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .hero-section {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-buttons .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding-left: 60px;
    margin-bottom: 50px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    left: 15px;
  }

  .step-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon i {
    font-size: 24px;
  }

  .cta-card {
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .globe {
    width: 250px;
    height: 250px;
  }

  .timezone-marker {
    font-size: 12px;
    padding: 8px 12px;
  }

  .timezone-marker.usa {
    left: -30px;
  }

  .timezone-marker.india {
    right: -30px;
  }

  .image-collage {
    height: 300px;
  }

  .collage-img.img-1 {
    width: 160px;
    height: 200px;
  }

  .collage-img.img-2 {
    width: 140px;
    height: 180px;
    top: 50px;
  }

  .collage-img.img-3 {
    width: 130px;
    height: 160px;
    left: 60px;
  }

  .floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 18px;
  }

  .floating-badge i {
    font-size: 22px;
  }

  .floating-badge span {
    font-size: 14px;
  }

  .nexiva-highlights {
    gap: 25px;
  }

  .highlight-number {
    font-size: 36px;
  }

  .highlight-content h4 {
    font-size: 18px;
  }

  .scroll-indicator {
    display: none;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .benefit-icon,
  .industry-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i,
  .industry-icon i {
    font-size: 28px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    left: 5px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .process-step {
    padding-left: 50px;
  }
}

/*  */
/* ===== FINAL CTA SECTION WITH ANIMATIONS ===== */
.final-cta-section {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 60px 0;
  margin-bottom: 30px;
  background: url("/assets/img/image.png") center/cover no-repeat;
}

/* Dark overlay for contrast */
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.final-cta-section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.final-cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

/* Paragraph */
.final-cta-section .cta-content {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons Container */
.final-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.final-cta-section .btn-primary {
  background: #0e84e1;
  border: none;
  color: white !important;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.final-cta-section .btn-primary:hover {
  background: var(--gradient-primary);
  border: 2px solid white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 132, 225, 0.5);
}

/* Secondary Button */
.final-cta-section .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.final-cta-section .btn-secondary:hover {
  background: white;
  color: #0e84e1;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .final-cta-section {
    padding: 90px 0;
  }

  .final-cta-section h2 {
    font-size: 32px;
  }

  .final-cta-section .cta-content {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-section h2 {
    font-size: 24px;
  }

  .final-cta-section .cta-buttons {
    flex-direction: column;
  }

  .final-cta-section .btn-primary,
  .final-cta-section .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*  */
/* ===== EYE-CATCHING TIMEZONE SECTION ===== */
.timezone-section {
  position: relative;
  background: #0f1115;
  color: white;
  overflow: hidden;
  margin-bottom: 20px;
}

.timezone-header .section-title {
  color: white;
}

.timezone-header .section-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Glow Line Area */
.timezone-visual-area {
  margin-top: 80px;
  position: relative;
}

.connection-wrapper {
  position: relative;
  /* height: 200px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 80px;
}

.node {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  box-shadow: 0 0 40px rgba(14, 132, 225, 0.6);
  animation: pulse 3s ease-in-out infinite;
}

.node span {
  position: relative;
  z-index: 2;
}

.glow-line {
  position: absolute;
  left: 15%;
  right: 15%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 10px;
  animation: flow 3s linear infinite;
  box-shadow: 0 0 20px rgba(151, 71, 255, 0.8);
}

/* Flow Animation */
@keyframes flow {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* Feature Cards */
.timezone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tz-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tz-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(14, 132, 225, 0.3);
}

.tz-card i {
  font-size: 36px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tz-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tz-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 991px) {
  .timezone-cards {
    grid-template-columns: 1fr;
  }

  .connection-wrapper {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .glow-line {
    display: none;
  }
}

/*  */
/* ===== PREMIUM INTERNATIONAL-STANDARD FORM ===== */
.hero-form-wrapper {
  position: relative;
  perspective: 1000px;
}

.enquiry-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  padding: 20px 45px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border: 3.5px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.enquiry-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  z-index: 1;
}

.enquiry-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(14, 132, 225, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Decorative Glowing Orbs */
.form-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.form-glow-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0e84e1, #9747ff);
  top: -200px;
  right: -150px;
}

.form-glow-orb.orb-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #9747ff, #0e84e1);
  bottom: -150px;
  left: -100px;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  33% {
    transform: translate(40px, -40px) scale(1.1);
    opacity: 0.25;
  }
  66% {
    transform: translate(-30px, 30px) scale(0.95);
    opacity: 0.18;
  }
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.form-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0e84e1 0%, #9747ff 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 20px 40px rgba(14, 132, 225, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.form-icon-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.form-icon-badge i {
  font-size: 36px;
  color: white;
  position: relative;
  z-index: 1;
}

.form-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.form-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.5;
}

/* Form Structure */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-label i {
  font-size: 14px;
  color: #60a5fa;
}

/* Premium Input Styling */
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-size: 15px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.form-input:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #0e84e1;
  box-shadow: 0 0 0 4px rgba(14, 132, 225, 0.15),
    0 8px 24px rgba(14, 132, 225, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Select Dropdown Styling */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='rgba(255,255,255,0.8)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  padding-right: 50px;
}

.form-select option {
  background: #1f2937;
  color: white;
  padding: 14px;
  font-weight: 500;
}

/* Textarea Styling */
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  font-family: inherit;
}

/* Premium Submit Button */
.form-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0e84e1 0%, #9747ff 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14, 132, 225, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #9747ff 0%, #0e84e1 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.form-submit-btn:hover::before {
  opacity: 1;
}

.form-submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(14, 132, 225, 0.6), 0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-submit-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Button Shine Effect */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.form-submit-btn:hover .btn-shine {
  left: 100%;
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.form-footer i {
  color: #34d399;
  font-size: 15px;
}

/* Loading State */
.form-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit-btn.loading .btn-icon i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Success State */
.enquiry-form.success .form-submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Responsive Design */
@media (max-width: 991px) {
  .enquiry-form-card {
    padding: 45px 40px;
  }

  .form-header h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .enquiry-form-card {
    padding: 40px 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-header h3 {
    font-size: 26px;
  }

  .form-icon-badge {
    width: 70px;
    height: 70px;
  }

  .form-icon-badge i {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .enquiry-form-card {
    padding: 35px 28px;
  }

  .form-input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .form-submit-btn {
    padding: 16px 32px;
    font-size: 15px;
  }

  .form-header h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text slightly wider */
  align-items: center;
  gap: 80px;
}
.hero-section {
  min-height: auto;
  padding: 90px 0 120px;
}
.hero-form-wrapper {
  position: relative;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 5;
}

/* When user has typed something */
.form-input:not(:placeholder-shown) {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Keep placeholder light */
.form-input:not(:placeholder-shown)::placeholder {
  color: #999;
}

/* responsive  */
@media (max-width: 767px) {
  .hero-section {
    padding: 70px 0 80px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .hero-form-wrapper {
    width: 100%;
  }

  .enquiry-form-card {
    padding: 35px 25px;
    border-radius: 24px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-section {
    padding: 60px 0 70px;
  }

  .enquiry-form-card {
    padding: 28px 20px;
  }
}

/*  */

/*  */
#glow-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(14, 132, 225, 0.25) 0%,
    rgba(151, 71, 255, 0.25) 40%,
    transparent 70%
  );
  transition: opacity 0.3s ease;
  z-index: 9999;
  will-change: transform;
}

/* Small sharp dot in the center */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(14, 132, 225, 0.9);
  box-shadow: 0 0 8px rgba(14, 132, 225, 0.8), 0 0 16px rgba(151, 71, 255, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: transform 0.1s ease, opacity 0.3s ease;
  will-change: transform;
}

/* 
 */
