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

html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth !important;
}
/* Hero section base */
.hero-section {
  width: 100%;
  background: linear-gradient(120deg, #0d1012, #020617, #052e3b, #0d1012);
  background-size: 300% 300%;
  animation: gradientMove 1s ease infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Circles - Improved for exact centering */
.circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.25);
  filter: blur(30px);
  pointer-events: none;
  /* Ye lines circles ko center anchor par lock karti hain */
  top: 50%;
  left: 50%;
  margin: 0;
}

/* Updated Animation Logic */
@keyframes orbitMerge {
  0% {
    /* Translate(-50%, -50%) hamesha center me rakhta hai */
    transform: translate(-50%, -50%) rotate(var(--start-rot))
      translateX(var(--dist)) rotate(calc(-1 * var(--start-rot)));
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--end-rot)) translateX(0)
      rotate(calc(-1 * var(--end-rot))) scale(1.6);
    opacity: 0.8;
  }
}

/* Resolution based distance for 1920px */
.c-top {
  --start-rot: 0deg;
  --end-rot: 360deg;
  --dist: 25vw; /* Desktop par sahi doori */
  animation: orbitMerge 10s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.c-left {
  --start-rot: 120deg;
  --end-rot: 480deg;
  --dist: 25vw;
  animation: orbitMerge 13s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -1s;
}

.c-right {
  --start-rot: 240deg;
  --end-rot: 600deg;
  --dist: 25vw;
  animation: orbitMerge 11s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -2s;
}

/* Content layer */
.content-2 {
  z-index: 10;
  color: white;
  text-align: center;
}
.content-2 h1 {
  font-size: 4.5rem !important;
  font-weight: 700 !important;
}
/* Hero section end  */
.sphere-container {
  position: absolute;
  top: 50%; /* Vertical Center */
  left: 50%; /* Horizontal Center */
  transform: translate(-50%, -50%); /* Exact Center Point */
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mesh-glow {
  position: absolute;
  width: 300px; /* Mobile base size */
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  /* Isse circle apne khud ke center se rotate honge */
  transform-origin: center center;
}
.btn-secondary {
  padding: 8px 30px!important;
  border-top: 3px solid #82B8DC!important;
  border-radius: 10px!important;
  background-color: #0069C8!important;
  font-size: 16px!important;
}
.btn-explore {
  padding: 8px 30px!important;
  border: 2px solid #fff!important;
  border-radius: 10px!important;
  font-size: 16px!important;
  color: #fff!important;
}
.btn-explore:hover {
  background-color: #fff!important;
  color: #121111!important;
}
.sphere-1 {
  top: -100px;
  left: -100px;
  animation: move-1 15s infinite alternate;
}

.sphere-2 {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 255, 255, 0.3);
  animation: move-2 18s infinite alternate;
}

.sphere-3 {
  top: -100px;
  right: -100px;
  background-color: rgba(128, 0, 255, 0.3);
  animation: move-3 16s infinite alternate;
}

@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 60px);
  }
}

@keyframes move-2 {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 80px);
  }
}

@keyframes move-3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, 70px);
  }
}
/* index section */

/* Animated gradient background */
.animated-bg {
  background: linear-gradient(120deg, #0d1012, #020617, #052e3b, #0d1012);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  position: relative;
  bottom: 85px;
}

/* The Blue Contact Button */
.contact-btn {
  /* background: linear-gradient(180deg, #0081db 0%, #005fa3 100%); */
  background: var(--color-primary-bg);
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Soft glow overlay */
.glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(56, 189, 248, 0.15),
    transparent 40%
  );
  animation: glowMove 4s ease-in-out infinite alternate;
}

@keyframes glowMove {
  from {
    transform: translateX(-5%);
  }
  to {
    transform: translateX(5%);
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.animate-scroll-about {
  animation: scrollUp 8s linear infinite;
}

.paused {
  animation-play-state: paused;
}

/* The Mask: Creates the fade effect at top and bottom */
.mask-vignette {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}
/* keyframes को -50% पर सेट करें ताकि दूसरा वाला हिस्सा तुरंत सामने आ जाए */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  /* Gap को ध्यान में रखते हुए 50% पर रुकना */
  100% {
    transform: translateY(calc(-50% - 2.5rem));
  }
}

.animate-scroll {
  animation: scrollUp 15s linear infinite;
}

.mask-vignette {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}
.counter {
  font-size: 54px!important;
  font-family: lora;
}
#main-bg {
  position: relative;
  margin-top: 80px !important;
  padding: 70px 0 !important;
}

/* Base style for the sliding layers */
.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -2;
}

/* Scale effects */
.scale-out {
  transform: scale(2.9);
  opacity: 100%;
}

.scale-in {
  transform: scale(1);
  opacity: 1;
}

/* Hero text animation improvements */
#content-box {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.content-hidden {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}
:root {
  --card-width: 350px; /* Desktop default */
}

.projects-section {
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}
.header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}
.header h2 {
  font-size: 38px;
  font-weight: 700 !important;
  margin-bottom: 10px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 80px 0;
}

.slider-wrapper {
  display: flex;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-2 {
  flex: 0 0 var(--card-width);
  padding: 0 15px;
  box-sizing: border-box;
}

/* Zig-Zag Effect */
.slide-2:nth-child(odd) .card {
  margin-top: 0;
}
.slide-2:nth-child(even) .card {
  margin-top: 70px;
}

.card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -40px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background: #007bff;
  transform: scale(1.2);
}

/* CTA Container */
.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 20px;
  position: relative;
  background: white;
  border-radius: 20px;

  /* 1. Transparent border area */
  border: 2px solid transparent;

  /* 2. Double background: Inner white and Outer Gradient */
  background-image: linear-gradient(white, white),
    linear-gradient(90deg, #0069c8, #82b8dc, #0069c8);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* 3. Shine Animation Apply */
  animation: borderGlow 3s ease-in-out infinite;

  /* Layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Bright & Dim (Blink) Animation */
@keyframes borderGlow {
  0%,
  100% {
    filter: brightness(100%) drop-shadow(0 0 2px rgba(0, 105, 200, 0.2));
  }
  50% {
    filter: brightness(150%) drop-shadow(0 0 10px rgba(0, 105, 200, 0.6));
  }
}

.cta-text {
  color: #33395d;
  font-size: 1.5rem;
  font-weight: 600;
}
#dotsContainer {
  display: none !important;
}

/* The Button */
.cta-button {
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  background-color: #0052a3;
  transform: scale(1.05);
}

/* Phone Image Positioning */
.phone-wrapper {
  position: absolute;
  right: -20px;
  top: 0; /* Pulls image above the border */
  width: 100px;
}

.phone-img {
  width: 100%;
  height: auto;
  /* Apply the vibration animation */
  animation: vibrate 0.4s linear infinite;
}

/* Vibration Animation */
@keyframes vibrate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  75% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.main-container {
  width: 100%;
  min-height: 100vh;
  background-color: #0d1012; /* Exact dark base */
  padding: 120px 0 !important;

  /* Dual glow layers jo move hongi */
  background-image: radial-gradient(
      circle at 80% 20%,
      rgba(7, 162, 187, 0.25) 0%,
      rgba(13, 16, 18, 0) 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(7, 162, 187, 0.15) 0%,
      rgba(13, 16, 18, 0) 50%
    );

  background-size: 150% 150%; /* Animation movement ke liye thoda space */

  /* Animation: Name | Duration | Timing-Function | Iteration | Direction */
  animation: infiniteShine 4s ease-in-out infinite alternate;
  margin-top: 80px !important;
}

@keyframes infiniteShine {
  0% {
    background-position: 0% 0%;
    filter: brightness(0.8) saturate(1);
  }
  50% {
    /* Brightness badhegi lekin contrast bhi rahega taaki grey na dikhe */
    background-position: 50% 50%;
    filter: brightness(1.2) saturate(1.5) contrast(1.1);
  }
  100% {
    background-position: 100% 100%;
    filter: brightness(0.8) saturate(1);
  }
}
.btn-talk {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

:root {
  --vibe-speed: 30s;
  --vibe-bg: #ffffff;
}

.vibe-tech-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: var(--vibe-bg);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* The Pulsing Glow in the center */
.vibe-glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.25) 0%,
    rgba(0, 212, 255, 0) 70%
  );
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: vibePulse 4s ease-in-out infinite;
}

@keyframes vibePulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.vibe-container {
  width: 100%;
  max-width: 1400px;
  z-index: 2;
  position: relative;
}

.vibe-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 120px!important;
}

.vibe-header h2 {
  font-size: 38px !important;
  font-weight: 700;
  color: #111;
}

.vibe-header p {
  color: #666;
  font-size: 18px !important;
}

/* Side fades */
.vibe-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.vibe-row {
  width: 100%;
  overflow: hidden;
}

.vibe-track {
  display: flex;
  width: max-content;
  animation: vibeScroll var(--vibe-speed) linear infinite;
}

/* Direction reversal */
.vibe-row[data-vibe-direction="rtl"] .vibe-track {
  animation-direction: reverse;
}

.vibe-item {
  background: white;
  padding: 15px 30px;
  margin: 0 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.vibe-item img {
  height: 35px;
  width: auto;
}

.vibe-item span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

.slider-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 !important;
  background: #fff !important;
}

.slider-container {
  display: flex;
  gap: 15px;
  width: 100%;
  /* max-width: 1200px; */
  width: 100%;
  height: 860px;
  padding: 0 20px !important;
}

.slide {
  position: relative;
  flex: 0.6;
  border-radius: 10.67px 10.67px 0 0;

  /* FIX: Ensure these 4 lines are exactly like this */
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-color: #333; /* Backup color agar image load na ho */
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
/* 1. Default State: Jab container par hover NA HO, tab 3rd slide badi rahegi */
.slider-container:not(:hover) .slide.default-active {
  flex: 5;
}

/* 2. Hover State: Jab kisi slide par hover ho, wo expand hogi */
.slider-container .slide:hover {
  flex: 5;
}

/* 3. Logic: Jab container par hover ho, toh default wali shrink ho jaye */
.slider-container:hover .slide.default-active:not(:hover) {
  flex: 0.7;
}

/* Jab slide active ho toh wo zyada space legi */
.slide.active {
  flex: 4;
}

/* Dark overlay for text readability */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.slide.active::after {
  opacity: 1;
}
.slide:hover::after,
.slider-container:not(:hover) .slide.default-active::after {
  opacity: 1;
}
.content {
  position: absolute;
  bottom: 90px;
  left: 30px;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  white-space: nowrap;
}
.content-p {
  position: absolute;
  bottom: 50px;
  left: 30px;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  white-space: nowrap;
}
.slide:hover .content,
.slider-container:not(:hover) .slide.default-active .content {
  opacity: 1;
  transform: translateY(0);
}
.slide:hover .content-p,
.slider-container:not(:hover) .slide.default-active .content {
  opacity: 1;
  transform: translateY(1);
}
.slide:hover .paragraph,
.slider-container:not(:hover) .slide.default-active .content {
  opacity: 1;
  transform: translateY(0);
}
.slide.active .content-p {
  opacity: 1;
  transform: translateY(-1);
}

.slide.active .content {
  opacity: 1;
  transform: translateY(0);
}

.label {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.paragraph {
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.count {
  font-size: 14px;
  opacity: 0.8;
}

/* Progress Bar Styles */
.progress-wrapper {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #eee;
  overflow: hidden;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: #2dd4bf; /* Teal color from video */
  transition: width 0.2s ease-out;
}
.step-title {
  color: #222222!important;
}
.step-desc {
  color: #575757;
  font-size: 16px!important;
}

/* Card Animation Logic */
.step-card {
  overflow: hidden; /* Clips the child so it looks like it slides in */
}

.card-content {
  opacity: 0;
  transform: translateY(100px); /* Starts much lower */
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.is-active .card-content {
  opacity: 1;
  transform: translateY(0); /* Slides up to position */
}

.step-number {
  font-size: 6rem;
  font-weight: 800;
  color: #f1f1f1;
  display: block;
  transition: color 0.5s ease;
}

.step-card.is-active .step-number {
  color: #e2e2e2; /* Darkens slightly when active */
}

/* Sticky Container setup */
.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:root {
  --accent-teal: #008080;
  --smooth-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-container {
  height: 400vh; /* Keeps height for desktop scroll effect */
  position: relative;
  background: #fff;
}

.sticky-box {
  position: sticky;
  top: 0;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
  margin-top: 120px!important;
}

.header-title {
  font-size: clamp(1.8rem, 5vw, 38px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.text-subtitle {
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 30px;
}

/* Progress Bar - Centered and Responsive */
.progress-line-track {
  width: 80%;
  height: 3px;
  background: #f2f2f2;
  margin: 20px 0 40px 0;
  position: relative;
  border-radius: 10px;
}

.progress-line-fill {
  width: 0%;
  height: 100%;
  background: #121111;
  border-radius: 10px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.step-inner {
  opacity: 0.1;
  transform: translateY(50px);
  transition: all 1s var(--smooth-ease);
}

.step-mask.is-active .step-inner {
  opacity: 1;
  transform: translateY(0);
}

.big-number {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  color: transparent !important;
  -webkit-text-stroke: 2px #121111 !important;
}

.v-feedback-section {
  padding: 60px 20px;
  overflow: hidden;
}

.v-container {
  max-width: 1200px;
  margin: 40px auto !important;
}

.v-header-content {
  text-align: center;
  margin-bottom: 50px;
}

.v-header-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #121111 !important;
  margin-bottom: 10px;
  font-weight: 700 !important;
}

.v-header-content p {
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px !important;
}

/* The Viewport that hides the overflow */
.v-testimonial-viewport {
  height: 600px; /* Fixed height for the section */
  overflow: hidden;
  position: relative;
  /* Soft fade at top and bottom */
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.v-testimonial-track {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.v-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 33.33%;
}

/* Offset middle column for visual interest */
.v-offset-col {
  margin-top: 40px;
}

.v-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

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

.v-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.v-user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.v-user-info h4 {
  margin: 0;
  font-size: 1rem;
}

.v-user-info span {
  font-size: 0.8rem;
  color: #999;
}

.v-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-sub);
  margin: 0;
}

:root {
  --accent-blue: #0071e3; /* Apple/Lenis style blue */
  --text-main: #1d1d1f;
  --text-sub: #86868b;
}
.support-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
}

.banner-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 0 auto!important;
}

/* Text Styling */
.expert-title {
  font-size: 56px;
  font-weight: 700;
  color: #121111 !important;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.expert-subtitle {
  font-size: 21px;
  color: var(--text-sub);
  font-weight: 400;
}

/* Button Styling (Same to Same) */
.primary-glow-btn {
  background-color: #0069C8!important;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  /* The Glow from the image */
  /* box-shadow: 0 15px 45px rgba(0, 113, 227, 0.35); */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 113, 227, 0.5);
  background-color: #0077ed;
}

.button {
  padding: 5px;
  border: 1px solid #fff !important;
  border-radius: 100%;
  text-align: center;
}
.arrow-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.primary-glow-btn:hover .arrow-icon {
  transform: translateX(4px);
}

:root {
  --primary-blue: #00d2ff;
  --bg-dark: #0a0e14;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-gray: #a0a0a0;
  --item-height: 180px; /* Fixed height per item */
}
.header-section {
  text-align: center;
  margin-bottom: 60px;
}

.header-section h1 {
  font-size: 38px;
  font-weight: 600;
}

.header-section span {
  color: var(--text-gray);
}

.content-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Sidebar Navigation */
.side-menu {
  flex: 1;
  max-width: 300px;
}

.side-menu ul {
  list-style: none;
}

.side-menu li {
  padding: 15px 0;
  color: #B8B6B6!important;
  cursor: pointer;
  font-size: 20px!important;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-menu li.active {
  color: #fff!important;
  font-weight: bold;
  padding-left: 10px;
}

/* Right Content Display */
.content-display {
  flex: 2;
  height: calc(var(--item-height) * 5 + 40px); /* Height for exactly 5 items */
  overflow-y: auto;
  background: transparent;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  /* Custom Hidden Scrollbar but still scrollable */
  scrollbar-width: none; /* Firefox */
}

.content-display::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.service-card {
  height: var(--item-height);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h3 {
  color: #fff!important;
  margin-bottom: 8px;
  font-size: 22px!important;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* contact section popup modal start */
:root {
  --primary-blue: #0071c5;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --border-color: #e0e0e0;
  --bg-dark: #050a12; /* Matching the image background */
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px; /* Essential for mobile spacing */
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Card */
.modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-card h2 {
  font-size: 30px!important;
  font-weight: 800!important;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.subtitle {
  color: #121111!important;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Form Styling */
.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #002d5b;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

input,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

input:focus,
textarea:focus {
  border-color: var(--primary-blue);
}

.icon {
  position: absolute;
  right: 15px;
  opacity: 0.4;
}
.icon img {
  width: 30px !important;
  height: 30px !important;
}

textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  background: var(--primary-blue);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  border-top: 5px solid #82B8DC!important;
}

.submit-btn:hover {
  background: #005fa3;
}
/* contact section popup modal end */

