/* ===================================
   GLOBAXIFY - MODERN STYLES
   Professional Blue & White Theme
   =================================== */

:root {
  /* Primary Colors - Professional Blue Theme */
  --primary-blue: #2563eb;
  --primary-light-blue: #3b82f6;
  --primary-dark-blue: #1d4ed8;
  --secondary-blue: #60a5fa;
  --accent-blue: #93c5fd;

  /* Light Blue Shades */
  --light-blue-50: #eff6ff;
  --light-blue-100: #dbeafe;
  --light-blue-200: #bfdbfe;
  --light-blue-300: #93c5fd;

  /* White & Gray Scale */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --gradient-light: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  --gradient-glow: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(59, 130, 246, 0.15) 100%
  );

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #eff6ff;
  --bg-glass: rgba(255, 255, 255, 0.95);

  /* Text Colors */
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #64748b;
  --text-white: #f8fafc;

  /* Accent Colors */
  --accent-glow-blue: rgba(37, 99, 235, 0.3);
  --accent-glow-light: rgba(59, 130, 246, 0.2);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
  --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 10px 40px rgba(37, 99, 235, 0.15);
  --shadow-glow-blue: 0 0 30px rgba(37, 99, 235, 0.25);
  --shadow-glow-light: 0 0 30px rgba(59, 130, 246, 0.2);
  --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   GLOWING BACKGROUND ELEMENTS
   =================================== */
.glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-blue);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light-blue);
  top: 50%;
  right: -100px;
  animation-delay: -5s;
}

.glow-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(30px, 50px) scale(1.05);
  }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1000;
  transition: var(--transition-medium);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-blue-200);
  border-radius: 16px;
}

.header.scrolled {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-blue-200);
  border-radius: 16px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow-blue);
  animation: pulse 2s infinite;
}

.logo-img {
  height: 90px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #336df7;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION - MODERN LUXURY DESIGN
   Text & Icons Only - No Images
   =================================== */

.hero-luxury {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fafc 30%,
    #eff6ff 70%,
    #dbeafe 100%
  );
}

/* Animated Background */
.hero-bg-luxury {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.luxury-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 40% 40%,
      rgba(96, 165, 250, 0.05) 0%,
      transparent 40%
    );
}

/* Container */
.container-luxury {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Hero Content */
.hero-content-luxury {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Luxury Badge */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes lineExpand {
  to {
    transform: scaleX(1);
  }
}

/* Main Headline */
.hero-headline {
  margin-bottom: 30px;
  position: relative;
}

.headline-line {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.headline-line.highlight {
  margin: 10px 0;
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.text-gradient::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 4px;
  z-index: -1;
}

/* Subtitle */
.hero-subtitle-luxury {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 50px;
  font-weight: 400;
}

/* CTA Buttons */
.hero-cta-luxury {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-luxury-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  border: none;
  cursor: pointer;
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
  gap: 20px;
}

.btn-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-luxury-primary:hover .btn-icon-wrap {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-luxury-primary:hover .btn-shine {
  left: 100%;
}

.btn-luxury-secondary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.9);
  color: #2563eb;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(37, 99, 235, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.btn-luxury-secondary:hover {
  background: white;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.btn-luxury-secondary .btn-icon-wrap {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.btn-luxury-secondary:hover .btn-icon-wrap {
  background: #2563eb;
  color: white;
}

/* ===== STATS ROW - ORIGINAL COLORS FOR ICONS ===== */
.hero-stats-luxury {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item-luxury {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.stat-item-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Stat Icons - Original Colors */
.stat-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stat 1 - Projects Completed (Blue) */
.stat-item-luxury:nth-child(1) .stat-icon-box {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Stat 2 - Happy Clients (Green) */
.stat-item-luxury:nth-child(3) .stat-icon-box {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* Stat 3 - Years Experience (Orange/Amber) */
.stat-item-luxury:nth-child(5) .stat-icon-box {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Stat 4 - Support (Purple) - if added */
.stat-item-luxury:nth-child(7) .stat-icon-box {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.stat-content {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(37, 99, 235, 0.2),
    transparent
  );
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px 25px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  transition: all 0.4s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.float-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.3);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.4s ease;
}

.float-card:hover .card-glow {
  opacity: 0.4;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== FLOATING CARDS - ORIGINAL ICON COLORS ===== */
.card-content i {
  font-size: 1.5rem;
}

/* Card 1 - Shopify (Green) */
.card-1 .card-content i {
  color: #96bf48;
  background: none;
  -webkit-text-fill-color: #96bf48;
}

/* Card 2 - Web Development (Blue) */
.card-2 .card-content i {
  color: #2563eb;
  background: none;
  -webkit-text-fill-color: #2563eb;
}

/* Card 3 - Marketing (Red/Orange) */
.card-3 .card-content i {
  color: #ea4335;
  background: none;
  -webkit-text-fill-color: #ea4335;
}

/* Card 4 - Design (Purple/Pink) */
.card-4 .card-content i {
  color: #ff69b4;
  background: none;
  -webkit-text-fill-color: #ff69b4;
}

.card-content span {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

/* Card Positions */
.card-1 {
  top: 15%;
  right: 10%;
  animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
  top: 30%;
  left: 8%;
  animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
  bottom: 25%;
  right: 15%;
  animation: floatCard3 8s ease-in-out infinite;
}

.card-4 {
  bottom: 20%;
  left: 12%;
  animation: floatCard4 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -20px);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -15px);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 10px);
  }
}

@keyframes floatCard4 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

/* Decorative Lines */
.deco-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  height: 1px;
  width: 100%;
  left: 0;
}

.line-1 {
  top: 20%;
}
.line-2 {
  top: 50%;
}
.line-3 {
  top: 80%;
}

/* Responsive */
@media (max-width: 1200px) {
  .headline-line {
    font-size: 3.5rem;
  }

  .float-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-luxury {
    padding: 100px 0 60px;
  }

  .container-luxury {
    padding: 0 20px;
  }

  .headline-line {
    font-size: 2.5rem;
  }

  .hero-subtitle-luxury {
    font-size: 1.1rem;
  }

  .hero-cta-luxury {
    flex-direction: column;
    align-items: center;
  }

  .btn-luxury-primary,
  .btn-luxury-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats-luxury {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item-luxury {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .headline-line {
    font-size: 2rem;
  }

  .luxury-badge {
    padding: 10px 20px;
  }

  .badge-text {
    font-size: 0.8rem;
  }
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.light-projects {
  padding: 120px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Animated Background Blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.bg-blobs .blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-blue);
  top: -200px;
  right: -100px;
}

.bg-blobs .blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-light-blue);
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

.bg-blobs .blob-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  top: 50%;
  left: 50%;
  animation-delay: -10s;
  opacity: 0.1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.light-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--light-blue-200);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.tagline-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tagline-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  font-weight: 600;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--primary-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Device Showcase */
.showcase-section {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.showcase-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.mockup-link {
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mockup-link:hover {
  transform: translateY(-15px);
}

.mockup-link::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(
    ellipse,
    rgba(37, 99, 235, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(10px);
}

.mockup-link:hover::after {
  opacity: 1;
}

/* Screen Styles */
.screen {
  background-color: #fff;
  border: 3px solid #fff;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow:
    0 20px 40px -10px rgba(37, 99, 235, 0.1),
    0 0 0 1px rgba(37, 99, 235, 0.05),
    inset 0 0 20px rgba(37, 99, 235, 0.02);
  transition: all 0.5s ease;
  position: relative;
}

.screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mockup-link:hover .screen {
  box-shadow:
    0 30px 60px -15px rgba(37, 99, 235, 0.2),
    0 0 0 2px rgba(37, 99, 235, 0.1);
}

.mockup-link:hover .screen::before {
  opacity: 1;
}

/* Laptop */
.laptop-screen {
  width: 550px;
  height: 340px;
  border-radius: 20px 20px 0 0;
  background-image: url("assets/Allbirds.png");
}

.laptop-base {
  width: 620px;
  height: 18px;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 0 0 20px 20px;
  position: relative;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    transparent
  );
  border-radius: 0 0 10px 10px;
}

/* Tablet */
.tablet-screen {
  width: 220px;
  height: 300px;
  border-radius: 25px;
  background-image: url("assets/big\ face\ tablet.png");
}

/* Mobile */
.mobile-screen {
  width: 140px;
  height: 280px;
  border-radius: 30px;
  background-image: url("assets/big\ face\ mobile.png");
}

/* Device Labels */
.device-label {
  margin-top: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
  border: 1px solid var(--light-blue-200);
}

.mockup-link:hover .device-label {
  opacity: 1;
  transform: translateY(0);
  color: var(--primary-blue);
}

/* Projects Grid */
.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.8rem;
  }

  .laptop-screen {
    width: 400px;
    height: 248px;
  }

  .laptop-base {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .showcase-wrapper {
    gap: 30px;
  }

  .laptop-screen {
    width: 280px;
    height: 173px;
  }

  .laptop-base {
    width: 310px;
  }

  .tablet-screen {
    width: 160px;
    height: 220px;
  }

  .mobile-screen {
    width: 100px;
    height: 200px;
  }
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid var(--light-blue-200);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index: 2;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(37, 99, 235, 0.15),
    0 0 0 1px rgba(37, 99, 235, 0.15);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  border: 1px solid var(--light-blue-200);
}

.project-card:hover .project-category {
  opacity: 1;
  transform: translateY(0);
}

/* Light Button */
.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  border: none;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(10px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.project-card:hover .project-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.project-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.project-btn i {
  transition: transform 0.3s ease;
}

.project-btn:hover i {
  transform: translateX(5px);
}

/* View All Button Container */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Light Button Style */
.btn-light {
  position: relative;
  padding: 18px 45px;
  background: var(--white);
  border: 2px solid var(--light-blue-200);
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-light:hover::before {
  left: 100%;
}

.btn-light:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-light-blue)
  );
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
}

.btn-light span {
  position: relative;
  z-index: 1;
}

/* Floating Shapes */
.shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary-blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  border: 2px solid var(--primary-light-blue);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 10s ease-in-out infinite reverse;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* ===================================
   SERVICES SECTION - LIGHT THEME
   =================================== */
.services-luxury {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
}

/* Background Elements */
.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.luxury-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.orb-blue {
  width: 600px;
  height: 600px;
  background: #2563eb;
  top: -200px;
  left: -200px;
  animation: orbFloat1 20s infinite ease-in-out;
}

.orb-purple {
  width: 500px;
  height: 500px;
  background: #3b82f6;
  bottom: -200px;
  right: -200px;
  animation: orbFloat2 25s infinite ease-in-out;
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, 50px) scale(1.1);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, -50px) scale(1.2);
  }
}

/* Container */
.container-services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header-luxury {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.header-badge span:nth-child(2) {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-title-luxury {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title-luxury .gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-subtitle-luxury {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Services Grid - 4 Cards in One Row */
.services-grid-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Card */
.service-card-luxury {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-blue-200);
  border-radius: 24px;
  padding: 40px 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card-luxury:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow:
    0 25px 50px -12px rgba(37, 99, 235, 0.15),
    0 0 0 1px rgba(37, 99, 235, 0.15);
}

.service-card-luxury:hover .card-glow {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
}

/* ===== CARD ICONS - ORIGINAL BRAND COLORS ===== */
.card-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: rotate(45deg);
  transition: all 0.4s ease;
  opacity: 0.1;
}

.service-card-luxury:hover .icon-bg {
  transform: rotate(0deg) scale(1.1);
  opacity: 0.15;
  border-radius: 24px;
}

/* Card 1 - Shopify Store Design (Shopify Green) */
.service-card-luxury:nth-child(1) .icon-bg {
  background: linear-gradient(135deg, #96bf48 0%, #7ab55c 100%);
}

.service-card-luxury:nth-child(1) .card-icon-wrapper i {
  color: #96bf48;
  background: none;
  -webkit-text-fill-color: #96bf48;
}

.service-card-luxury:nth-child(1):hover .card-title {
  color: #96bf48;
  background: none;
  -webkit-text-fill-color: #96bf48;
}

/* Card 2 - Web Development (Blue) */
.service-card-luxury:nth-child(2) .icon-bg {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.service-card-luxury:nth-child(2) .card-icon-wrapper i {
  color: #2563eb;
  background: none;
  -webkit-text-fill-color: #2563eb;
}

.service-card-luxury:nth-child(2):hover .card-title {
  color: #2563eb;
  background: none;
  -webkit-text-fill-color: #2563eb;
}

/* Card 3 - Product Hunting (Orange/Amber) */
.service-card-luxury:nth-child(3) .icon-bg {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card-luxury:nth-child(3) .card-icon-wrapper i {
  color: #f59e0b;
  background: none;
  -webkit-text-fill-color: #f59e0b;
}

.service-card-luxury:nth-child(3):hover .card-title {
  color: #f59e0b;
  background: none;
  -webkit-text-fill-color: #f59e0b;
}

/* Card 4 - Social Media Marketing (Pink/Red Gradient) */
.service-card-luxury:nth-child(4) .icon-bg {
  background: linear-gradient(135deg, #ec4899 0%, #dc2626 100%);
}

.service-card-luxury:nth-child(4) .card-icon-wrapper i {
  color: #ec4899;
  background: none;
  -webkit-text-fill-color: #ec4899;
}

.service-card-luxury:nth-child(4):hover .card-title {
  color: #ec4899;
  background: none;
  -webkit-text-fill-color: #ec4899;
}

/* Card 5 - SEO (Purple) */
.service-card-luxury:nth-child(5) .icon-bg {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-card-luxury:nth-child(5) .card-icon-wrapper i {
  color: #8b5cf6;
  background: none;
  -webkit-text-fill-color: #8b5cf6;
}

.service-card-luxury:nth-child(5):hover .card-title {
  color: #8b5cf6;
  background: none;
  -webkit-text-fill-color: #8b5cf6;
}

/* Card 6 - Content Writing (Teal) */
.service-card-luxury:nth-child(6) .icon-bg {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.service-card-luxury:nth-child(6) .card-icon-wrapper i {
  color: #14b8a6;
  background: none;
  -webkit-text-fill-color: #14b8a6;
}

.service-card-luxury:nth-child(6):hover .card-title {
  color: #14b8a6;
  background: none;
  -webkit-text-fill-color: #14b8a6;
}

/* Card 7 - Graphic Design (Indigo) */
.service-card-luxury:nth-child(7) .icon-bg {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.service-card-luxury:nth-child(7) .card-icon-wrapper i {
  color: #6366f1;
  background: none;
  -webkit-text-fill-color: #6366f1;
}

.service-card-luxury:nth-child(7):hover .card-title {
  color: #6366f1;
  background: none;
  -webkit-text-fill-color: #6366f1;
}

/* Card 8 - Video Editing (Red) */
.service-card-luxury:nth-child(8) .icon-bg {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.service-card-luxury:nth-child(8) .card-icon-wrapper i {
  color: #dc2626;
  background: none;
  -webkit-text-fill-color: #dc2626;
}

.service-card-luxury:nth-child(8):hover .card-title {
  color: #dc2626;
  background: none;
  -webkit-text-fill-color: #dc2626;
}

.card-icon-wrapper i {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.service-card-luxury:hover .card-icon-wrapper i {
  transform: scale(1.1);
}

.icon-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card-luxury:hover .icon-ring {
  opacity: 1;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-color: rgba(37, 99, 235, 0.2);
}

/* Card Title */
.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Card Description */
.card-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ===== CARD FEATURES - ORIGINAL COLORS ===== */
.card-features {
  list-style: none;
  margin-bottom: 25px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-medium);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.card-features li:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

/* Feature icons match card colors */
.service-card-luxury:nth-child(1) .feature-icon {
  background: rgba(150, 191, 72, 0.1);
  color: #96bf48;
}

.service-card-luxury:nth-child(1):hover .feature-icon {
  background: linear-gradient(135deg, #96bf48 0%, #7ab55c 100%);
  color: white;
}

.service-card-luxury:nth-child(2) .feature-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.service-card-luxury:nth-child(2):hover .feature-icon {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
}

.service-card-luxury:nth-child(3) .feature-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.service-card-luxury:nth-child(3):hover .feature-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.service-card-luxury:nth-child(4) .feature-icon {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.service-card-luxury:nth-child(4):hover .feature-icon {
  background: linear-gradient(135deg, #ec4899 0%, #dc2626 100%);
  color: white;
}

.service-card-luxury:nth-child(5) .feature-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-card-luxury:nth-child(5):hover .feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.service-card-luxury:nth-child(6) .feature-icon {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.service-card-luxury:nth-child(6):hover .feature-icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white;
}

.service-card-luxury:nth-child(7) .feature-icon {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.service-card-luxury:nth-child(7):hover .feature-icon {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
}

.service-card-luxury:nth-child(8) .feature-icon {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.service-card-luxury:nth-child(8):hover .feature-icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
}

/* Hover Content (Price) */
.card-hover-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.service-card-luxury:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}

/* Card Shine Effect */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s ease;
  pointer-events: none;
}

.service-card-luxury:hover .card-shine {
  left: 100%;
}

/* Show More Button */
.show-more-container {
  text-align: center;
  margin-top: 40px;
}

.btn-show-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.btn-icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.btn-icon i {
  transition: transform 0.4s ease;
}

.btn-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
  z-index: 1;
}

.btn-show-more:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  color: white;
}

.btn-show-more:hover .btn-glow-effect {
  width: 400px;
  height: 400px;
}

.btn-show-more:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg);
}

.btn-show-more:hover .btn-icon i {
  transform: translateY(3px);
}

/* Button Active State (When Expanded) */
.btn-show-more.active {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-color: transparent;
  color: white;
}

.btn-show-more.active .btn-icon {
  transform: rotate(180deg);
}

.btn-show-more.active .btn-icon i {
  transform: translateY(-3px);
}

.card-secondary {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title-luxury {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services-luxury {
    padding: 80px 0;
  }

  .container-services {
    padding: 0 20px;
  }

  .section-title-luxury {
    font-size: 2.2rem;
  }

  .section-subtitle-luxury {
    font-size: 1rem;
  }

  .services-grid-luxury {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card-luxury {
    padding: 30px 25px;
  }

  .card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .card-icon-wrapper i {
    font-size: 2rem;
  }

  .btn-show-more {
    padding: 18px 35px;
    font-size: 1rem;
  }

  .card-hover-content {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    opacity: 1;
    transform: none;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .section-title-luxury {
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .card-features li {
    font-size: 0.85rem;
  }
}

/* ===================================
   CEO SECTION
   =================================== */
.ceo-section-attractive {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(239, 246, 255, 0.8) 0%,
    rgba(219, 234, 254, 0.6) 100%
  );
}

/* Background Elements */
.ceo-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb-ceo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -150px;
  left: -150px;
  animation: orbFloat1 20s infinite ease-in-out;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: -100px;
  right: -100px;
  animation: orbFloat2 25s infinite ease-in-out;
}

.grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Container */
.container-ceo-attractive {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.ceo-grid-attractive {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

/* Left Side - Image Area */
.ceo-image-area {
  position: relative;
}

.image-frame-attractive {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Decorative Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: rotateRing 20s linear infinite;
}

.ring-1 {
  width: 450px;
  height: 450px;
  border-top-color: rgba(37, 99, 235, 0.2);
  border-right-color: rgba(37, 99, 235, 0.1);
  animation-duration: 20s;
}

.ring-2 {
  width: 500px;
  height: 500px;
  border-bottom-color: rgba(59, 130, 246, 0.2);
  border-left-color: rgba(59, 130, 246, 0.1);
  animation-duration: 25s;
  animation-direction: reverse;
}

.ring-3 {
  width: 550px;
  height: 550px;
  border: 2px dashed rgba(37, 99, 235, 0.1);
  animation-duration: 30s;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Main Image Box */
.main-image-box {
  position: relative;
  z-index: 2;
}

.image-glow-effect {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 30px;
  filter: blur(40px);
  opacity: 0.2;
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.02);
  }
}

.image-wrapper-3d {
  position: relative;
  width: 380px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(37, 99, 235, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  border: 1px solid var(--light-blue-200);
}

.ceo-image-attractive {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper-3d:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.image-wrapper-3d:hover .ceo-image-attractive {
  transform: scale(1.05);
}

/* Floating Badge */
.ceo-badge-floating {
  position: absolute;
  top: 20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  animation: floatBadge 6s infinite ease-in-out;
  border: 1px solid var(--light-blue-200);
  z-index: 10;
}

.badge-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.badge-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Experience Counter */

@keyframes floatExp {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Decorative Dots */
.deco-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #2563eb 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 1;
}

.dots-1 {
  top: -30px;
  left: -30px;
  animation: floatDots 8s infinite ease-in-out;
}

.dots-2 {
  bottom: -30px;
  right: -30px;
  animation: floatDots 8s infinite ease-in-out;
  animation-delay: -4s;
}

@keyframes floatDots {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 10px);
  }
}

/* Right Side - Content Area */
.ceo-content-area {
  position: relative;
}

/* Section Badge */
.section-badge-ceo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 25px;
}

.badge-dot-ceo {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Name Styling */
.ceo-name-attractive {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.name-line {
  display: block;
}

.gradient-name {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.gradient-name::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0.15;
  border-radius: 4px;
}

/* Bio Text */
.ceo-bio-attractive {
  margin-bottom: 40px;
}

.bio-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.bio-text.secondary {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 20px;
  border-left: 3px solid #2563eb;
}

/* Achievement Cards */
.achievement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.achieve-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--light-blue-200);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.achieve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.achieve-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.achieve-card:hover .achieve-glow {
  opacity: 1;
}

.achieve-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  transition: transform 0.4s ease;
}

.achieve-card:hover .achieve-icon {
  transform: scale(1.1) rotate(5deg);
}

.achieve-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.achieve-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Achievement Cards Icons - Original Colors */

/* First Card - Blue (Chart/Analytics) */
.achieve-card:nth-child(1) .achieve-icon {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.achieve-card:nth-child(1) .achieve-number {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achieve-card:nth-child(1):hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.achieve-card:nth-child(1) .achieve-glow {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
}

/* Second Card - Green (Users/Team) */
.achieve-card:nth-child(2) .achieve-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

.achieve-card:nth-child(2) .achieve-number {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achieve-card:nth-child(2):hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.achieve-card:nth-child(2) .achieve-glow {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(5, 150, 105, 0.1),
    transparent 70%
  );
}

/* Third Card - Gold/Orange (Trophy/Award) */
.achieve-card:nth-child(3) .achieve-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.achieve-card:nth-child(3) .achieve-number {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achieve-card:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.achieve-card:nth-child(3) .achieve-glow {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(245, 158, 11, 0.1),
    transparent 70%
  );
}

/* Quote Section */
.ceo-quote-attractive {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px 35px;
  border-radius: 24px;
  margin-bottom: 35px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  border: 1px solid var(--light-blue-200);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.ceo-quote-attractive blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 10px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.quote-author span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Social Links */
.ceo-social-attractive {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.social-link-ceo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.social-link-ceo i {
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

/* Facebook - Original Blue #1877F2 */
.social-link-ceo[href*="facebook"] i {
  color: #1877f2;
}

/* TikTok - Original Black (or use their brand colors) */
.social-link-ceo[href*="tiktok"] i {
  color: #000000;
}

/* Instagram - Original Gradient colors (using purple/pink as base) */
.social-link-ceo[href*="instagram"] i {
  color: #e4405f;
}

/* Gmail/Email - Original Red #EA4335 */
.social-link-ceo[href*="mailto"] i,
.social-link-ceo[href*="gmail"] i {
  color: #ea4335;
}

/* Hover Effects */
.social-link-ceo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  border-color: transparent;
  color: white;
}

/* Facebook Hover */
.social-link-ceo[href*="facebook"]:hover {
  background: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

/* TikTok Hover */
.social-link-ceo[href*="tiktok"]:hover {
  background: #000000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Instagram Hover */
.social-link-ceo[href*="instagram"]:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  box-shadow: 0 10px 25px rgba(228, 64, 95, 0.4);
}

/* Gmail/Email Hover */
.social-link-ceo[href*="mailto"]:hover,
.social-link-ceo[href*="gmail"]:hover {
  background: #ea4335;
  box-shadow: 0 10px 25px rgba(234, 67, 53, 0.4);
}

.social-link-ceo:hover i {
  color: white;
}

/* CTA Button */
.ceo-cta {
  display: inline-block;
}

.btn-ceo-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    #25d366 0%,
    #128c7e 100%
  ); /* WhatsApp Green Gradient */
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); /* WhatsApp green shadow */
  border: none;
  cursor: pointer;
}

.btn-ceo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5); /* WhatsApp green hover shadow */
  gap: 20px;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-ceo-cta:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 15s infinite ease-in-out;
}

.floating-shapes .shape-1 {
  width: 100px;
  height: 100px;
  background: #2563eb;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-shapes .shape-2 {
  width: 60px;
  height: 60px;
  background: #3b82f6;
  bottom: 30%;
  right: 20%;
  animation-delay: -5s;
}

.floating-shapes .shape-3 {
  width: 80px;
  height: 80px;
  background: #2563eb;
  top: 60%;
  right: 5%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -50px) scale(1.1);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .ceo-grid-attractive {
    gap: 60px;
  }

  .image-wrapper-3d {
    width: 320px;
    height: 420px;
  }

  .ceo-name-attractive {
    font-size: 3rem;
  }

  .ring {
    display: none;
  }
}

@media (max-width: 992px) {
  .ceo-grid-attractive {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ceo-image-area {
    order: -1;
  }

  .image-wrapper-3d {
    width: 350px;
    height: 450px;
  }

  .ceo-badge-floating {
    right: 20px;
  }

  .ceo-content-area {
    text-align: center;
  }

  .ceo-bio-attractive {
    text-align: left;
  }

  .achievement-cards {
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .ceo-social-attractive {
    justify-content: center;
  }

  .ceo-quote-attractive {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ceo-section-attractive {
    padding: 80px 0;
  }

  .container-ceo-attractive {
    padding: 0 20px;
  }

  .image-wrapper-3d {
    width: 280px;
    height: 360px;
  }

  .ceo-badge-floating {
    top: 20px;
    right: 10px;
    padding: 10px 15px;
    transform: scale(0.9);
  }

  .ceo-name-attractive {
    font-size: 2.2rem;
  }

  .achievement-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .achieve-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 20px;
  }

  .achieve-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .ceo-social-attractive {
    gap: 10px;
  }

  .social-link-ceo {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .ceo-quote-attractive {
    padding: 25px;
  }

  .ceo-quote-attractive blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-wrapper-3d {
    width: 240px;
    height: 320px;
  }

  .ceo-name-attractive {
    font-size: 1.8rem;
  }

  .bio-text {
    font-size: 1rem;
  }

  .btn-ceo-cta {
    width: 100%;
    justify-content: center;
  }

  .floating-shapes {
    display: none;
  }
}

/* ---upwork profiles Section---- */

/* smooth global scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* custom modern section container */
        .section {
            padding: 40px 8%;
            text-align: center;
            position: relative;
        }

        /* background glow effect */
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* heading style with dark navy color */
        .section h2 {
            font-size: 52px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
            animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        /* stylish underline accent - Blue gradient */
        .section h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 41%;
            transform: translateX(-50%);
            width: 110px;
            height: 5px;
            background: linear-gradient(135deg, #2563eb 0%, #041024 100%);
            border-radius: 4px;
            background-size: 200% auto;
            animation: shimmerLine 3s infinite linear;
        }

        .gradient-text-upwork {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes shimmerLine {
            0% {
                background-position: 0% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .section p {
            font-size: 1.2rem;
            color: #64748b;
            margin-top: 10px;
            margin-bottom: 30px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            animation: fadeSlideUp 0.7s 0.1s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        /* GRID - 4 cards per row on desktop */
        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* CARD - Same color scheme as heading (white bg, dark navy text) */
        .card {
            background: #ffffff;
            border-radius: 24px;
            padding: 30px 20px 32px;
            transition: all 0.5s cubic-bezier(0.2, 0.95, 0.4, 1.1);
            box-shadow: 0 10px 40px -15px rgba(15, 23, 42, 0.15),
                0 0 0 1px rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.06);
            cursor: pointer;
            animation: cardReveal 0.6s ease-out forwards;
            opacity: 0;
            transform: scale(0.96) translateY(15px);
            position: relative;
            overflow: hidden;
        }

        /* Shimmer effect on hover */
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
            transition: left 0.7s;
        }

        .card:hover::before {
            left: 100%;
        }

        /* staggered animation delay for each card */
        .card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .card:nth-child(6) {
            animation-delay: 0.3s;
        }

        .card:nth-child(7) {
            animation-delay: 0.35s;
        }

        .card:nth-child(8) {
            animation-delay: 0.4s;
        }

        .card:nth-child(9) {
            animation-delay: 0.45s;
        }

        .card:nth-child(10) {
            animation-delay: 0.5s;
        }

        @keyframes cardReveal {
            0% {
                opacity: 0;
                transform: scale(0.96) translateY(25px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* HOVER EFFECT - Lift + Blue glow + Border highlight */
        .card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px -20px rgba(37, 99, 235, 0.25),
                0 0 0 1px rgba(37, 99, 235, 0.2),
                0 20px 40px -15px rgba(15, 23, 42, 0.2);
            border-color: rgba(37, 99, 235, 0.3);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
        }

        /* Profile Image wrapper - Circular with blue gradient border */
        .profile-img-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            position: relative;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
            background-size: 200% 200%;
            animation: gradientRotate 3s ease infinite;
            box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.4);
        }

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

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .profile-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #ffffff;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        /* Image hover - scale + shadow */
        .card:hover .profile-img-wrapper img {
            transform: scale(1.08);
            box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
        }

        /* Name - Same dark navy as heading */
        .name {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-top: 8px;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
            transition: all 0.3s ease;
        }

        /* Name hover - Blue color */
        .card:hover .name {
            color: #2563eb;
            transform: scale(1.02);
        }

        /* Role - Blue accent badge */
        .role {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #2563eb;
            background: rgba(37, 99, 235, 0.1);
            display: inline-block;
            padding: 5px 14px;
            border-radius: 40px;
            margin-bottom: 20px;
            border: 1px solid rgba(37, 99, 235, 0.2);
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .card:hover .role {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
            transform: translateY(-2px);
        }

        /* BUTTON - Blue gradient style */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 50px;
            background: transparent;
            color: #2563eb;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 2px solid #2563eb;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            transition: width 0.45s ease-out;
            z-index: -1;
            border-radius: 50px;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            color: #ffffff;
            border-color: transparent;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.5);
        }

        .btn:active {
            transform: scale(0.98);
        }

        /* Card active state */
        .card:active {
            transform: scale(0.98);
            transition: 0.05s linear;
        }

        /* Keyframe animations */
        @keyframes fadeSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating background elements */
        body::after {
            content: '';
            position: fixed;
            top: 20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }

        body::before {
            content: '';
            position: fixed;
            bottom: 10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 780px) {
            .section {
                padding: 70px 5%;
            }

            .section h2 {
                font-size: 38px;
            }

            .grid {
                gap: 24px;
            }

            .card {
                padding: 24px 20px 28px;
            }

            .profile-img-wrapper {
                width: 120px;
                height: 120px;
            }

            .btn {
                padding: 12px 28px;
            }
        }

        @media (max-width: 480px) {
            .section h2 {
                font-size: 32px;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .name {
                font-size: 20px;
            }

            .profile-img-wrapper {
                width: 100px;
                height: 100px;
            }
        }

        /* Modern scrollbar - Blue accent */
        ::-webkit-scrollbar {
            width: 8px;
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #2563eb, #3b82f6);
            border-radius: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #e2e8f0;
        }

        /* Focus visible */
        .btn:focus-visible {
            outline: 3px solid #2563eb;
            outline-offset: 2px;
        }

        /* Online status dot */
        .status-dot {
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 16px;
            height: 16px;
            background: #22c55e;
            border-radius: 50%;
            border: 3px solid #ffffff;
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

/* Team Section - Complete CSS with Working Counter */
.team-modern-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  min-height: 100vh;
}

/* Animated Background */
.team-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gradient-orb-team {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: floatOrb 15s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #2563eb;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: #60a5fa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.grid-pattern-team {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(37, 99, 235, 0.05) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}

.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Container */
.container-team-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Header */
.team-header-modern {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag-team {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tag-line-left,
.tag-line-right {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.tag-text {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-title-modern {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gradient-text-team {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-subtitle-modern {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Team Grid */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Modern Card Design */
.team-card-modern {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.team-card-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.card-border-gradient {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.3),
    rgba(59, 130, 246, 0.3),
    rgba(96, 165, 250, 0.3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Highlighted Card (Center) */
.card-highlighted {
  transform: scale(1.05);
  z-index: 2;
  border-color: rgba(37, 99, 235, 0.3);
}

.card-highlighted:hover {
  transform: scale(1.08) translateY(-10px);
}

.glow-effect {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
  border-radius: 26px;
  opacity: 0.2;
  filter: blur(20px);
  z-index: -1;
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.3;
  }
}

/* Member Image Container */
.member-image-container {
  position: relative;
  margin-bottom: 25px;
}

.image-bg-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: all 0.4s;
}

.blob-1 {
  background: #2563eb;
}
.blob-2 {
  background: #3b82f6;
}
.blob-3 {
  background: #60a5fa;
}

.team-card-modern:hover .image-bg-blob {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.4;
}

.member-image {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #dbeafe;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
  z-index: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.team-card-modern:hover .member-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
}

.team-card-modern:hover .image-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.team-card-modern:hover .social-links {
  transform: translateY(0);
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid #dbeafe;
}

.social-btn:hover {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.exp-number {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.65rem;
  opacity: 0.9;
  text-transform: uppercase;
}

/* Member Details */
.member-details {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.member-role {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Skills */
.skills-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.skill-pill {
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #2563eb;
  font-weight: 500;
  transition: all 0.3s;
}

.skill-pill:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

/* Card Shine Effect */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
  pointer-events: none;
}

.team-card-modern:hover .card-shine {
  left: 100%;
}

/* Stats Bar - FIXED COUNTER STYLES */
.team-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

/* Stat 1 - Blue (Team/People) */
.stat-box:nth-child(1) .stat-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.stat-box:nth-child(1) .stat-number {
  color: #2563eb;
}

/* Stat 2 - Green (Projects/Check) */
.stat-box:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

.stat-box:nth-child(2) .stat-number {
  color: #059669;
}

/* Stat 3 - Orange (Clock/Time) */
.stat-box:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.stat-box:nth-child(3) .stat-number {
  color: #ea580c;
}

/* Stat 4 - Purple (Award/Star) */
.stat-box:nth-child(4) .stat-icon {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.stat-box:nth-child(4) .stat-number {
  color: #7c3aed;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

/* Counter Number - Fixed for NaN issue */
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  min-width: 60px; /* Prevent layout shift */
}

/* Static number styling (for 24/7) */
.stat-number:not(.counter-team) {
  color: #2563eb;
}

/* Counter animation class */
.counter-team {
  display: inline-block;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
}

/* Join Team Section */
.join-team-section {
  display: flex;
  justify-content: center;
}

.join-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.05)
  );
  border-radius: 24px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid #dbeafe;
  overflow: hidden;
  transition: all 0.4s;
}

.join-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.join-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}

.join-icon-pulse {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  animation: iconPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
  }
}

.join-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.avatar-1 {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.avatar-2 {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.avatar-3 {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
}

.avatar-plus {
  background: rgba(37, 99, 235, 0.1);
  border-color: #dbeafe;
  color: #2563eb;
}

.join-content h4 {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.join-content p {
  color: #64748b;
  font-size: 0.95rem;
}

.btn-join-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-join-modern:hover {
  transform: translateX(5px);
  gap: 15px;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.join-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(37, 99, 235, 0.1),
    transparent 50%
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid-modern {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .card-highlighted {
    transform: scale(1);
    order: -1;
  }

  .card-highlighted:hover {
    transform: scale(1.03) translateY(-10px);
  }

  .team-stats-bar {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-box {
    width: 45%;
    justify-content: center;
  }

  .join-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .join-visual {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .team-title-modern {
    font-size: 2.2rem;
  }

  .team-subtitle-modern {
    font-size: 1rem;
  }

  .team-stats-bar {
    padding: 20px;
  }

  .stat-box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .team-stats-bar {
    flex-direction: column;
    gap: 25px;
  }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-luxury {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
}

/* Background Elements */
.about-bg-luxury {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb-about {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: orbFloatAbout 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #60a5fa;
  top: 50%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes orbFloatAbout {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.particles-about {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Container */
.container-about-luxury {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.about-header-luxury {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag-luxury {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tag-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.section-tag-luxury span:nth-child(2) {
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-title-luxury {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text-about {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle-luxury {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content Grid */
.about-content-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Left Side - Story & Mission */
.about-left-luxury {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Story Card */
.story-card-luxury {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--light-blue-200);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.story-card-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.card-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
  animation: floatIcon 3s infinite ease-in-out;
}

/* Story Card Icon - Blue (Building/Company) */
.story-card-luxury .card-icon-large {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.story-card-luxury h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.story-card-luxury p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.story-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.highlight-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.highlight-text {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Mission Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--light-blue-200);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

/* Mission Icon - Green (Target/Goal) */
.mission .mv-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

/* Vision Icon - Purple (Eye/View) */
.vision .mv-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.mv-card h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Right Side - Stats & Values */
.about-right-luxury {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Stats Grid */
.stats-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card-large {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--light-blue-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.stat-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-large:hover .stat-glow {
  opacity: 1;
}

.stat-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.stat-card-large:hover .stat-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

/* Stat 1 - Blue (Users/Team) */
.stat-card-large:nth-child(1) .stat-icon-wrap {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.stat-card-large:nth-child(1) .stat-number-about {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat 2 - Orange (Projects/Briefcase) */
.stat-card-large:nth-child(2) .stat-icon-wrap {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3);
}

.stat-card-large:nth-child(2) .stat-number-about {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat 3 - Green (Award/Trophy) */
.stat-card-large:nth-child(3) .stat-icon-wrap {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 15px 30px rgba(5, 150, 105, 0.3);
}

.stat-card-large:nth-child(3) .stat-number-about {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat 4 - Purple (Heart/Clients) */
.stat-card-large:nth-child(4) .stat-icon-wrap {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

.stat-card-large:nth-child(4) .stat-number-about {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number-about {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-about {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Values Section */
.values-section-luxury {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--light-blue-200);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.values-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.value-item:hover {
  background: white;
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.value-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Value 1 - Blue (Shield/Trust) */
.value-item:nth-child(1) .value-icon-box {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Value 2 - Green (Leaf/Sustainability) */
.value-item:nth-child(2) .value-icon-box {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.3);
}

/* Value 3 - Orange (Lightbulb/Innovation) */
.value-item:nth-child(3) .value-icon-box {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.3);
}

/* Value 4 - Purple (Users/Community) */
.value-item:nth-child(4) .value-icon-box {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

.value-content h5 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 600;
}

.value-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-luxury {
  margin-bottom: 80px;
}

.wcu-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-weight: 700;
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.wcu-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid var(--light-blue-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.wcu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2563eb, #3b82f6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.wcu-card:hover::before {
  opacity: 1;
}

.wcu-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.wcu-card:hover .wcu-number {
  color: rgba(37, 99, 235, 0.2);
}

.wcu-content h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.wcu-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Location Section */
.location-luxury {
  margin-bottom: 80px;
}

.location-card {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  border-radius: 50%;
}

.location-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335; /* Google Maps Red */
  font-size: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: pulseLocation 2s infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulseLocation {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.location-content {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.location-content h4 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.location-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.location-content span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.location-map {
  position: relative;
  z-index: 1;
}

.map-pin {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335; /* Google Maps Red */
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-radius: 50%;
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* CTA Section */
.about-cta-luxury {
  text-align: center;
}

.cta-content-box {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.cta-content-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}

.cta-content-box h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-content-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-about-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  gap: 18px;
}

.btn-about-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.btn-about-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .about-content-luxury {
    gap: 40px;
  }

  .about-title-luxury {
    font-size: 2.8rem;
  }

  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-content-luxury {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .location-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .about-luxury {
    padding: 80px 0;
  }

  .container-about-luxury {
    padding: 0 20px;
  }

  .about-title-luxury {
    font-size: 2.2rem;
  }

  .story-card-luxury {
    padding: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .wcu-grid {
    grid-template-columns: 1fr;
  }

  .cta-content-box {
    padding: 40px 30px;
  }

  .cta-content-box h3 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-about-primary,
  .btn-about-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-title-luxury {
    font-size: 1.8rem;
  }

  .stats-grid-luxury {
    grid-template-columns: 1fr;
  }

  .stat-card-large {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
  }

  .stat-icon-wrap {
    margin: 0;
  }

  .location-card {
    padding: 30px;
  }
}

/* ===================================
   REVIEWS SECTION - LIGHT THEME
   =================================== */
.reviews-luxury {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
}

/* Background Elements */
.reviews-bg-luxury {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: sphereFloat 20s infinite ease-in-out;
}

.sphere-1 {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.sphere-2 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: -150px;
  right: -100px;
  animation-delay: -7s;
}

.sphere-3 {
  width: 300px;
  height: 300px;
  background: #60a5fa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes sphereFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.floating-stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.noise-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg '%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container-reviews-luxury {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.reviews-header-luxury {
  text-align: center;
  margin-bottom: 60px;
}

.header-badge-reviews {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  margin-bottom: 25px;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-star {
  animation: starPulse 2s infinite;
  color: #ffd700; /* Yellow star */
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.reviews-title-luxury {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text-reviews {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle-luxury {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Rating Overview */
.rating-overview {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-blue-200);
  border-radius: 20px;
  padding: 25px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rating-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-stars-big {
  color: #ffd700; /* Yellow stars */
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
}

.rating-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(37, 99, 235, 0.2),
    transparent
  );
}

.rating-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.stat-item {
  color: var(--text-light);
  font-size: 0.95rem;
}

.stat-item strong {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-right: 5px;
}

/* Reviews Carousel */
.reviews-carousel-luxury {
  position: relative;
  margin-bottom: 80px;
}

.slider-container {
  overflow: hidden;
  border-radius: 30px;
  padding: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card */
.review-card-luxury {
  min-width: 100%;
  padding: 20px;
  opacity: 0.3;
  transform: scale(0.9);
  transition: all 0.6s ease;
  position: relative;
}

.review-card-luxury.active {
  opacity: 1;
  transform: scale(1);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card-luxury.active .card-glow {
  opacity: 1;
}

.review-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--light-blue-200);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.quote-icon-luxury {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  animation: quoteFloat 3s infinite ease-in-out;
}

@keyframes quoteFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.review-text-luxury {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--text-medium);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.review-rating {
  display: flex;
  gap: 8px;
  color: #ffd700; /* Yellow stars */
  font-size: 1.3rem;
}

.reviewer-info-luxury {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 50px;
}

.reviewer-image {
  position: relative;
  width: 90px;
  height: 90px;
}

.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 2;
}

.image-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.reviewer-role {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 10px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 500;
}

.verified-badge i {
  font-size: 0.9rem;
  color: #ffd700; /* Yellow checkmark */
}

.company-logo {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700; /* Yellow icon */
  font-size: 1.8rem;
}

/* Navigation */
.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-blue-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.nav-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.nav-btn:hover .btn-glow {
  width: 100px;
  height: 100px;
}

/* Dots */
.slider-dots-luxury {
  display: flex;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffa500 100%
  ); /* Yellow/Orange gradient */
  border-radius: 50%;
  transition: all 0.4s ease;
}

.dot.active {
  background: transparent;
}

.dot.active::after {
  width: 100%;
  height: 100%;
}

.dot:hover {
  transform: scale(1.3);
}

/* Progress Bar */
.slider-progress {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  height: 4px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    #ffd700 0%,
    #ffa500 100%
  ); /* Yellow/Orange gradient */
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 20%;
}

/* Trust Badges */
.trust-badges-luxury {
  text-align: center;
  margin-bottom: 60px;
}

.trust-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 2.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  padding: 15px;
  border-radius: 15px;
  position: relative;
}

/* Google - Original Color #4285F4 */
.trust-logo .fa-google {
  color: #4285f4;
}

/* Microsoft - Original Color #00A4EF */
.trust-logo .fa-microsoft {
  color: #00a4ef;
}

/* Amazon - Original Color #FF9900 */
.trust-logo .fa-amazon {
  color: #ff9900;
}

/* Shopify - Original Color #95BF47 */
.trust-logo .fa-shopify {
  color: #95bf47;
}

/* WordPress - Original Color #21759b */
.trust-logo .fa-wordpress {
  color: #21759b;
}

/* Hover effect - Only background glow, icon color remains same */
.trust-logo:hover {
  background: rgba(255, 215, 0, 0.1); /* Light yellow glow */
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); /* Yellow glow effect */
  transform: translateY(-5px);
}

/* Reviews CTA */
.reviews-cta-luxury {
  margin-top: 60px;
}

.cta-box-reviews {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(10px);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
  animation: ctaIconPulse 2s infinite;
}

@keyframes ctaIconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
  }
}

.cta-content h3 {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.btn-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  flex-shrink: 0;
}

.btn-reviews-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
  gap: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
  .reviews-title-luxury {
    font-size: 3rem;
  }

  .review-text-luxury {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .review-content {
    padding: 40px;
  }

  .reviewer-info-luxury {
    padding: 0 40px;
    flex-wrap: wrap;
  }

  .company-logo {
    display: none;
  }

  .cta-box-reviews {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reviews-luxury {
    padding: 80px 0;
  }

  .container-reviews-luxury {
    padding: 0 20px;
  }

  .reviews-title-luxury {
    font-size: 2.2rem;
  }

  .rating-overview {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .rating-divider {
    width: 60px;
    height: 1px;
  }

  .review-content {
    padding: 30px;
  }

  .quote-icon-luxury {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .review-text-luxury {
    font-size: 1.1rem;
  }

  .reviewer-info-luxury {
    padding: 0;
    flex-direction: column;
    text-align: center;
  }

  .reviewer-image {
    width: 80px;
    height: 80px;
  }

  .slider-navigation {
    gap: 20px;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
  }

  .trust-logos {
    gap: 30px;
  }

  .trust-logo {
    font-size: 2rem;
  }

  .btn-reviews-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .review-content {
    padding: 25px;
  }

  .review-text-luxury {
    font-size: 1rem;
  }

  .review-rating {
    font-size: 1.1rem;
  }

  .reviewer-name {
    font-size: 1.2rem;
  }

  .cta-box-reviews {
    padding: 30px 25px;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

/* ===================================
   CONTACT SECTION
   =================================== */

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: #6b7280;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CONTACT CARDS ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

/* Location - Blue */
.contact-card:nth-child(1) .contact-icon {
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

/* Email - Red */
.contact-card:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

/* Phone - Green */
.contact-card:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #34a853 0%, #137333 100%);
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #1f2937;
  font-weight: 600;
}

.contact-details p {
  color: #6b7280;
  font-size: 0.9rem;
  word-break: break-word;
}

/* ===== SOCIAL BUTTONS ===== */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Facebook */
.social-btn:nth-child(1) {
  background: #1877f2;
}

.social-btn:nth-child(1):hover {
  background: #166fe5;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* TikTok */
.social-btn:nth-child(2) {
  background: #000000;
}

.social-btn:nth-child(2):hover {
  background: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Instagram */
.social-btn:nth-child(3) {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-btn:nth-child(3):hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  position: relative;
  width: 100%;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #1f2937;
  transition: all 0.3s ease;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.95rem;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
}

.form-group textarea ~ label {
  top: 20px;
  transform: translateY(0);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: #2563eb;
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group textarea ~ i {
  top: 20px;
  transform: translateY(0);
}

.form-group input:focus ~ i,
.form-group select:focus ~ i,
.form-group textarea:focus ~ i {
  color: #2563eb;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: none;
  color: #9ca3af;
}

.form-group select option {
  color: #1f2937;
}

.form-group select:valid {
  color: #1f2937;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  margin-top: 10px;
  touch-action: manipulation;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
  gap: 15px;
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Glow Effect */
.glow-form:focus-within {
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

/* ===== TABLET BREAKPOINT (768px) ===== */
@media (min-width: 768px) {
  .contact {
    padding: 100px 30px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-tag {
    padding: 10px 24px;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .contact-container {
    gap: 50px;
  }

  .contact-card {
    padding: 25px;
    gap: 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 40px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 50px 15px 20px;
    font-size: 1rem;
  }

  .form-group label {
    left: 20px;
    font-size: 1rem;
  }

  .submit-btn {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
}

/* ===== DESKTOP BREAKPOINT (1024px) ===== */
@media (min-width: 1024px) {
  .contact {
    padding: 120px 40px;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-card:hover {
    transform: translateX(10px);
  }

  .contact-social {
    gap: 15px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== LARGE SCREENS (1440px+) ===== */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .contact-container {
    gap: 80px;
  }
}

/* ===== SMALL MOBILES (320px - 375px) ===== */
@media (max-width: 375px) {
  .contact {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-card {
    padding: 15px;
    gap: 12px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.1rem;
  }

  .contact-details h3 {
    font-size: 0.95rem;
  }

  .contact-details p {
    font-size: 0.85rem;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 40px 12px 12px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* ===== LANDSCAPE ORIENTATION FIX ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .contact {
    padding: 40px 20px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .contact-container {
    gap: 30px;
  }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  .contact-card,
  .social-btn,
  .submit-btn,
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: none;
  }

  .contact-card:hover,
  .social-btn:hover,
  .submit-btn:hover {
    transform: none;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .contact-card,
  .contact-form {
    border-width: 2px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border-width: 3px;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 50px 0 15px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.footer-logo-img {
 height: 150px;
    width: auto;
    margin-top: -20px;
    margin-left: 50px;
    filter: brightness(1);
}

.footer-logo a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}

.footer-desc {
  color: #94a3b8;
  line-height: 1.8;
  margin-top: -25px;
  margin-left: 70px;
  margin-bottom: 20px;
}

/* ===== FOOTER SOCIAL LINKS - ORIGINAL BRAND COLORS ===== */
.footer-social {
  display: flex;
  margin-left: 65px;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Facebook - Blue */
.footer-social a:nth-child(1) {
  background: #1877f2;
}

.footer-social a:nth-child(1):hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

/* TikTok - Black */
.footer-social a:nth-child(2) {
  background: #000000;
}

.footer-social a:nth-child(2):hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Instagram - Gradient */
.footer-social a:nth-child(3) {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer-social a:nth-child(3):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* Twitter/X - Black (if added later) */
.footer-social a:nth-child(4) {
  background: #000000;
}

.footer-social a:nth-child(4):hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* LinkedIn - Blue (if added later) */
.footer-social a:nth-child(5) {
  background: #0a66c2;
}

.footer-social a:nth-child(5):hover {
  background: #0958a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.5);
}

/* YouTube - Red (if added later) */
.footer-social a:nth-child(6) {
  background: #ff0000;
}

.footer-social a:nth-child(6):hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom i {
  color: #ef4444;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ===== BACK TO TOP BUTTON - COLOR CHANGING EVERY 2 SECONDS ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Color changing animation - 4 colors, 2 seconds each = 8s total */
  animation: colorChange 8s infinite;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  animation-play-state: paused; /* Pause animation on hover */
}

/* Color changing keyframes */
@keyframes colorChange {
  0% {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  }
  25% {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  }
  50% {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  }
  75% {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.6);
  }
  100% {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  }
}

/* Alternative: 5 colors version (2s each = 10s total) */
@keyframes colorChangeFive {
  0% {
    background: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  }
  20% {
    background: #7c3aed;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  }
  40% {
    background: #dc2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  }
  60% {
    background: #059669;
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.6);
  }
  80% {
    background: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  }
  100% {
    background: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  }
}

/* Rainbow version - 6 colors */
@keyframes colorChangeRainbow {
  0% {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  }
  16.66% {
    background: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
  }
  33.33% {
    background: #eab308;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.6);
  }
  50% {
    background: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
  }
  66.66% {
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  }
  83.33% {
    background: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  }
  100% {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  }
}
/* ===================================
   AOS ANIMATION CLASSES
   =================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: var(--transition-medium);
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--light-blue-200);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-form {
    max-width: 300px;
    margin: 15px auto 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}
