/* styles.css - Brandoryx hero replica
   Put this file next to index.html
*/

:root{
  --bg:#050617;
  --bg-deep:#020418;
  --glass: rgba(255,255,255,0.04);
  --glass-2: rgba(255,255,255,0.03);
  --accent-1: #5072ff;
  --accent-2: #7f3bff;
  --muted: rgba(255,255,255,0.6);
  --white: #f7f9ff;
  --container-max: 1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(ellipse at top, #08102a 0%, #020417 45%, var(--bg) 100%);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}



/* Container */
.container{
  width:calc(100% - 48px);
  max-width:var(--container-max);
  margin:0 auto;
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  padding:18px 0;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(2,4,16,0.45), rgba(2,4,16,0.07));
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:space-between;
}

/* brand */
.brand{display:flex;align-items:center;gap:12px}
.logo{height:34px;width:auto;filter:drop-shadow(0 6px 20px rgba(0,0,0,0.6))}
.brand-name{letter-spacing:1px;font-weight:700}

/* nav */
.main-nav ul{
  list-style:none;margin:0;padding:0;display:flex;gap:20px;align-items:center;
}
.main-nav a{
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  padding:8px 6px;
  font-weight:600;
  transition:color .18s, transform .18s;
}
.main-nav a:hover{color:var(--white);transform:translateY(-2px)}
.main-nav a.active{
  position:relative;
  color:var(--white);
}
.main-nav a.active::after{
  content:"";
  position:absolute;
  height:3px;
  width:100%;
  background:linear-gradient(90deg,var(--accent-1),var(--accent-2));
  left:0;
  bottom:-12px;
  border-radius:4px;
  transform:translateY(6px);
  opacity:.95;
}


.navbar {
  display: flex;
   height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px;
}

.navbar-logo img {
  height: 150px;   /* adjust if needed */
  width: auto;
  cursor: pointer;
}

.navbar-logo {
  display: flex;
  align-items: center;
}



/* Buttons */
.btn{
  border:0;padding:10px 18px;border-radius:26px;font-weight:700;cursor:pointer;
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: 0 10px 30px rgba(79,66,255,0.12), inset 0 -6px 18px rgba(0,0,0,0.18);
  padding: 14px 26px;
  font-size: 1.05rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Hover effect for Start Now */
.btn-primary:hover {
  transform: translateY(-3px); /* lift */
  box-shadow: 0 15px 35px rgba(79,66,255,0.3), inset 0 -6px 18px rgba(0,0,0,0.18);
}
/* Ghost Button (Our Services) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Hover effect for Our Services → grows & gets purple gradient */
.btn-ghost:hover {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); /* purple gradient */
  color: white;
  padding: 14px 26px;       /* grows to same size as Start Now */
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(79,66,255,0.12), inset 0 -6px 18px rgba(0,0,0,0.18);
  border: none;
  transform: translateY(-3px); /* optional lift */
}
.btn.large{padding:14px 26px;font-size:1.05rem;border-radius:30px}


/* ========================================
   HERO SECTION
======================================== */

.hero {
  min-height: 100vh;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79,66,255,0.15) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced stars with parallax layers */
.stars {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stars::before,
.stars::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.9) 0, transparent 50%),
    radial-gradient(1px 1px at 70% 10%, rgba(255,255,255,0.7) 0, transparent 50%),
    radial-gradient(1px 1px at 40% 75%, rgba(255,255,255,0.6) 0, transparent 50%),
    radial-gradient(2px 2px at 90% 60%, rgba(255,255,255,0.8) 0, transparent 50%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.5) 0, transparent 50%),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,0.6) 0, transparent 50%);
  background-size: 200% 200%;
  animation: twinkle 8s ease-in-out infinite;
}

.stars::after {
  background-position: 50% 50%;
  animation-delay: -4s;
  opacity: 0.6;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Floating particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(124,58,237,0.8), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s infinite;
  opacity: 0;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(1.5);
    opacity: 0;
  }
}

.hero-inner {
  text-align: center;
  padding: 72px 20px 120px;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

/* Premium eyebrow with glow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(79,66,255,0.2), rgba(124,58,237,0.15));
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 30px;
  padding: 10px 20px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 
    0 0 30px rgba(79,66,255,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  animation: pulse 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.eyebrow:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 40px rgba(79,66,255,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(79,66,255,0.3),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(79,66,255,0.5),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
}

/* Enhanced title with text shadow and animation */
.hero-title {
  font-size: clamp(42px, 8.4vw, 110px);
  line-height: 1;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-title .line {
  display: block;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-title .line:first-child {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-title .gradient {
  background: linear-gradient(180deg, #ffffff 0%, #a5b4fc 20%, #6366f1 50%, #4f46e5 80%, #4338ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(79,66,255,0.6));
  animation: fadeInUp 0.8s ease-out 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
  position: relative;
}

/* Animated underline effect */
.hero-title .gradient::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4f46e5, transparent);
  animation: expandLine 1.5s ease-out 1s forwards;
  border-radius: 2px;
}

@keyframes expandLine {
  to { width: 80%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle with typing effect */
.hero-sub {
  color: var(--muted);
  max-width: 700px;
  margin: 24px auto 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.8s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Premium buttons with magnetic effect */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  animation: fadeInUp 1s ease-out 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.btn {
  border: 0;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Primary button with shimmer effect */
.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  box-shadow: 
    0 10px 30px rgba(79,66,255,0.4),
    inset 0 -2px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(79,66,255,0.6),
    inset 0 -2px 10px rgba(0,0,0,0.2);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.02);
}

/* Ghost button with fill effect */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(79,66,255,0.5);
  position: relative;
  z-index: 1;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}

.btn-ghost:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(79,66,255,0.4);
}

.btn-ghost:hover::before {
  opacity: 1;
}

/* Enhanced horizon with glow */
.horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  pointer-events: none;
  z-index: 4;
  transform: translateY(40px);
  filter: blur(8px) contrast(130%);
}

.horizon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
   STATS CARDS with 3D effect
======================================== */

.stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: -80px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 370px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(30,41,59,0.8));
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(0) rotateX(0) rotateY(0);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
  animation-fill-mode: backwards;
}

.card:nth-child(1) { animation-delay: 1.2s; }
.card:nth-child(2) { animation-delay: 1.4s; }
.card:nth-child(3) { animation-delay: 1.6s; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient overlay on hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,66,255,0.1), rgba(124,58,237,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(79,66,255,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border-color: rgba(79,66,255,0.5);
}

.card:hover::before {
  opacity: 1;
}

/* Animated icon container */
.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(79,66,255,0.2), rgba(124,58,237,0.1));
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 -2px 8px rgba(0,0,0,0.3);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 30px rgba(79,66,255,0.5),
    inset 0 -2px 8px rgba(0,0,0,0.3);
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-icon::after {
  opacity: 0.3;
}

.card-right {
  flex: 1;
}

.card-right .stat {
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.card:hover .card-right .stat {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(79,66,255,0.5));
}

.card-right .meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.card:hover .card-right .meta {
  color: rgba(255,255,255,0.9);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 980px) {
  .hero-title {
    font-size: clamp(36px, 9vw, 70px);
  }
  .stats {
    flex-direction: column;
    gap: 16px;
    margin-top: -60px;
  }
  .card {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    padding: 40px 16px 100px;
  }
  .eyebrow {
    font-size: 13px;
    padding: 8px 16px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 16px;
    padding: 0 12px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .btn {
    width: 100%;
  }
}





/* WHY PARTNER WITH US SECTION */
.why-partner-section{background:linear-gradient(135deg,#000510,#01051c,#040b2b);color:#fff;padding:80px 20px 140px;font-family:Inter,sans-serif;position:relative;overflow:hidden;min-height:100vh}

/* Animated mesh gradient background */
.why-partner-section::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle at 30% 40%,rgba(79,66,255,.15),transparent 50%),radial-gradient(circle at 70% 60%,rgba(124,58,237,.12),transparent 50%);animation:rot 30s linear infinite;pointer-events:none;z-index:1}
@keyframes rot{to{transform:rotate(360deg)}}

/* Floating orb */
.why-partner-section::after{content:'';position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(79,66,255,.2),transparent 70%);border-radius:50%;top:20%;right:-10%;filter:blur(80px);animation:float-orb 15s ease-in-out infinite;z-index:1}
@keyframes float-orb{0%,100%{transform:translate(0,0)scale(1)}50%{transform:translate(-100px,100px)scale(1.2)}}

.why-partner-container{max-width:1200px;margin:0 auto;position:relative;z-index:10}

/* Floating particles */
.particle{position:absolute;width:3px;height:3px;background:radial-gradient(circle,rgba(124,58,237,.9),transparent);border-radius:50%;pointer-events:none;animation:float-particle 20s infinite;opacity:0;z-index:2}
@keyframes float-particle{0%{transform:translateY(100vh)translateX(0)scale(0);opacity:0}10%,90%{opacity:1}100%{transform:translateY(-100vh)translateX(50px)scale(1.5);opacity:0}}

/* HEADER SECTION */
.why-partner-top{text-align:center;margin-bottom:100px;animation:fiu 1s ease-out;opacity:0;animation-fill-mode:forwards;position:relative;z-index:10}
@keyframes fiu{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}

/* Tag button with shimmer */
.why-partner-tag{background:linear-gradient(135deg,rgba(79,66,255,.25),rgba(124,58,237,.15));border:1px solid rgba(124,58,237,.5);padding:10px 24px;border-radius:9999px;font-size:14px;font-weight:600;color:#a5b4fc;cursor:pointer;display:inline-block;transition:.4s cubic-bezier(.34,1.56,.64,1);box-shadow:0 0 30px rgba(79,66,255,.3),inset 0 1px 0 rgba(255,255,255,.1);backdrop-filter:blur(12px);position:relative;overflow:hidden}
.why-partner-tag::before{content:'';position:absolute;top:-50%;left:-100%;width:100%;height:200%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transform:skewX(-20deg);animation:shimmer 4s infinite}
@keyframes shimmer{0%{left:-100%}50%,100%{left:200%}}
.why-partner-tag:hover{background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff;transform:translateY(-3px)scale(1.05);box-shadow:0 12px 35px rgba(79,66,255,.5),inset 0 1px 0 rgba(255,255,255,.2);border-color:rgba(124,58,237,.8)}

/* Title */
.why-partner-title{margin-top:32px;font-size:clamp(36px,5.5vw,58px);font-weight:900;line-height:1.1;letter-spacing:-.02em;text-shadow:0 2px 30px rgba(0,0,0,.5)}
.why-partner-highlight{background:linear-gradient(135deg,#fff 0%,#a5b4fc 30%,#6366f1 60%,#7c3aed 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;filter:drop-shadow(0 0 40px rgba(110,140,255,.6));position:relative}
.why-partner-highlight::after{content:'';position:absolute;bottom:-8px;left:50%;transform:translateX(-50%);width:0;height:3px;background:linear-gradient(90deg,transparent,#6366f1,transparent);animation:expand-line 2s ease-out 1s forwards;border-radius:2px}
@keyframes expand-line{to{width:100%}}

.why-partner-sub{font-size:18px;max-width:800px;margin:28px auto 0;opacity:.85;line-height:1.7;font-weight:400}

/* CARDS GRID */
.why-partner-grid{position:relative;width:100%;display:grid;grid-template-columns:repeat(2,1fr);gap:80px 100px;padding:60px 40px;perspective:1000px}

/* CARDS - Ultra Premium */
.why-partner-card{background:linear-gradient(145deg,rgba(15,25,60,.75),rgba(10,16,40,.5));border:1px solid rgba(255,255,255,.1);padding:42px;border-radius:24px;position:relative;backdrop-filter:blur(16px);box-shadow:0 8px 40px rgba(0,0,0,.6),0 0 40px rgba(29,76,255,.15),inset 0 1px 0 rgba(255,255,255,.08);transition:.6s cubic-bezier(.34,1.56,.64,1);animation:slu 1s ease-out backwards;cursor:pointer;transform-style:preserve-3d}
.why-partner-card:nth-child(1){animation-delay:.3s}
.why-partner-card:nth-child(2){animation-delay:.5s}
.why-partner-card:nth-child(3){animation-delay:.7s}
.why-partner-card:nth-child(4){animation-delay:.9s}
@keyframes slu{from{opacity:0;transform:translateY(60px)rotateX(20deg)}to{opacity:1;transform:translateY(0)rotateX(0)}}

/* Card gradient overlays */
.why-partner-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(79,66,255,.2),rgba(124,58,237,.15));opacity:0;transition:.5s;border-radius:24px;z-index:1}
.why-partner-card::after{content:'';position:absolute;top:-100%;left:-100%;width:300%;height:300%;background:radial-gradient(circle,rgba(124,58,237,.3),transparent 50%);opacity:0;transition:.6s;pointer-events:none;z-index:2}

.why-partner-card:hover{transform:translateY(-16px)scale(1.03)rotateX(2deg);border-color:rgba(110,140,255,.6);box-shadow:0 30px 80px rgba(79,66,255,.5),0 0 60px rgba(79,66,255,.3),inset 0 1px 0 rgba(255,255,255,.15)}
.why-partner-card:hover::before{opacity:1}
.why-partner-card:hover::after{opacity:1;animation:glow-move 2s ease-in-out infinite}
@keyframes glow-move{0%,100%{transform:translate(0,0)}50%{transform:translate(-50px,-50px)}}

/* Card content */
.why-partner-card-title{font-size:24px;font-weight:800;margin-bottom:14px;transition:.4s;position:relative;z-index:3;background:linear-gradient(135deg,#fff,#e0e7ff);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.why-partner-card:hover .why-partner-card-title{transform:translateX(5px);filter:drop-shadow(0 0 15px rgba(110,140,255,.8))}

.why-partner-card-desc{font-size:15px;line-height:1.7;opacity:.8;transition:.4s;position:relative;z-index:3;font-weight:400}
.why-partner-card:hover .why-partner-card-desc{opacity:1;transform:translateX(5px)}

/* ICONS - Premium 3D */
.why-partner-icon{position:absolute;right:-22px;top:50%;transform:translateY(-50%)translateZ(20px);width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#4f46e5,#7c3aed,#a855f7);display:flex;align-items:center;justify-content:center;box-shadow:0 12px 35px rgba(79,66,255,.6),inset 0 -3px 12px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.2);transition:.5s cubic-bezier(.34,1.56,.64,1);border:3px solid rgba(255,255,255,.15);z-index:4}
.why-partner-icon::before{content:'';position:absolute;inset:-3px;border-radius:50%;background:linear-gradient(135deg,rgba(79,66,255,.5),rgba(124,58,237,.3));filter:blur(12px);opacity:0;transition:.4s;z-index:-1}
.why-partner-card:hover .why-partner-icon{transform:translateY(-50%)translateZ(40px)scale(1.2)rotate(15deg);box-shadow:0 20px 50px rgba(79,66,255,.8),inset 0 -3px 12px rgba(0,0,0,.4)}
.why-partner-card:hover .why-partner-icon::before{opacity:1}

.why-partner-icon svg{width:32px;height:32px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:.4s}
.why-partner-card:hover .why-partner-icon svg{stroke:#fff;filter:drop-shadow(0 0 8px rgba(255,255,255,.8))}

/* CENTER GLOW LOGO */
.why-partner-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:25;animation:float-center 8s ease-in-out infinite}
@keyframes float-center{0%,100%{transform:translate(-50%,-50%)translateY(0)scale(1)}50%{transform:translate(-50%,-50%)translateY(-20px)scale(1.05)}}

.why-partner-glow{background:linear-gradient(135deg,rgba(15,23,42,.98),rgba(30,41,59,.95));width:160px;height:160px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 0 80px rgba(79,66,255,.7),0 0 140px rgba(27,43,255,.5),0 0 200px rgba(79,66,255,.3),inset 0 2px 0 rgba(255,255,255,.15);border:3px solid rgba(79,66,255,.6);position:relative;overflow:hidden;transition:.5s;cursor:pointer}

/* Pulsing glow layer */
.why-partner-glow::before{content:'';position:absolute;inset:-60px;background:radial-gradient(circle,rgba(79,66,255,.6),rgba(124,58,237,.3),transparent 70%);animation:pulse-1 4s ease-in-out infinite;border-radius:50%;filter:blur(40px)}
@keyframes pulse-1{0%,100%{transform:scale(.9);opacity:.5}50%{transform:scale(1.4);opacity:1}}

.why-partner-glow::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(79,66,255,.3),rgba(124,58,237,.2));opacity:0;transition:.5s;border-radius:50%;z-index:1}
.why-partner-glow:hover{transform:scale(1.15)rotate(10deg);box-shadow:0 0 120px rgba(79,66,255,1),0 0 180px rgba(27,43,255,.7),0 0 240px rgba(79,66,255,.5)}
.why-partner-glow:hover::after{opacity:1}

/* Rotating ring */
.glow-ring{position:absolute;inset:-10px;border:2px solid transparent;border-top-color:rgba(79,66,255,.6);border-radius:50%;animation:spin 4s linear infinite;z-index:2}
@keyframes spin{to{transform:rotate(360deg)}}

.why-partner-glow img{width:70px;height:70px;position:relative;z-index:3;filter:drop-shadow(0 0 20px rgba(79,66,255,1));transition:.5s}
.why-partner-glow:hover img{transform:scale(1.1);filter:drop-shadow(0 0 30px rgba(79,66,255,1))brightness(1.2)}

/* RESPONSIVE */
@media(max-width:850px){
  .why-partner-grid{grid-template-columns:1fr;gap:40px;padding:30px 20px}
  .why-partner-center{display:none}
  .why-partner-icon{right:24px;top:24px;transform:none;width:56px;height:56px}
  .why-partner-icon svg{width:28px;height:28px}
  .why-partner-card:hover .why-partner-icon{transform:scale(1.15)rotate(15deg)}
}
@media(max-width:520px){
  .why-partner-section{padding:60px 16px 100px}
  .why-partner-top{margin-bottom:60px}
  .why-partner-tag{font-size:13px;padding:8px 18px}
  .why-partner-title{font-size:32px}
  .why-partner-sub{font-size:16px}
  .why-partner-card{padding:28px}
  .why-partner-card-title{font-size:20px}
  .why-partner-card-desc{font-size:14px}
}

/* what-we-do-section.css */
.wwd-section {
    background: linear-gradient(135deg, #000510, #01051c, #040b2b);
    color: #fff;
    padding: 120px 20px 140px;
    position: relative;
    overflow: hidden;
}

/* Enhanced Background with Mesh Gradients */
.wwd-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(79, 66, 255, 0.15), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.12), transparent 50%);
    animation: bgMove 30s linear infinite;
    pointer-events: none;
}

@keyframes bgMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, -5%) rotate(1deg); }
    66% { transform: translate(-5%, 5%) rotate(-1deg); }
}

/* Enhanced Floating Particles */
.wwd-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 66, 255, 0.2), transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: -10%;
    filter: blur(80px);
    animation: floatOrb 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%, 60% 40%; 
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 30% 70%, 60% 40%, 40% 60%, 80% 60%; 
    }
}

.wwd-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wwd-header {
    text-align: center;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wwd-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 91, 255, 0.15);
    border: 1.5px solid rgba(124, 91, 255, 0.4);
    border-radius: 9999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    color: #a5b4fc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(124, 91, 255, 0.3);
}

/* Shimmer effect on badge */
.wwd-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.wwd-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 91, 255, 0.5), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    border-radius: 9999px;
    z-index: -1;
}

.wwd-badge:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.wwd-badge:hover {
    background: rgba(124, 91, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 
        0 0 60px rgba(124, 91, 255, 0.6),
        0 15px 40px rgba(124, 91, 255, 0.5);
    color: #ffffff;
    border-color: #7c5bff;
}

.wwd-badge svg {
    width: 22px;
    height: 22px;
    color: #a78bfa;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 8px rgba(124, 91, 255, 0.6));
}

.wwd-badge:hover svg {
    color: #ffffff;
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.wwd-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.wwd-highlight {
    background: linear-gradient(90deg, #7a8cff 0%, #6b7dff 25%, #5d6fff 50%, #7b6aff 75%, #8b5aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.wwd-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.65);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Cards Container with Center Element */
.wwd-cards-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center Glowing Element */
.wwd-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 0;
    pointer-events: none;
}

.wwd-center-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(124, 91, 255, 0.4) 0%, rgba(124, 91, 255, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.wwd-center-glow::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, rgba(124, 91, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite reverse;
    filter: blur(40px);
}

.wwd-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(124, 91, 255, 0.3), rgba(167, 139, 250, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(124, 91, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(124, 91, 255, 0.6),
        inset 0 0 30px rgba(124, 91, 255, 0.3);
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.wwd-center-logo svg {
    width: 60px;
    height: 60px;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(124, 91, 255, 0.8));
}

.wwd-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.wwd-card {
    background: rgba(15, 20, 40, 0.5);
    padding: 48px 36px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Animated gradient border */
.wwd-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #7c5bff, #a78bfa, #c4b5fd, #7c5bff);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.wwd-card:hover::before {
    opacity: 1;
}

/* Enhanced Glow effect on hover */
.wwd-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 91, 255, 0.3), transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(30px);
}

.wwd-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.wwd-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 50px 100px rgba(124, 91, 255, 0.4),
        0 0 80px rgba(124, 91, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 91, 255, 0.5);
    background: rgba(15, 20, 40, 0.8);
}

.wwd-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 91, 255, 0.25), rgba(167, 139, 250, 0.15));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1.5px solid rgba(124, 91, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(124, 91, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wwd-card-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: linear-gradient(135deg, #7c5bff, #a78bfa);
    border-radius: 26px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

.wwd-card:hover .wwd-card-icon::before {
    opacity: 0.7;
}

.wwd-card:hover .wwd-card-icon {
    background: linear-gradient(135deg, #7c5bff, #a78bfa);
    transform: scale(1.2) rotate(-8deg);
    box-shadow: 
        0 20px 50px rgba(124, 91, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border-color: transparent;
}

.wwd-card-icon svg {
    width: 38px;
    height: 38px;
    color: #a78bfa;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 10px rgba(124, 91, 255, 0.6));
    position: relative;
    z-index: 1;
}

.wwd-card:hover .wwd-card-icon svg {
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
}

.wwd-card-content {
    position: relative;
    z-index: 1;
}

.wwd-card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.wwd-card:hover .wwd-card-title {
    color: #c4b5fd;
    text-shadow: 0 0 25px rgba(124, 91, 255, 0.5);
    transform: translateX(4px);
}

.wwd-card-desc {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.wwd-card:hover .wwd-card-desc {
    color: rgba(255,255,255,0.85);
}

.wwd-learn-more {
    font-weight: 700;
    text-decoration: none;
    color: #a78bfa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    letter-spacing: 0.3px;
    position: relative;
    padding: 14px 28px;
    background: rgba(124, 91, 255, 0.1);
    border-radius: 14px;
    border: 1.5px solid rgba(124, 91, 255, 0.3);
    overflow: hidden;
}

.wwd-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wwd-learn-more:hover::before {
    left: 100%;
}

.wwd-learn-more:hover {
    color: #ffffff;
    gap: 14px;
    background: rgba(124, 91, 255, 0.35);
    border-color: rgba(124, 91, 255, 0.7);
    box-shadow: 0 10px 30px rgba(124, 91, 255, 0.4);
    transform: translateX(6px);
}

.wwd-arrow {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.wwd-learn-more:hover .wwd-arrow {
    transform: translateX(6px) rotate(-45deg);
}

/* Staggered animation for cards */
.wwd-card:nth-child(1) { animation: cardFadeIn 0.7s ease-out 0.1s backwards; }
.wwd-card:nth-child(2) { animation: cardFadeIn 0.7s ease-out 0.2s backwards; }
.wwd-card:nth-child(3) { animation: cardFadeIn 0.7s ease-out 0.3s backwards; }
.wwd-card:nth-child(4) { animation: cardFadeIn 0.7s ease-out 0.4s backwards; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media(max-width: 1024px) {
    .wwd-center-glow,
    .wwd-center-logo {
        display: none;
    }

    .wwd-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width: 768px) {
    .wwd-section {
        padding: 80px 20px;
    }

    .wwd-title {
        font-size: 42px;
    }

    .wwd-subtitle {
        font-size: 17px;
    }

    .wwd-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wwd-card {
        padding: 36px 28px;
    }

    .wwd-card-icon {
        width: 70px;
        height: 70px;
    }

    .wwd-card-icon svg {
        width: 32px;
        height: 32px;
    }

    .wwd-card-title {
        font-size: 24px;
    }
}

@media(max-width: 480px) {
    .wwd-title {
        font-size: 36px;
    }
}
/* ======= Testimonials Section Styles ======= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #000510, #01051c, #040b2b);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    bottom: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: glow 8s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shimmer {
    0% { background-position: -1000px; }
    100% { background-position: 1000px; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-section { position: relative; z-index: 1; padding: 80px 20px; }
.container { max-width: 1400px; margin: 0 auto; }
.header { text-align: center; margin-bottom: 4rem; animation: slideIn 1s ease-out; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.15));
    backdrop-filter: blur(20px);
    margin: 2rem 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.badge:hover {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: #60a5fa;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.badge:hover .badge-icon {
    transform: rotate(15deg) scale(1.1);
    color: #fff;
}

.badge-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.badge:hover .badge-text { -webkit-text-fill-color: white; }

.title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line1 { color: #e0e7ff; display: block; }

.title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 25%, #8b5cf6 75%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
    display: block;
}

.subtitle { color: #9ca3af; font-size: 1.125rem; }

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.4));
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.arrow-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.arrow-icon { width: 24px; height: 24px; stroke: white; stroke-width: 2; fill: none; }
.testimonials-wrapper { overflow: hidden; max-width: 1000px; width: 100%; }

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before { opacity: 1; }

.normal {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.normal:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlighted {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.12));
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6) 1;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3), 0 20px 50px rgba(139, 92, 246, 0.25);
}

.profile-image-container { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.profile-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.4);
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover .profile-image {
    transform: scale(1.08);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.profile-info { text-align: center; margin-bottom: 1.5rem; }

.profile-name {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.profile-title { color: #9ca3af; font-size: 0.875rem; }

.quote {
    text-align: center;
    line-height: 1.7;
    color: #d1d5db;
    font-size: 0.95rem;
}

.highlighted .quote { color: #e0e7ff; font-weight: 500; }

.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
    background: rgba(139, 92, 246, 0.6);
    transform: scale(1.3);
}

.dot.active {
    width: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.6);
}

@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .testimonial-card { width: 280px; }
}



/* FAQ SECTION GLOBAL STYLES */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(124, 58, 237, 0.15));
    color: #818cf8;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
/* Hover effect */
.faq-icon:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.3));
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25),
                0 0 60px rgba(124, 58, 237, 0.2);
    color: #a5b4fc;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-header h2 span {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 30%, #a78bfa 70%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradientShift 4s ease infinite;
    background-size: 200% 200%;
}

.faq-header p {
    opacity: 0.7;
    font-size: 16px;
    margin-top: 10px;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    transition: .3s ease;
}

/* ACTIVE glowing blue item */
.faq-item.active {
    background: linear-gradient(90deg, rgba(0, 38, 255, 0.9), rgba(0, 82, 255, 0.6));
    box-shadow: 0 0 25px rgba(0, 89, 255, 0.4);
    border: none;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    font-size: 20px;
    transition: .3s;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 16px 30px 30px;
    color: #d5dcff;
    font-size: 15px;
    line-height: 1.6;
}

/* When open */
.faq-answer.open {
    max-height: 1000px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}







/* ------------------------------
   BRX LAUNCH SECTION (UNIQUE)
--------------------------------*/

.brx-launch-section {
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, #07234a, #01071a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    color: #dfe7ff;
    font-family: "Inter", sans-serif;
}

/* Top Contact Button */
.brx-launch-contact-btn {
    padding: 10px 30px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: #dfe2ff;
    text-decoration: none;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: .3s;
}

.brx-launch-contact-btn:hover {
    background: rgba(255,255,255,0.18);
}

/* Main Content */
.brx-launch-content {
    margin-top: 50px;
    text-align: center;
    max-width: 600px;
}

/* Glowing Icon */
.brx-launch-icon img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 25px #3f68ff);
    margin-bottom: 20px;
}

/* Headings */
.brx-launch-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #dfe7ff;
}

.brx-launch-content h1 span {
    background: linear-gradient(90deg, #588dff, #0040ff);
    -webkit-background-clip: text;
    color: transparent;
}

/* Paragraph */
.brx-launch-content p {
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.6;
}

/* Get Started Button */
.brx-launch-start-btn {
    margin-top: 35px;
    padding: 12px 34px;
    border-radius: 50px;
    background: linear-gradient(120deg, #0045ff, #2c6bff);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.brx-launch-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(54, 105, 255, 0.6);
}

/* Bottom Blue Glow Arc */
.brx-launch-glow-arc {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 250px;
    background: radial-gradient(ellipse at center,
        rgba(37, 100, 255, 1) 0%,
        rgba(37, 100, 255, .5) 40%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(45px);
    opacity: 0.9;
}








/* ------------------------------
   BRX FOOTER (UNIQUE FOOTER)
--------------------------------*/

/* FOOTER BRX */
.footer-brx {
    background: #000c1f;
    padding: 50px 0 20px;
    color: #d1d9ff;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brx-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-brx-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #4a6bff;
}

.footer-brx-about p {
    margin-top: 10px;
    opacity: 0.7;
}

/* Links */
.footer-brx-links h3,
.footer-brx-social h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-brx-links ul {
    list-style: none;
    padding: 0;
}

.footer-brx-links ul li {
    margin: 8px 0;
}

.footer-brx-links ul li a {
    text-decoration: none;
    color: #d1d9ff;
    opacity: 0.8;
    transition: 0.3s ease;
}

.footer-brx-links ul li a:hover {
    color: #4a6bff;
    opacity: 1;
}

/* Social Icons */
.footer-brx-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.3rem;
    color: #d1d9ff;
    transition: 0.3s ease;
}

.footer-brx-icons a:hover {
    color: #4a6bff;
    transform: translateY(-3px);
}

/* Footer bottom */
.footer-brx-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
    opacity: 0.6;
}
/* Footer Links Sections */
.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #93c5fd;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4a6bff; /* matches your footer logo color */
}

/* Social icons */
.footer-brx-icons a {
    margin-right: 12px;
    font-size: 18px;
    color: #93c5fd;
    transition: color 0.3s;
}

.footer-brx-icons a:hover {
    color: #4a6bff;
}

/* Footer Bottom */
.footer-brx-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-brx-container {
        grid-template-columns: 1fr; /* Stack sections vertically */
        text-align: left;
    }

    .footer-section, .footer-brx-about, .footer-brx-social {
        margin-bottom: 20px;
    }
}



 body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            background: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: #0a0e27;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
            background: #6366f1;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #b4b8d4;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        .nav-links a.active {
            border-bottom: 2px solid #6366f1;
            padding-bottom: 4px;
        }

        .cta-btn {
            background: #6366f1;
            color: #fff;
            padding: 0.75rem 1.75rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }

        .cta-btn:hover {
            background: #5558e3;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

        .hero-section {
            text-align: center;
            padding: 8rem 5% 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .hero-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .hero-circle-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #6366f1 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .hero-circle-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        .hero-circle-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #6366f1 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(99, 102, 241, 0.15);
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            border: 1px solid rgba(99, 102, 241, 0.3);
            backdrop-filter: blur(10px);
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-tag span {
            color: #fff;
            font-weight: 600;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.1;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-line {
            display: block;
            color: #fff;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section .highlight {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: shimmer 3s linear infinite, fadeInUp 1s ease-out 0.4s both;
            display: block;
        }

        @keyframes shimmer {
            to {
                background-position: 200% center;
            }
        }

        .hero-description {
            font-size: 1.35rem;
            color: #b4b8d4;
            max-width: 800px;
            margin: 0 auto 3.5rem;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            max-width: 700px;
            margin: 0 auto;
            padding: 2rem 3rem;
            background: rgba(20, 25, 50, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .hero-stat-item {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: #b4b8d4;
            font-weight: 500;
        }

        .hero-stat-divider {
            width: 1px;
            height: 50px;
            background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.5), transparent);
        }

        .mission-section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mission-section h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            text-align: left;
        }

        .mission-box {
            background: rgba(20, 25, 50, 0.6);
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 25px;
            padding: 4rem 5rem;
            position: relative;
            max-width: 1200px;
        }

        .quote-icon {
            position: absolute;
            top: -30px;
            right: 60px;
            background: #6366f1;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 700;
        }

        .mission-text {
            font-size: 1.5rem;
            line-height: 1.8;
            color: #ffffff;
            font-weight: 300;
        }

        .values-section {
            padding: 5rem 5%;
            background: transparent;
            max-width: 1400px;
            margin: 0 auto;
        }

        .values-subtitle {
            text-align: center;
            color: #6366f1;
            font-size: 0.9rem;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .values-heading {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 4rem;
            color: #fff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 1200px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        .value-card {
            background: rgba(99, 102, 241, 0.15);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 2px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s;
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: #6366f1;
            background: rgba(99, 102, 241, 0.2);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
        }

        .value-icon {
            margin: 0 auto 1.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .value-icon svg {
            width: 100%;
            height: 100%;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 700;
        }

        .value-card p {
            color: #b4b8d4;
            font-size: 1rem;
            line-height: 1.6;
        }

        .vision-section {
            padding: 5rem 5% 5rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .vision-section h2 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 3rem;
            color: #fff;
            line-height: 1.2;
        }

        .vision-content {
            max-width: none;
            padding-right: 15%;
        }

        .vision-intro {
            font-size: 1.5rem;
            line-height: 1.7;
            color: #fff;
            font-weight: 700;
            margin-bottom: 2.5rem;
            letter-spacing: -0.02em;
        }

        .vision-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #b4b8d4;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .core-values-section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .core-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .core-tag {
            color: #6366f1;
            font-size: 0.9rem;
            letter-spacing: 3px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .core-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.4;
            max-width: 900px;
            margin: 0 auto;
        }

        .core-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .core-card {
            background: rgba(20, 25, 50, 0.6);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            border: 2px solid rgba(99, 102, 241, 0.2);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .core-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .core-card:hover {
            transform: translateY(-10px);
            border-color: #6366f1;
            background: rgba(99, 102, 241, 0.15);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
        }

        .core-card:hover::before {
            transform: scaleX(1);
        }

        .core-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .core-card:hover .core-icon {
            background: rgba(99, 102, 241, 0.2);
            transform: scale(1.1) rotate(5deg);
        }

        .core-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .core-card p {
            font-size: 1rem;
            color: #b4b8d4;
            line-height: 1.6;
        }

        .why-choose-section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-choose-section h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 3rem;
            color: #fff;
            text-align: center;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: start;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0.5rem;
            border-radius: 8px;
        }

        .feature-item:hover {
            transform: translateX(5px);
            background: rgba(99, 102, 241, 0.1);
        }

        .feature-item.active {
            background: rgba(99, 102, 241, 0.15);
        }

        .feature-radio {
            min-width: 28px;
            width: 28px;
            height: 28px;
            position: relative;
            margin-top: 2px;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            stroke-dasharray: 69.12;
            stroke-dashoffset: 69.12;
            transition: stroke-dashoffset 0.8s ease-in-out;
        }

        .feature-item.active .progress-ring-circle {
            stroke-dashoffset: 0;
        }

        .brush-underline {
            height: 3px;
            background: linear-gradient(90deg, #6366f1 0%, rgba(99, 102, 241, 0.3) 100%);
            border-radius: 2px;
            width: 0;
            transition: width 0.6s ease-in-out 0.2s;
            margin-top: 2px;
            opacity: 0;
        }

        .feature-item.active .brush-underline {
            width: 100%;
            opacity: 1;
        }

        .feature-item h3,
        .feature-item p {
            margin: 0;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
        }

        .feature-item p {
            font-size: 1rem;
            color: #b4b8d4;
        }

        .feature-content {
            background: #6366f1;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
            transition: all 0.4s ease;
        }

        .feature-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            transition: opacity 0.3s ease;
        }

        .feature-content p {
            font-size: 1.1rem;
            color: #fff;
            line-height: 1.8;
            transition: opacity 0.3s ease;
        }

        .team-section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6366f1, transparent);
        }

        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .stats-tag {
            color: #6366f1;
            font-size: 0.9rem;
            letter-spacing: 3px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .team-section h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-subtitle {
            text-align: center;
            color: #b4b8d4;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(20, 25, 50, 0.6);
            border-radius: 20px;
            border: 2px solid rgba(99, 102, 241, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: #6366f1;
            box-shadow: 0 25px 60px rgba(99, 102, 241, 0.4);
            background: rgba(99, 102, 241, 0.15);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.15) rotate(10deg);
            background: rgba(99, 102, 241, 0.2);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.1);
        }

        .stat-label {
            color: #b4b8d4;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .stat-bar {
            width: 100%;
            height: 6px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .stat-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 10px;
            transition: width 1.5s ease-out;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .stat-card:hover .stat-bar-fill {
            animation: pulse 1.5s infinite;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                padding: 2rem 1.5rem;
            }

            .hero-stat-divider {
                width: 80%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
            }

            .hero-circle-1,
            .hero-circle-2,
            .hero-circle-3 {
                opacity: 0.05;
            }

            .mission-section h2 {
                font-size: 2.5rem;
            }

            .mission-box {
                padding: 3rem 2rem;
            }

            .mission-text {
                font-size: 1.2rem;
            }

            .quote-icon {
                width: 60px;
                height: 60px;
                right: 30px;
                top: -20px;
                font-size: 2rem;
            }

            .values-heading {
                font-size: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .vision-section h2,
            .core-values-section h2 {
                font-size: 2.5rem;
            }

            .vision-section {
                padding: 4rem 5%;
            }

            .vision-content {
                padding-right: 0;
            }

            .vision-intro {
                font-size: 1.3rem;
            }

            .vision-text {
                font-size: 1rem;
            }

            .core-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-section h2 {
                font-size: 2rem;
            }
        }




        html {
  scroll-behavior: smooth;
}



 /* products page temporary */
.page-spacer {
  min-height: 60vh;   /* Controls vertical space */
}
