/* ==========================================================================
   1. GLOBAL SETTINGS & BACKGROUND GLOWS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-turquoise: #2dd4cf;
  --color-blue: #38bdf8;
  --color-purple: #8b5cf6;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #07111F; /* Deep dark background */
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Optimized Background Glows */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

body::before {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: rgba(56, 189, 248, 0.18); /* Cyan glow */
  animation-name: floatGlowTop;
  animation-duration: 12s;
}

body::after {
  width: 450px;
  height: 450px;
  bottom: -150px;
  right: -100px;
  background: rgba(14, 165, 233, 0.15); /* Blue glow */
  animation-name: floatGlowBottom;
  animation-duration: 15s;
}

@keyframes floatGlowTop {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, 80px) scale(1.1); }
}

@keyframes floatGlowBottom {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, -70px) scale(1.1); }
}

/* ==========================================================================
   2. PAGE LOADER
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #07111f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: hideLoader 1s ease 1.5s forwards;
}

.loader-logo {
  animation: pulseLogo 1s infinite alternate;
}

.loader-logo img {
  width: 180px;
  height: auto;
}

@keyframes pulseLogo {
  from {
    transform: scale(1);
    opacity: 0.6;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes hideLoader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ==========================================================================
   3. NAVIGATION BAR & PREMIUM SERVICES DROPDOWN
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar {
  width: 90%;
  margin: 20px auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo a {
  text-decoration: none;
  color: #ffffff;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.logo span {
  color: #38bdf8;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #38bdf8;
}

.nav-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.menu-btn {
  display: none;
  font-size: 28px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Header Dropdown Menu */
.nav-links li.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.8;
}

.nav-links li.dropdown:hover .dropdown-trigger .arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: rgba(13, 18, 30, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7),
              0 0 20px rgba(56, 189, 248, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
  z-index: 2000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: #38bdf8;
  transform: translateX(4px);
}

.item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}

.dropdown-item:hover .item-text strong {
  color: #38bdf8;
}

.item-text p {
  font-size: 0.76rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

/* ==========================================================================
   4. BUTTONS, TAGS & SHARED GLASS CARDS
   ========================================================================== */
.hero-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
  position: relative;
}

/* Accent dot before tag text */
.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: #ffffff;
  border: 1px solid transparent;
}

.secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.secondary-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #38bdf8;
  color: #38bdf8;
}

/* Glass Component Base (Includes .contact-form for single outer card border) */
.glass-box,
.service-card,
.why-card,
.cta,
.about-glass,
.value-card,
.solution-card,
.project-card,
.career-card,
.job-card,
.tech-card,
.process-card,
.testimonial-card,
.stat-card,
.faq-item,
.dashboard-card,
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
}

/* ==========================================================================
   5. HERO SECTION & 3D ANIMATED SHAPE
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns:1.3fr .7fr;
  align-items: center;
  gap: 80px;
  padding: 150px 7% 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 31, 0.90) 0%,
    rgba(7, 17, 31, 0.75) 45%,
    rgba(7, 17, 31, 0.82) 100%
  );
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  animation: heroGlowFloat 8s ease-in-out infinite alternate;
}

.hero::before {
  background: var(--color-turquoise);
  top: -100px;
  left: 10%;
}

.hero::after {
  background: var(--color-purple);
  bottom: -150px;
  right: 5%;
  animation-delay: 2s;
}

@keyframes heroGlowFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-30px) scale(1.1); }
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:820px;

    animation: heroFadeUp 1s ease both;

}

.hero-dashboard {
  animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1{

    font-size:clamp(40px,4vw,58px);

    line-height:1.08;

    letter-spacing:-1.5px;

    font-weight:800;

    max-width:760px;

    margin:20px 0;

}

.gradient-word{

    background: linear-gradient(135deg, var(--color-turquoise), var(--color-blue), var(--color-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text{

    max-width:650px;

    font-size:18px;

    line-height:1.8;

    color:#CBD5E1;

    margin-bottom:40px;

}

.hero-card {
  position: relative;
  width: 380px;
  justify-self: end;
}

.glass-box {
  padding: 40px;
  margin-bottom: 30px;
  transition: border-color 0.3s ease;
}

.glass-box:hover {
  border-color: rgba(56, 189, 248, 0.4);
}

.glass-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

.glass-box p {
  color: #CBD5E1;
  line-height: 1.6;
}

.glass-box.small {
  transform: translateX(50px);
}

/* 3D Liquid Shape */
.stage {
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin: 0 auto;
}

.liquid-shape {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, 
      rgba(56, 189, 248, 0.6) 0%, 
      rgba(56, 189, 248, 0.1) 60%,
      rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(56, 189, 248, 0.3),
              inset 0 0 30px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: revolve3D 15s infinite ease-in-out;
}

.shape-inner {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 30px;
  right: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(25px);
  transform: translateZ(50px);
}

@keyframes revolve3D {
  0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-15px) rotateX(10deg) rotateY(180deg); }
  50% { transform: translateY(0px) rotateX(0deg) rotateY(360deg); }
  75% { transform: translateY(15px) rotateX(-10deg) rotateY(540deg); }
  100% { transform: translateY(0px) rotateX(0deg) rotateY(720deg); }
}

/* Inner Page Hero Header */
.page-hero {
  min-height: 60vh;
  padding: 180px 8% 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 750px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

/* Hero Dashboard Elements */
.hero-dashboard {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.floating-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  z-index: 5;
}

.floating-badge strong {
  font-size: 20px;
  color: #38bdf8;
}

.floating-badge span {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.mini-avatars {
  display: flex;
}

.mini-avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #07111f;
  margin-left: -8px;
}

.mini-avatars img:first-child {
  margin-left: 0;
}

.badge-top {
  top: -20px;
  left: -30px;
}

.badge-bottom {
  bottom: -20px;
  right: -30px;
}

.hero-photo {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: photoGlowPulse 4s ease-in-out infinite;
}

@keyframes photoGlowPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,.35); }
  50% { box-shadow: 0 20px 70px rgba(139, 92, 246, 0.35); }
}

.badge-top {
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-bottom {
  animation: badgeFloat 3s ease-in-out infinite 1.5s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #38BDF8;
  font-size: 14px;
  margin-bottom: 25px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 15px #22C55E;
}

.dashboard-card h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.progress-item {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg,#38BDF8,#60A5FA);
  border-radius: 50px;
}

.small-card h4 {
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.25);
  color: #E2E8F0;
  font-size: 14px;
}

/* ==========================================================================
   6. SERVICES & INNER SERVICE PAGES
   ========================================================================== */
/* ==========================================================================
   6. SERVICES & INNER SERVICE PAGES
   ========================================================================== */

.services-preview {
  padding: 60px 8% 80px; /* Added extra bottom padding to prevent chat widget overlap */
  text-align: center;
}

/* --- Section Header & Tag Fixes --- */

.services-preview .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 auto 16px auto;
}

/* Cyan accent dot before tag */
.services-preview .section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.services-preview h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px auto;
  
  /* Gradient text fill */
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 70%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  filter: drop-shadow(0 4px 15px rgba(56, 189, 248, 0.12));
}

/* --- Row & Layout Controls --- */

.services-row {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-top: 40px;
}

.services-row .service-grid {
  flex: 1;
}

.explore-all-btn {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 24px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.explore-all-btn .arrow {
  font-size: 22px;
  color: var(--color-purple);
  transition: transform 0.3s ease;
}

.explore-all-btn:hover {
  transform: translateY(-6px);
  border-color: var(--color-purple);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.explore-all-btn:hover .arrow {
  transform: translateX(6px);
}

/* --- Service Card Styles --- */

.service-card .project-image {
  height: 200px;
  margin: -40px -40px 20px -40px;
  position: relative;
  overflow: hidden; /* Keeps image scale zoom within rounded corners */
  border-radius: 20px 20px 0 0;
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 212, 191, 0.4);
  z-index: 2;
}

.service-number {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  color: var(--color-turquoise);
  border: 1px solid rgba(45, 212, 191, 0.4);
  z-index: 2;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: var(--color-turquoise);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.learn-more:hover {
  color: var(--color-purple);
  transform: translateX(4px);
}

.service-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .project-image img {
  transform: scale(1.08);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
  }

  .explore-all-btn {
    width: 100%;
  }
}

/* 2. Bold, Gradient-Filled Section Headings */
.services-preview h2,
.why h2,
.cta h2,
.trust-section h2,
.process-section h2,
.testimonials h2,
.technology-marquee h2,
.faq-section h2,
.jobs h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  
  /* Vibrant Cyan-to-Purple Gradient Fill */
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 70%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Subtle drop shadow for depth */
  filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.15));
}

.all-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-scroll-wrapper {
  position: relative;
}

.services-scroll-wrapper::before,
.services-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 20px;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.services-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #07111f, transparent);
}

.services-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #07111f, transparent);
}

.scroll-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: linear-gradient(135deg, var(--color-turquoise), var(--color-purple));
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.scroll-left { left: -10px; }
.scroll-right { right: -10px; }

.service-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px 60px;
  cursor: grab;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

@media (max-width: 700px) {
  .scroll-btn {
    display: none;
  }
}

.service-grid .service-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.explore-more-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  
  transition: color 0.3s ease, border-color 0.3s ease;
}

.explore-more-card:hover {
  color: var(--color-turquoise);
  border-color: var(--color-turquoise);
}

.all-services {
  padding: 30px 8% 50px;
}

.service-card {
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.all-services .service-card {
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.15);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.service-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  background: #38bdf8;
  color: #0b192c;
  border-color: #38bdf8;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.service-btn:hover span {
  transform: translateX(4px);
}

/* Service Detail Pages */
.service-detail-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-overview {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.service-overview h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-overview p {
  color: #a0aec0;
  line-height: 1.6;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.detail-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.detail-feature-card:hover {
  transform: translateY(-5px);
  border-color: #0070f3;
}

.detail-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.detail-feature-card p {
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.5;
}

/* ==========================================================================
   7. WHY CHOOSE US & ABOUT SECTION
   ========================================================================== */
.why {
  padding: 50px 8%;
  display: flex;
  align-items: center;
  gap: 70px;
}

@media (max-width: 900px) {
  .why {
    padding: 40px 6% 50px;
    gap: 30px;
  }

  .why-image {
    min-height: 260px;
  }
}

.why > div {
  flex: 1;
}

/* Left-aligned heading tweak for specific sections like "Why Choose Us" */
.why h2 {
  text-align: left;
  margin-left: 0;
}

.why p {
  color: #cbd5e1;
  line-height: 1.7;
}

.why-card {
  padding: 40px;
  margin-top: 30px;
}

.why-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45, 212, 191, 0.15), rgba(139, 92, 246, 0.25));
  mix-blend-mode: overlay;
}

.why-card div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.why-card span {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: var(--color-turquoise);
}

.why-card div:nth-child(2) span {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--color-blue);
}

.why-card div:nth-child(3) span {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--color-purple);
}

.about-section {
  padding: 35px 8%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.about-content p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 17px;
}

.about-photo {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45, 212, 191, 0.15), rgba(139, 92, 246, 0.25));
  mix-blend-mode: overlay;
}

.about-glass {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 30px;
  z-index: 2;
}

.about-glass h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-glass p {
  color: #cbd5e1;
  font-size: 18px;
}

.values {
  padding: 35px 8% 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-turquoise), var(--color-blue));
}

.value-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
}

.value-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--color-purple), var(--color-turquoise));
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-purple);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.2);
}

.value-card:nth-child(1) { transition-delay: 0s; }
.value-card:nth-child(2) { transition-delay: 0.15s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }

.value-icon {
  font-size: 30px;
  margin-bottom: 18px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.value-card:nth-child(2) .value-icon {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

.value-card:nth-child(3) .value-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.value-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.value-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ==========================================================================
   8. SOLUTIONS & PORTFOLIO
   ========================================================================== */
.all-solutions,
.portfolio-grid {
  padding: 30px 8% 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.all-solutions {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 50px;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.solutions-image {
  position: sticky;
  top: 120px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 550px;
}

.solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-card,
.project-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-turquoise), var(--color-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:nth-child(3n+2)::before {
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
}

.solution-card:nth-child(3n+3)::before {
  background: linear-gradient(90deg, var(--color-purple), var(--color-turquoise));
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-number {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-turquoise);
  margin-bottom: 18px;
}

.solution-card:nth-child(3n+2) .solution-number {
  color: var(--color-blue);
}

.solution-card:nth-child(3n+3) .solution-number {
  color: var(--color-purple);
}

.project-card {
  padding: 25px;
}

.solution-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-purple);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.15);
}

.project-card h3{
  margin-top: 20px
}


.solution-card h3,
.project-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.solution-card p,
.project-card p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
}

.project-image{

    height:260px;

    border-radius:20px;

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.project-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:24px;

    padding:14px 28px;

    border-radius:16px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    color:#E2E8F0;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:all .35s ease;

}

.project-btn span{

    font-size:16px;

    transition:.35s ease;

}

.project-btn:hover{

    color:#ffffff;

    background:rgba(56,189,248,.12);

    border-color:rgba(56,189,248,.35);

    box-shadow:0 12px 30px rgba(56,189,248,.15);

    transform:translateY(-4px);

}

.project-btn:hover span{

    transform:translateX(5px);

}
/* ==========================================================================
   9. PROCESS & TECHNOLOGY GRID
   ========================================================================== */
.trust-section,
.process-section {
  padding: 40px 8%;
  text-align: center;
}

.tech-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-turquoise), var(--color-blue), var(--color-purple));
  opacity: 0.35;
  z-index: 0;
}

.process-grid .process-card {
  position: relative;
  z-index: 1;
}

.tech-card,
.process-card {
  padding: 35px 25px;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.tech-card {
  padding: 30px 20px;
  color: #cbd5e1;
  border-radius: 20px;
}

.tech-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  color: #ffffff;
}

.process-card span {
  display: inline-flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover span {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 25px currentColor;
}

.process-card:nth-child(2) span {
  background: rgba(56, 189, 248, 0.15);
  color: var(--color-blue);
}

.process-card:nth-child(3) span {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.process-card:nth-child(4) span {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-purple);
}

.process-card:nth-child(5) span {
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.process-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ==========================================================================
   10. MARQUEES & TESTIMONIALS
   ========================================================================== */
.testimonials,
.technology-marquee {
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.testimonial-wrapper,
.marquee-container {
  width: 100%;
  overflow: hidden;
}

.testimonial-track,
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.testimonial-track {
  animation: scrollTestimonials 25s linear infinite;
}

.marquee-track {
  animation: technologyMove 22s linear infinite;
}

.testimonial-track:hover,
.marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 420px;
  min-height: 280px;
  padding: 35px;
  text-align: left;
}

.testimonial-card p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-card h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.testimonial-card span {
  color: #38bdf8;
  font-size: 14px;
}

.tech-logo {
  min-width: 220px;
  padding: 25px 35px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-weight: 600;
  font-size: 18px;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tech-logo:hover {
  border-color: var(--color-turquoise);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.25);
}

@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes technologyMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Testimonial Author */

.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:28px;
}

.testimonial-author img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;

    border:2px solid rgba(56,189,248,.35);

    background:rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.25),
        0 0 18px rgba(56,189,248,.15);

    transition:.35s;
}

.testimonial-card:hover .testimonial-author img{
    transform:scale(1.08);
    border-color:#38BDF8;
}

.author-info h3{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.author-info span{
    display:block;
    margin-top:5px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.5;
}
/* ==========================================================================
   11. STATISTICS & FAQ
   ========================================================================== */
.stats-section {
  padding: 35px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-purple);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.stat-card h2 {
  font-size: 55px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--color-turquoise), var(--color-blue), var(--color-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  color: #cbd5e1;
  font-size: 16px;
}

.faq-section {
  padding: 40px 8%;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--color-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 30px;
  color: #38bdf8;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: #cbd5e1;
  line-height: 1.8;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--color-purple);
}

/* ==========================================================================
   12. PROJECT ESTIMATOR CALCULATOR
   ========================================================================== */
.calculator-container {
  max-width: 1200px;
  margin: 40px auto 80px auto;
  padding: 0 24px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.calc-step {
  margin-bottom: 40px;
}

.calc-step h3 {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 16px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.calc-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.calc-card input {
  display: none;
}

.calc-card strong {
  font-size: 0.95rem;
  color: #f8fafc;
  margin-bottom: 4px;
}

.calc-card span {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.3;
}

.calc-card.active {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.calc-card.active strong {
  color: #38bdf8;
}

.calc-summary-wrapper {
  position: sticky;
  top: 100px;
}

.calc-summary-card {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.calc-summary-card h2 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.highlight-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #38bdf8;
}

.summary-note {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 20px;
}

.full-width {
  display: block;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   13. CONTACT FORM, CAREERS & PREMIUM SELECT DROPDOWN
   ========================================================================== */
.contact-section {
  padding: 30px 8% 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info {
  animation: slideInLeft 0.9s ease both;
}

.contact-form {
  animation: slideInRight 0.9s ease 0.15s both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.contact-info h2 {
  font-size: 45px;
  margin-bottom: 25px;
}

.contact-info > p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-item {
  margin-bottom: 25px;
  padding-left: 18px;
  border-left: 2px solid rgba(45, 212, 191, 0.4);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(6px);
}

.info-item:nth-of-type(1):hover { border-left-color: var(--color-turquoise); }

.info-item:nth-of-type(2) { border-left-color: rgba(56, 189, 248, 0.4); }
.info-item:nth-of-type(2):hover { border-left-color: var(--color-blue); }

.info-item:nth-of-type(3) { border-left-color: rgba(139, 92, 246, 0.4); }
.info-item:nth-of-type(3):hover { border-left-color: var(--color-purple); }

.info-item h3 {
  color: var(--color-turquoise);
  margin-bottom: 8px;
}

.info-item p,
.info-item p a {
  color: #cbd5e1;
  text-decoration: none;
}

.info-item p a:hover {
  color: #38bdf8;
}

/* Single Outer Container styling for Contact Form */
.contact-form {
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

div.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-turquoise), var(--color-blue), var(--color-purple));
}

div.contact-form:focus-within {
  border-color: var(--color-purple);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

/* Ensure inner form element does NOT create a second border or background */
.contact-form form {
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 8px;
}

/* Standard Inputs (Text, Email, Phone, Textarea) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form button {
  width: max-content;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   FIXED: PERFECT PREMIUM SELECT DROPDOWN
   -------------------------------------------------------------------------- */
/* Custom Select Wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Base Select Box Styling */
.contact-form select {
  width: 100%;
  height: 52px;
  padding: 0 45px 0 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #f8fafc;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  cursor: pointer;

  /* Removes browser default arrow across all mobile & desktop browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  transition: all 0.25s ease;
}

/* Hover & Active/Focus States */
.contact-form select:hover {
  border-color: rgba(56, 189, 248, 0.4);
}

.contact-form select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
  background: rgba(15, 23, 42, 0.85);
}

/* Custom Menu Down Arrow Sign (V) */
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Flips the arrow upside down when clicked/tapped open */
.select-wrapper:focus-within::after {
  transform: translateY(-20%) rotate(225deg);
  border-color: #7dd3fc;
}

/* Dropdown Menu Items Styling */
.contact-form select option {
  background-color: #07111f;
  color: #f8fafc;
  font-size: 0.95rem;
  padding: 14px 18px;
}

/* Disabled Placeholder Text Styling */
.contact-form select option[disabled] {
  color: #64748b;
}

/* -------------------------------------------------------------------------- */

.career-section {
  padding: 30px 8% 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.career-card {
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
}

.career-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.career-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.jobs {
  padding: 30px 8% 50px;
  text-align: center;
}

.jobs h2 {
  font-size: 45px;
  margin-bottom: 50px;
}

.job-card {
  max-width: 850px;
  margin: 25px auto;
  padding: 35px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.job-card:hover {
  border-color: #38bdf8;
  transform: translateY(-5px);
}

.job-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.job-card p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.job-card a {
  text-decoration: none;
  color: #38bdf8;
  font-weight: 600;
}

/* ==========================================================================
   14. CALL TO ACTION & FOOTER
   ========================================================================== */
.cta {
  margin: 40px 8%;
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
  z-index: -1;
}

.cta h2 {
  background: linear-gradient(135deg, var(--color-turquoise), var(--color-blue), var(--color-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.cta p {
  color: #cbd5e1;
  margin-bottom: 30px;
}

.footer {
  padding: 40px 8% 20px; /* Top 40px aur Bottom 20px kar diya */
  margin-top: 50px;       /* Top margin 80px se kam karke 50px kar diya */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-top: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-links a,
.footer-links p {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-turquoise);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact .contact-icon {
  width: 18px;
  height: 18px;
  stroke: #38BDF8;
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: #38BDF8;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  transition: all 0.3s ease;
}

.footer-socials .social-icon {
  width: 18px;
  height: 18px;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--color-turquoise), var(--color-purple));
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px; 
  padding-bottom: 15px; 
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* Scroll Reveal Classes */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.solution-card:nth-child(1) { transition-delay: 0s; }
.solution-card:nth-child(2) { transition-delay: 0.1s; }
.solution-card:nth-child(3) { transition-delay: 0.2s; }
.solution-card:nth-child(4) { transition-delay: 0.3s; }
.solution-card:nth-child(5) { transition-delay: 0.4s; }
.solution-card:nth-child(6) { transition-delay: 0.5s; }


.process-card:nth-child(1) { transition-delay: 0s; }
.process-card:nth-child(2) { transition-delay: 0.1s; }
.process-card:nth-child(3) { transition-delay: 0.2s; }
.process-card:nth-child(4) { transition-delay: 0.3s; }
.process-card:nth-child(5) { transition-delay: 0.4s; }

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   15. FLOATING ACTION BUTTONS (WHATSAPP & PHONE)
   ========================================================================== */
.floating-actions {
  position: relative;
  z-index: 9999;
}

.float-btn {
  position: fixed;
  bottom: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-whatsapp {
  left: 30px;
  background-color: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.float-whatsapp svg {
  stroke: #FFFFFF;
  fill: #25D366;
}

.float-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  transform: translateY(-5px) scale(1.08);
}

.float-phone {
  right: 30px;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.45);
}

.float-phone svg {
  stroke: #FFFFFF;
  fill: transparent;
}

.float-phone:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.7);
  transform: translateY(-5px) scale(1.08);
}

.float-tooltip {
  position: absolute;
  bottom: 68px;
  background: #0b192c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */

.privacy-section {
  padding: 10px 8% 60px;
}

.privacy-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.privacy-card h2 {
  font-size: 28px;
  margin: 50px 0 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  color: #CBD5E1;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.privacy-card ul {
  margin: 20px 0 30px 25px;
}

.privacy-card ul li {
  color: #CBD5E1;
  line-height: 1.9;
  margin-bottom: 12px;
  font-size: 16px;
}

.privacy-card strong {
  color: #38BDF8;
}

.privacy-card a {
  color: #38BDF8;
  text-decoration: none;
  transition: color .3s ease;
}

.privacy-card a:hover {
  color: #7DD3FC;
}

@media (max-width: 768px) {

  .privacy-section {
    padding: 30px 5% 80px;
  }

  .privacy-card {
    padding: 30px 25px;
  }

  .privacy-card h2 {
    font-size: 22px;
  }

  .privacy-card p,
  .privacy-card ul li {
    font-size: 15px;
    line-height: 1.8;
  }

}

/* ==========================================================================
   16. MEDIA QUERIES & RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  .stage {
    display: none;
  }
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 6% 80px;
  }

  .contact-form {
    order: 1;
    padding: 30px;
  }

  .contact-info {
    order: 2;
  }

  .career-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  /* Navigation Menu */
  .navbar {
    width: 92%;
    padding: 15px 20px;
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 35px 20px;
    background: rgba(7, 17, 31, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .logo img {
    width: 120px;
  }

  /* Hero Section Mobile */
  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 140px;
  }

 .hero-left h1{

    font-size:68px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

    max-width:700px;

}

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .primary-btn,
  .secondary-btn {
    width: 220px;
    text-align: center;
  }

  .stage {
    display: flex;
    margin-bottom: 40px;
    width: 260px;
    height: 260px;
  }

  

  .hero-card {
    width: 100%;
    max-width: 450px;
    justify-self: center;
  }

  .glass-box.small {
    transform: none;
  }

  /* Inner Pages */
  .page-hero {
   animation: heroFadeUp 0.9s ease both;
    padding-top: 140px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 16px;
  }

  /* Grids Stack */
  .service-grid,
  .all-services,
  .values,
  .all-solutions,
  .portfolio-grid,
  .career-section,
  .process-grid,
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .why,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-glass {
    width: 100%;
  }

  .solution-card,
  .project-card,
  .contact-info,
  .job-card {
    text-align: center;
  }

  .tags {
    justify-content: center;
  }

  /* Section Titles */
  .services-preview h2,
  .why h2,
  .cta h2,
  .trust-section h2,
  .process-section h2,
  .about-content h2,
  .contact-info h2,
  .jobs h2,
  .testimonials h2,
  .technology-marquee h2,
  .faq-section h2 {
    font-size: 32px;
  }

  .service-card,
  .solution-card,
  .project-card,
  .value-card,
  .career-card,
  .job-card {
    padding: 30px 25px;
  }

  .cta {
    margin: 60px 5%;
    padding: 40px 20px;
  }

  .testimonial-card {
    width: 300px;
  }

  .tech-logo {
    min-width: 180px;
    font-size: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .career-section {
    grid-template-columns: 1fr;
  }

  .float-btn {
    bottom: 20px;
    width: 48px;
    height: 48px;
  }

  .float-whatsapp { left: 20px; }
  .float-phone { right: 20px; }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-tooltip { display: none; }
}

@media (max-width: 500px) {
  .logo img {
    width: 110px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .tech-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .stat-card h2 {
    font-size: 45px;
  }

  .glass-box {
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
  }
}
/* ==========================
PRIVACY POLICY
========================== */

.policy-section{

    max-width:1100px;

    margin:80px auto 120px;

    padding:0 20px;

    display:flex;

    flex-direction:column;

    gap:25px;

}

.policy-card{

    padding:40px;

    border-radius:20px;

    transition:.35s;

}

.policy-card:hover{

    transform:translateY(-6px);

    border-color:rgba(56,189,248,.35);

}

.policy-card h2{

    font-size:28px;

    margin-bottom:18px;

    color:#ffffff;

}

.policy-card p{

    color:#CBD5E1;

    line-height:1.9;

    font-size:17px;

}

/* ==========================
SUCCESS POPUP
========================== */

.success-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.success-popup.active{

    opacity:1;

    visibility:visible;

}

.success-box{

    width:420px;

    max-width:90%;

    padding:40px;

    text-align:center;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

}

.success-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#fff;

    background:rgba(56,189,248,.2);

    border:1px solid rgba(56,189,248,.3);

}

.success-box h3{

    margin-bottom:15px;

}

.success-box p{

    color:#CBD5E1;

    line-height:1.7;

    margin-bottom:25px;

}

.success-box button{

    border:none;

    padding:14px 28px;

    border-radius:14px;

    cursor:pointer;

    color:#fff;

    background:rgba(56,189,248,.15);

    border:1px solid rgba(56,189,248,.3);

}


/* ==========================================================================
   ULTIMATE ELITE GLASS SECTION TAG
   ========================================================================== */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  
  /* Increased scale & presence */
  padding: 12px 30px;
  border-radius: 999px;
  
  /* Multi-Layered Cyber Glass Background */
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.16) 0%,
    rgba(139, 92, 246, 0.12) 50%,
    rgba(7, 17, 31, 0.4) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Dual Neon Border Accent */
  border: 1px solid rgba(56, 189, 248, 0.45);
  
  /* High-Impact Typography */
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  line-height: 1;
  
  /* Layout Position & Centering */
  margin: 0 auto 28px auto;
  width: fit-content;
  
  /* Multi-Tone Neon Aura Glow & Metallic Highlight */
  box-shadow: 
    0 10px 35px rgba(56, 189, 248, 0.25),
    0 0 20px rgba(139, 92, 246, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(56, 189, 248, 0.3);
    
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Pulsing Diamond/Core Node */
.section-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 12px #38bdf8, 0 0 24px #38bdf8, 0 0 36px #8b5cf6;
  animation: hyper-pulse 2s infinite ease-in-out;
}

/* Holographic Light Flare Effect */
.section-tag::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: left 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Elevation & Hyper Glow Response */
.section-tag:hover {
  border-color: rgba(56, 189, 248, 0.85);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.25) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
  box-shadow: 
    0 16px 45px rgba(56, 189, 248, 0.4),
    0 0 35px rgba(139, 92, 246, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.7);
  transform: translateY(-4px) scale(1.04);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.section-tag:hover::after {
  left: 180%;
}

/* Core Node Pulse Animation */
@keyframes hyper-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 12px #38bdf8, 0 0 24px #38bdf8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.85;
    box-shadow: 0 0 18px #38bdf8, 0 0 32px #8b5cf6;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  z-index: 3;
}

.scroll-dot {
  width: 5px;
  height: 5px;
  background: var(--color-turquoise);
  border-radius: 50%;
  margin: 8px auto 0;
  animation: scrollDotMove 1.8s ease infinite;
}

@keyframes scrollDotMove {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}
 .cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), rgba(45, 212, 191, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

@media (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
}
.form-toast {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 212, 191, 0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 10;
  animation: toastSlideIn 0.4s ease both;
}

.form-toast.error {
  border-color: rgba(239, 68, 68, 0.4);
}

.form-toast.show {
  display: flex;
}

.toast-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  background: rgba(45, 212, 191, 0.15);
  color: var(--color-turquoise);
}

.form-toast.error .toast-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.toast-text h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #ffffff;
}

.toast-text p {
  font-size: 13px;
  color: #cbd5e1;
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}