/* =====================================================
   🌐 KWANG GROUP — GLOBAL CSS STYLESHEET
   Author: AKSHIT DESHMUKH
    CREATED: 2023
   Updated: 2025
===================================================== */
html {
  overflow-x: hidden;
  scrollbar-gutter: stable; /* 👈 MAGIC LINE */
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* Chrome / Edge */
::-webkit-scrollbar {
  width: 0;
}



/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove smooth scroll from html - can cause shaking */
/* html {
    scroll-behavior: smooth;
} */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    padding-top: 60px;
    /* Prevent scrollbar from causing layout shift */
    overflow-x: hidden;
    width: 100%;
}

.primary-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.primary-bg::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: url('assets/background/blue.jpeg') center/cover no-repeat;

    filter: blur(12px) brightness(0.5);

    transform: scale(1.05);
    will-change: auto;
}
/* ===============================
   GLOBAL FIX: Kill webkit-box layout bugs
   =============================== */

/* Never allow headings to use webkit-box */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-subtitle {
  display: block !important;
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;

  line-clamp: unset !important;
  -webkit-line-clamp: unset !important;

  box-orient: unset !important;
  -webkit-box-orient: unset !important;

  transform: none !important;
}



/* Extra safety for all section titles */
.section-title,
.section-subtitle {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 0 !important;
  right: 0 !important;
}
/* ===== CUSTOM FONT ===== */
@font-face {
  font-family: 'Azonix';
  src: url('../assets/fonts/Azonix.otf') format('opentype');
}
/* ===== AZONIX CUSTOM FONT ===== */
@font-face {
  font-family: 'Azonix';
  src: url('./assets/font/AZONIX.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== LOADER ===== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0b0f19;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Circle Loader */
.circle-loader {
  width: 70px;
  height: 70px;
  border: 3px solid #2a2f3a;
  border-top: 3px solid #4fc3f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Brand Text */
.loader-brand {
  color: white;
  font-size: 20px;
  margin: 10px 0 5px;
  font-family: 'Azonix', sans-serif;
  letter-spacing: 2px;
}

/* Status Text */
.loader-text {
  color: #9aa3b2;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Loading Dots */
.loader-dots {
  margin-top: 8px;
}

.loader-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  background: #4fc3f7;
  border-radius: 50%;
  animation: dotPulse 1.4s infinite both;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Fade out class */
#page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Hide class */
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .circle-loader {
    width: 50px;
    height: 50px;
    border-width: 2.5px;
  }

  .loader-brand {
    font-size: 16px;
  }

  .loader-text {
    font-size: 11px;
  }
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
}
 
/* ===== ACTIVE NAV LINK ===== */
.nav-links > li.active > a {
    color: #2563eb;
    font-weight: 600;
    background: #eef2ff;
}

/* ===== AI SERVICES HIGHLIGHT ===== */
.nav-links .ai-menu > a {
    font-weight: 700;
    color: #111827;
}

/* Hover effect */
.nav-links .ai-menu > a:hover {
    color: #2563eb;
    background: #eef2ff;
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #374151;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
}

/* ===== NAVIGATION LINKS ===== */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
}

.nav-links > li > a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

/* ===== CONTACT BUTTON - NOW SAME AS OTHER LINKS ===== */
.nav-links .btn {
    background: transparent;
    color: #4b5563;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 0;
    border: none;
}

.nav-links .btn:hover {
    background: #f3f4f6;
    color: #2563eb;
    transform: none;
}

/* Active state for contact button */
.nav-links li.active .btn {
    color: #2563eb;
    font-weight: 600;
    background: #eef2ff;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    
    .navbar {
        height: 56px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .menu-toggle {
        display: block;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 12px 16px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links > li > a,
    .nav-links .btn {
        padding: 10px 14px;
        border-bottom: 1px solid #f3f4f6;
        border-radius: 0;
        font-size: 0.9rem;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .nav-links .btn {
        background: transparent;
    }
    
    .nav-links .btn:hover {
        background: #f3f4f6;
    }
}

/* Extra small devices (below 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 52px;
    }
    
    .navbar {
        height: 52px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo span {
        font-size: 0.95rem;
    }
    
    .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    
    .nav-links {
        top: 52px;
        padding: 10px 14px;
    }
    
    .nav-links > li > a,
    .nav-links .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}
/* ===== SCROLL TO TOP ===== */
#topBtn {
  position: fixed;
  bottom: 70px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1000;

  /* Hide state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);

  /* Snappy transition — transform + opacity only ✓ */
  transition:
    opacity 0.2s cubic-bezier(0.25,0.46,0.45,0.94),
    transform 0.2s cubic-bezier(0.25,0.46,0.45,0.94),
    visibility 0.2s,
    box-shadow 0.15s,
    background 0.15s;

  box-shadow:
    0 4px 14px rgba(37,99,235,0.35),
    0 1px 4px rgba(0,0,0,0.1);

  will-change: transform, opacity;
}

/* Top gradient line */
#topBtn::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  border-radius: 0 0 2px 2px;
}

/* Show */
#topBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Hover */
#topBtn:hover {
  background: #1d4ed8;
  transform: translateY(-3px) scale(1);
  box-shadow:
    0 8px 22px rgba(37,99,235,0.45),
    0 2px 6px rgba(0,0,0,0.12);
}

/* Active */
#topBtn:active {
  transform: translateY(-1px) scale(0.95);
  transition-duration: 0.08s;
}

/* Icon */
#topBtn i,
#topBtn svg {
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: transform 0.15s cubic-bezier(0.25,0.46,0.45,0.94);
}

#topBtn:hover i,
#topBtn:hover svg {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  #topBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    right: 16px;
    bottom: 64px;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  #topBtn {
    width: 38px;
    height: 38px;
    right: 12px;
    bottom: 60px;
    border-radius: 9px;
  }
}



/* ===== COMING SOON ===== */
.coming-soon {
  padding: 80px 20px;
  background-color: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Reset (Only for this section) ===== */
.coming-soon * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Container ===== */
.coming-soon .container {
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: auto;
}

/* ===== Heading ===== */
.coming-soon h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* ===== Subtitle ===== */
.coming-soon .subtitle {
  font-size: 15px;
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== Animated Dots ===== */
.coming-soon .dot {
  display: inline;
  color: #ffffff;
}
.coming-soon .dot1 { animation: pulse 1.4s ease-in-out infinite; }
.coming-soon .dot2 { animation: pulse 1.4s ease-in-out 0.2s infinite; }
.coming-soon .dot3 { animation: pulse 1.4s ease-in-out 0.4s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== Progress Card ===== */
.coming-soon .progress-card {
  background: #111827;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.coming-soon .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.coming-soon .progress-label {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.coming-soon .progress-pct {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
}

/* ===== Progress Track ===== */
.coming-soon .progress-track {
  height: 8px;
  background: #374151;
  border-radius: 999px;
  overflow: hidden;
}

/* ===== Progress Bar ===== */
.coming-soon .progress-bar {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  height: 100%;
  width: 70%;
}

/* ===== Shimmer Effect ===== */
.coming-soon .shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* ===== Progress Footer ===== */
.coming-soon .progress-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* ===== Countdown ===== */
.coming-soon .countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.coming-soon .countdown-item {
  text-align: center;
}

.coming-soon .countdown-num {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

.coming-soon .countdown-label {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .coming-soon h1 {
    font-size: 26px;
  }

  .coming-soon .countdown {
    gap: 1rem;
  }

  .coming-soon .countdown-num {
    font-size: 20px;
  }

  .coming-soon .container {
    padding: 2rem 1rem;
  }
}


/* ===== MOBILE BOTTOM BAR ===== */

/* Hide on desktop */
.mobile-bottom-bar {
  display: none;
}

/* Show on tablets and mobile */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    
    /* Reduced responsive height */
    height: clamp(42px, 6vh, 50px);
  }
}

/* Icon buttons - Black/Dark icons */
.bottom-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

/* Icon size - Responsive and smaller */
.bottom-item i {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: #1f2937;
  transition: all 0.25s ease;
}

/* Label text - smaller */
.bottom-item span {
  font-size: clamp(8px, 2vw, 10px);
  font-weight: 500;
  color: #1f2937;
  transition: all 0.25s ease;
}



/* Hover effect for devices with mouse */
@media (hover: hover) {
  .bottom-item:hover {
    background: #f8fafc;
  }
  
  .bottom-item:hover i {
    transform: translateY(-1px);
  }
}

/* Tap feedback for touch devices */
.bottom-item:active {
  background: #f1f5f9;
  transform: scale(0.95);
}

/* ===== FULL RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px) */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    height: 48px;
  }
  
  .bottom-item i {
    font-size: 1.15rem;
  }
  
  .bottom-item span {
    font-size: 9px;
  }
  
  .bottom-item {
    gap: 2px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .mobile-bottom-bar {
    height: 44px;
  }
  
  .bottom-item i {
    font-size: 1.05rem;
  }
  
  .bottom-item span {
    font-size: 8px;
  }
  
  .bottom-item {
    gap: 1px;
  }
}

/* Mobile Small (375px) */
@media (max-width: 375px) {
  .mobile-bottom-bar {
    height: 42px;
  }
  
  .bottom-item i {
    font-size: 1rem;
  }
  
  .bottom-item span {
    font-size: 7px;
  }
  
  .bottom-item {
    gap: 1px;
  }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-bottom-bar {
    height: 38px;
  }
  
  .bottom-item i {
    font-size: 0.9rem;
  }
  
  .bottom-item span {
    display: none; /* Hide labels in landscape to save space */
  }
  
  .bottom-item {
    gap: 0;
  }
}

/* Add padding to body to prevent content hiding behind bottom bar */
@media (max-width: 768px) {
  body {
    padding-bottom: clamp(42px, 6vh, 50px);
  }
}

/* For devices with notch/hole-punch */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom-bar {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(clamp(42px, 6vh, 50px) + env(safe-area-inset-bottom));
  }
  
  body {
    padding-bottom: calc(clamp(42px, 6vh, 50px) + env(safe-area-inset-bottom));
  }
}

/* Animation for bottom bar items */
@keyframes bottomItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bottom-item {
  animation: bottomItemFadeIn 0.3s ease forwards;
  animation-delay: calc(var(--item-index, 0) * 0.05s);
  opacity: 0;
}

.bottom-item:nth-child(1) { --item-index: 0; }
.bottom-item:nth-child(2) { --item-index: 1; }
.bottom-item:nth-child(3) { --item-index: 2; }
.bottom-item:nth-child(4) { --item-index: 3; }
.bottom-item:nth-child(5) { --item-index: 4; }

/* ===== HERO SECTION  ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
    isolation: isolate;
}

/* Background with consistent blur - same on all screens (no media query overrides) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/background/hero.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    filter: blur(87px);      /* 👈 heavy blur – same for desktop, tablet & mobile */
    transform: scale(1.02);  /* 👈 prevents edge clipping */
    z-index: 0;
}

/* Dark overlay for better text readability */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* ===== SLOW FADE IN ANIMATIONS ===== */
@keyframes slowFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== LOGO CONTAINER ===== */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    animation: slowFadeInUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

/* ===== MAIN LOGO ===== */
.logo-main {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

/* ===== CUSTOM FONT ===== */
@font-face {
    font-family: 'Azonix';
    src: url('../assets/fonts/Azonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ===== LOGO TITLE ===== */
.logo-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Azonix', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg, #ffffff 0%, #dff6ff 25%, #00d9ff 50%, #dff6ff 75%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slowFadeInUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.3s forwards,
               neonFlow 5s linear infinite,
               logoGlow 3s ease-in-out infinite alternate;
    opacity: 0;
}

/* Hero Title Animation - Slow with delay */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #fff;
    line-height: 1.2;
    animation: slowFadeInUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.6s forwards;
    opacity: 0;
}

.hero-title .title-text {
    background: linear-gradient(90deg, #fff 30%, #1eff00 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Hero Subtitle Animation - Slow with delay */
.hero-subtitle {
    font-family: "Julius Sans One", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b7c3;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 300;
    animation: slowFadeInUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.9s forwards;
    opacity: 0;
}

/* ===== BUTTONS SECTION - 2x Grid ===== */
.hero-buttons-above {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: slowFadeInUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) 1.2s forwards;
    opacity: 0;
}

/* ===== PREMIUM BUTTONS ===== */
.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 16px 34px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

/* ===== PRIMARY BUTTON ===== */
.btn-primary {
    background: linear-gradient(90deg, #163832, #8eb69b);
    color: #ffffff;
    border: none;
}

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
    background: rgba(0, 0, 0, 0.18);
    color: #fefefe;
    border: 2px solid rgba(0, 80, 27, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 12px rgba(0,229,255,0.25);
}

.btn-secondary:hover {
    background: rgba(0, 255, 89, 0.12);
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 28px rgba(0,229,255,0.6);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
    animation: slowFadeIn 1.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) 1.6s forwards;
    opacity: 0;
}

.scroll-indicator span {
    width: 18px;
    height: 18px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollDown 2s infinite;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Note: The background blur (filter + scale) is NOT changed in any media query.
   It remains blur(87px) and scale(1.02) on all devices.
*/

/* TABLET (992px and below) */
@media (max-width: 992px) {
    .hero {
        padding: 80px 20px 70px;
        min-height: 95vh;
    }
    /* No .hero::before override here – keeps same blur as desktop */
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .logo-text h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 700px;
        margin-bottom: 40px;
    }
    
    .hero-buttons-above {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
        margin-bottom: 40px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .hero-title {
        margin-bottom: 25px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
    .hero {
        padding: 70px 15px 60px;
        min-height: 95vh;
    }
    /* No .hero::before override here */
    
    .logo-main {
        width: 180px;
        margin-bottom: 15px;
    }
    
    .logo-text h2 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .hero-buttons-above {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 360px;
        margin-bottom: 35px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 46px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-indicator span {
        width: 16px;
        height: 16px;
        border-width: 2.5px;
    }
    
    .logo-container {
        margin-bottom: 25px;
    }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 60px 12px 50px;
        min-height: 90vh;
    }
    /* No .hero::before override here */
    
    .logo-main {
        width: 150px;
        margin-bottom: 12px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-buttons-above {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
}

/* VERY SMALL SCREENS (360px and below) */
@media (max-width: 360px) {
    .hero {
        padding: 50px 10px 40px;
    }
    
    .hero-buttons-above {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 220px;
    }
    
    .logo-main {
        width: 130px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
}

/* LARGE SCREENS (1200px and above) */
@media (min-width: 1200px) {
    .hero-buttons-above {
        max-width: 600px;
        gap: 30px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .logo-main {
        width: 280px;
    }
    
    .logo-text h2 {
        font-size: 3rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
@media (prefers-reduced-motion: reduce) {
    .logo-container,
    .logo-text h2,
    .hero-title,
    .hero-subtitle,
    .hero-buttons-above,
    .scroll-indicator,
    .scroll-indicator span {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .btn-primary, .btn-secondary {
        transition: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}
/* =====  ABOUT PAGE  ===== */
/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #3b82f6, transparent);
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #60a5fa;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.our-story .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60a5fa;
    margin-bottom: 16px;
    background: rgba(96, 165, 250, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa, #3b82f6);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .story-timeline::before {
        left: 80px;
    }
}

.timeline-item {
    display: flex;
    gap: 32px;
    position: relative;
    animation: fadeInLeft 0.6s ease both;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.timeline-item:nth-child(1) { --item-index: 0; }
.timeline-item:nth-child(2) { --item-index: 1; }
.timeline-item:nth-child(3) { --item-index: 2; }
.timeline-item:nth-child(4) { --item-index: 3; }

.timeline-year {
    min-width: 100px;
    font-size: 24px;
    font-weight: 800;
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-year {
        min-width: 70px;
        font-size: 20px;
    }
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 12px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .timeline-year::after {
        right: -16px;
    }
}

.timeline-content {
    flex: 1;
    background: #1e293b;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
    position: relative;
}

.our-values .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: #1e293b;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.2));
}

.value-icon i {
    font-size: 32px;
    color: #60a5fa;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}
/* CTA Section - No Animations */
.cta-section {
    padding: 80px 0;
    background: #0f172a;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content {
    text-align: center;
    background: #1e293b;
    padding: 64px 48px;
    border-radius: 32px;
    border-left: 3px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.cta-button.primary:hover {
    background: #2563eb;
}

.cta-button.secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #3b82f6;
}

.cta-button.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-content {
        padding: 48px 32px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-card {
        padding: 32px 24px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .timeline-year {
        text-align: left;
        padding-left: 20px;
    }
    
    .timeline-year::after {
        left: 0;
        right: auto;
        top: 8px;
    }
    
    .story-timeline::before {
        left: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        justify-content: center;
    }
}


/* ================ AI SERVICES PAGE  ================ */
/* ===== MODERN AI SERVICES SECTION - OPTIMIZED & FAST ===== */
.services {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 24px);
    background: #0f172a;
    position: relative;
    width: 100%;
}

/* Simple static background - no animation for better performance */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 40%, rgba(59, 130, 246, 0.05), transparent 70%);
    pointer-events: none;
}

/* ===== AI SERVICES TITLE STYLES ===== */
.services h2 {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #94a3b8, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFadeIn 0.6s ease forwards;
}

/* Title fade in animation */
@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple underline - no animation */
.services h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

/* Optional badge - keep simple */
.services .title-badge {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 20px;
    border-radius: 40px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: badgeFadeIn 0.5s ease forwards;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Services Grid */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Service Cards - Dark White / Off-White Background */
.service-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

/* 1 BY 1 CARD ANIMATION ON LOAD */
.service-box:nth-child(1) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 0.1s;
}

.service-box:nth-child(2) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 0.3s;
}

.service-box:nth-child(3) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 0.5s;
}

.service-box:nth-child(4) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 0.7s;
}

.service-box:nth-child(5) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 0.9s;
}

.service-box:nth-child(6) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 1.1s;
}

.service-box:nth-child(7) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 1.3s;
}

.service-box:nth-child(8) {
    animation: cardSlideIn 0.5s ease forwards;
    animation-delay: 1.5s;
}

/* Card animation keyframes */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple hover effect - no heavy animations */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.02);
}

.service-icon i {
    font-size: 32px;
    color: #3b82f6;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.service-box h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 45px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-box:hover h3::after {
    width: 60px;
}

.service-box > p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-box ul {
    list-style: none;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .service-box ul {
        grid-template-columns: 1fr;
    }
}

.service-box ul li {
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.service-box ul li::before {
    content: '✓';
    font-size: 12px;
    color: #3b82f6;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.service-box:hover ul li::before {
    transform: scale(1.1);
}

.service-box ul li:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    width: auto;
    position: relative;
    overflow: hidden;
}

/* Button ripple effect on click */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:active::before {
    width: 200px;
    height: 200px;
}

.btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.btn:hover::after {
    transform: translateX(3px);
}

/* Mobile Responsive Button */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container {
        gap: 24px;
    }
    
    .service-box {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .service-box {
        padding: 24px;
    }
    
    .service-box h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 20px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-box {
        padding: 24px;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .service-box h3 {
        font-size: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    /* Adjust animation delays for mobile */
    .service-box:nth-child(1) { animation-delay: 0.1s; }
    .service-box:nth-child(2) { animation-delay: 0.2s; }
    .service-box:nth-child(3) { animation-delay: 0.3s; }
    .service-box:nth-child(4) { animation-delay: 0.4s; }
    .service-box:nth-child(5) { animation-delay: 0.5s; }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 16px;
    }
    
    .service-box {
        padding: 20px;
    }
    
    .service-box h3 {
        font-size: 18px;
    }
    
    .service-box > p {
        font-size: 13px;
    }
    
    .service-box ul li {
        font-size: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .services h2 {
        font-size: 28px;
    }
    
    .services h2::before {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }
}

/* Touch-friendly */
@media (hover: none) {
    .service-box:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
}

/* Scroll reveal animation - cards animate when scrolling into view */
@media (prefers-reduced-motion: no-preference) {
    .service-box {
        animation: none;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .service-box.visible {
        animation: cardSlideIn 0.5s ease forwards;
    }
}

/* Custom Scrollbar - lightweight */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

::selection {
    background: rgba(59, 130, 246, 0.2);
    color: #0f172a;
}

/* Optional: Add loading spinner while cards are animating */
.services.loading .service-box {
    opacity: 0;
}


/* ==================== ABOUT SECTION ==================== */
/* Removed the box (glassmorphism card) – clean, transparent, fully responsive */

/* CSS Reset & Base Styles (scoped to the about section) */
.about-section *,
.about-section *::before,
.about-section *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-section {
  background: transparent;   /* completely transparent background */
  position: relative;
  width: 100%;
  padding: 5rem 2rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
}

/* Container – NO BOX styling (no background, no blur, no border, no shadow) */
.about-section .about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;               /* no inner padding – content touches edges */
  background: transparent;  /* fully transparent */
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

/* Content wrapper – keeps spacing clean */
.about-section .about-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Badge */
.about-section .about-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.5);    /* subtle dark badge (optional) – but no container box */
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f0f0ff;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

/* Main Title */
.about-section .about-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Gradient accent for the word "Brands" */
.about-section .about-title span {
  background: linear-gradient(135deg, #27e992, #3a6dfa, #39ddec);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shimmer 5s linear infinite;
}

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

/* Paragraph text */
.about-section .about-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(245, 245, 255, 0.9);
  max-width: 85%;
  margin: 0.5rem 0;
}

/* Highlights flex container */
.about-section .about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
  align-items: center;
}

/* Individual highlight cards – keep their own micro-styling (but not the main box) */
.about-section .highlight {
  background: rgba(20, 20, 35, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 1.2rem 1.8rem;
  min-width: 140px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, background 0.2s, border-color 0.2s;
  flex: 1 1 auto;
}

.about-section .highlight:hover {
  transform: translateY(-6px);
  background: rgba(45, 45, 70, 0.7);
  border-color: rgba(255, 170, 80, 0.6);
  box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.3);
}

.about-section .highlight h3 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(145deg, #fff, #e0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}

.about-section .highlight span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== FULLY RESPONSIVE (without the box) ==================== */

@media screen and (max-width: 992px) {
  .about-section {
    padding: 4rem 1.5rem;
  }
  .about-section .about-text {
    max-width: 95%;
  }
  .about-section .about-highlights {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 3rem 1.25rem;
  }
  .about-section .about-container {
    padding: 0;
  }
  .about-section .about-text {
    max-width: 100%;
  }
  .about-section .about-highlights {
    gap: 1.2rem;
    justify-content: center;
  }
  .about-section .highlight {
    padding: 1rem 1.2rem;
    min-width: 120px;
  }
  .about-section .highlight h3 {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 550px) {
  .about-section {
    padding: 2.5rem 1rem;
  }
  .about-section .about-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .about-section .about-text {
    font-size: 0.95rem;
  }
  /* stack highlights vertically on small phones */
  .about-section .about-highlights {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .about-section .highlight {
    width: 100%;
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.4rem;
    text-align: left;
    gap: 1rem;
  }
  .about-section .highlight h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 380px) {
  .about-section .highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 1rem;
  }
  .about-section .highlight h3 {
    margin-bottom: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-section .highlight,
  .about-section .about-badge {
    transition: none;
  }
  @keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
  }
}

/* subtle fade-in without any box */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section .about-container {
  animation: fadeSlideUp 0.5s ease forwards;
}

/* ============================SERVICES SECTION ====================================== */

.services-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.08), transparent 70%);
  pointer-events: none;
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
  animation: fadeUp 0.8s ease-out;
}

.services-title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  font-family: 'Space Grotesk', monospace;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.services-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #a855f7);
  margin: 0.6rem auto 0;
  border-radius: 3px;
}

.services-subtitle {
  font-size: clamp(0.85rem, 3.5vw, 1.1rem);
  color: #d1d1d1;
  max-width: 650px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

.services-subtitle span {
  font-weight: 700;
  background: linear-gradient(120deg, #2683fc, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ----- SERVICES GRID (transparent) – smaller max-width for compact cards ----- */
.services-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1rem;
  background: transparent;
  grid-template-columns: repeat(4, 1fr);
}

/* ----- SMALL SQUARE CARDS (white, compact) ----- */
.service-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
  aspect-ratio: 1 / 1;          /* perfect square */
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: cardFadeIn 0.5s ease forwards;
}

/* SIMPLE HOVER – subtle scale + shadow */
.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  padding: 0.8rem;
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  width: 100%;
}

/* ===== ICON SIZE - INCREASED (base) ===== */
.service-icon {
  width: 60px;          /* increased from 48px */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 231, 0.05);
  border-radius: 18px;  /* slightly larger radius */
  transition: background 0.2s;
}

.service-icon img {
  width: 34px;          /* increased from 28px */
  height: 34px;
  object-fit: contain;
  opacity: 0.85;
}

/* Title – slightly larger than before */
.service-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

/* Staggered fade-in for cards */
.service-card:nth-child(1) { animation-delay: 0.03s; }
.service-card:nth-child(2) { animation-delay: 0.06s; }
.service-card:nth-child(3) { animation-delay: 0.09s; }
.service-card:nth-child(4) { animation-delay: 0.12s; }
.service-card:nth-child(5) { animation-delay: 0.15s; }
.service-card:nth-child(6) { animation-delay: 0.18s; }
.service-card:nth-child(7) { animation-delay: 0.21s; }
.service-card:nth-child(8) { animation-delay: 0.24s; }
.service-card:nth-child(9) { animation-delay: 0.27s; }
.service-card:nth-child(10) { animation-delay: 0.3s; }
.service-card:nth-child(11) { animation-delay: 0.33s; }
.service-card:nth-child(12) { animation-delay: 0.36s; }
.service-card:nth-child(13) { animation-delay: 0.39s; }

/* ========== FULLY RESPONSIVE (with smaller cards on mobile) ========== */

/* Tablet: 3 columns, icon size slightly reduced */
@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 1.2rem;
  }
  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .service-icon img {
    width: 30px;
    height: 30px;
  }
  .service-header h3 {
    font-size: 0.95rem;
  }
}

/* Mobile & small screens: 2x2 grid, cards become smaller */
@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;           /* reduced gap → smaller card area */
    padding: 1.2rem 0.8rem; /* reduced padding */
  }
  .service-icon {
    width: 46px;           /* smaller than tablet but still visible */
    height: 46px;
    border-radius: 14px;
  }
  .service-icon img {
    width: 26px;
    height: 26px;
  }
  .service-header h3 {
    font-size: 0.85rem;    /* smaller title on mobile */
  }
  .service-link {
    padding: 0.5rem;       /* less internal padding → smaller card feel */
  }
  .service-header {
    gap: 0.4rem;           /* reduce gap between icon and text */
  }
}

/* Extra small phones (≤480px) – cards even smaller */
@media screen and (max-width: 480px) {
  .services-grid {
    gap: 0.6rem;
    padding: 1rem 0.6rem;
  }
  .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .service-icon img {
    width: 24px;
    height: 24px;
  }
  .service-header h3 {
    font-size: 0.8rem;
  }
  .service-link {
    padding: 0.4rem;
  }
}

/* Very narrow devices (≤360px) */
@media screen and (max-width: 360px) {
  .services-grid {
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
  }
  .service-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .service-icon img {
    width: 22px;
    height: 22px;
  }
  .service-header h3 {
    font-size: 0.75rem;
  }
  .service-link {
    padding: 0.3rem;
  }
}

/* Large screens: keep cards small by limiting max-width */
@media screen and (min-width: 1400px) {
  .services-grid {
    max-width: 1100px;
    gap: 1.2rem;
  }
  .service-header h3 {
    font-size: 1.05rem;
  }
  .service-icon {
    width: 64px;
    height: 64px;
  }
  .service-icon img {
    width: 38px;
    height: 38px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== ACCESSIBILITY ========== */
.service-link:focus-visible {
  outline: 2px solid #6c5ce7;
  outline-offset: 2px;
  border-radius: 0.8rem;
}

::-webkit-scrollbar {
  width: 5px;
  background: #e5e7eb;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6c5ce7, #a855f7);
  border-radius: 10px;
}



/* ==================== OUR VENTURES SECTION ==================== */


.products-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;   /* key: completely transparent */
    padding: 2rem 0 4rem 0;
    z-index: 2;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ----- SECTION HEADER (modern gradient text) ----- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 8vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 20%, #C0B9FF 55%, #8A9CFF 85%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #A855F7, #3B82F6, #06B6D4);
    border-radius: 6px;
}

/* ----- FULLY RESPONSIVE GRID (auto-fit, mobile-first) ----- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

/* ----- GLASS CARD STYLES (transparent + backdrop-filter) ----- */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(20, 25, 45, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    color: white;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Animated light sweep on hover */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 35, 60, 0.65);
    backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 24px 40px -14px rgba(0, 0, 0, 0.4);
}

/* ----- ICON CONTAINER (glass circle) ----- */
.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-icon {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

/* For images inside icon (if any) */
.product-icon img {
    width: 48px;
    height: auto;
    transition: filter 0.2s;
}

/* For font icons (FontAwesome, etc.) */
.product-icon i {
    font-size: 2.6rem;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* ----- TYPOGRAPHY (fully responsive with clamp) ----- */
.product-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
    background: linear-gradient(120deg, #fff, #e0dbff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.product-desc {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(240, 240, 255, 0.85);
    font-weight: 400;
    transition: color 0.2s;
}

.product-card:hover .product-desc {
    color: rgba(255, 255, 255, 0.96);
}

/* ========== RESPONSIVE BREAKPOINTS (fine-tuned) ========== */
@media (max-width: 768px) {
    .products-section {
        padding: 1rem 0 2.5rem;
    }
    .products-container {
        padding: 0 1rem;
    }
    .products-grid {
        gap: 1.5rem;
    }
    .product-card {
        padding: 1.6rem 1.2rem;
    }
    .product-icon {
        width: 70px;
        height: 70px;
    }
    .product-icon i {
        font-size: 2.2rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-card {
        padding: 1.5rem 1.2rem;
    }
    .section-title::after {
        width: 55px;
        bottom: -10px;
    }
}

@media (min-width: 1400px) {
    .products-grid {
        gap: 2rem;
    }
    .product-card {
        padding: 2.2rem 1.8rem;
    }
}

/* Accessibility focus state */
.product-card:focus-visible {
    outline: 2px solid #b77eff;
    outline-offset: 3px;
    border-radius: 2rem;
    transform: scale(1.01);
}

/* ==================== WHY CHOOSE US SECTION  ==================== */


.why-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    padding: 3rem 1.5rem;
    z-index: 2;
}

/* ----- Section Header ----- */
.why-container .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-container .section-badge {
    display: inline-block;
    font-size: clamp(0.7rem, 3vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
}

.why-container .section-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* ----- Responsive Grid (auto-fit, smaller gap) ----- */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

/* ----- WHITE CARD STYLES (solid white, smaller, rounded) ----- */
.modern-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle hover effect (no transform to keep size) */
.modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: #fefefe;
}

/* ----- Icon Wrapper (smaller, light gray background) ----- */
.card-icon-wrap {
    width: 52px;
    height: 52px;
    background: #f0f2f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.modern-card:hover .card-icon-wrap {
    background: #e8ebf3;
    transform: scale(0.98);
}

.card-icon-wrap i {
    font-size: 1.6rem;
    color: #1e2a5e;
    filter: none;
}

/* ----- Typography (compact, darker text for white card) ----- */
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 0.5rem;
    background: none;
    color: #1a1f36;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.card-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4a5568;
    font-weight: 400;
}

/* ========== FULLY RESPONSIVE: SMALLER CARDS ON ALL SCREENS ========== */
@media (max-width: 768px) {
    .why-container {
        padding: 2rem 1rem;
    }
    .why-container .section-header {
        margin-bottom: 1.75rem;
    }
    .modern-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .modern-card {
        padding: 1rem 0.85rem;
        border-radius: 1rem;
    }
    .card-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }
    .card-icon-wrap i {
        font-size: 1.4rem;
    }
    .card-title {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    .card-desc {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 1.5rem 0.875rem;
    }
    .modern-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.875rem;
    }
    .modern-card {
        padding: 0.9rem 0.75rem;
        border-radius: 0.875rem;
    }
    .card-icon-wrap {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .card-icon-wrap i {
        font-size: 1.25rem;
    }
    .card-title {
        font-size: 1rem;
    }
    .card-desc {
        font-size: 0.75rem;
    }
    .why-container .section-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
    .why-container .section-subtitle {
        font-size: 0.8rem;
    }
}

/* For larger screens, keep cards compact but slightly wider */
@media (min-width: 1200px) {
    .modern-grid {
        gap: 1.5rem;
    }
    .modern-card {
        padding: 1.35rem 1.2rem;
    }
    .card-icon-wrap {
        width: 56px;
        height: 56px;
    }
    .card-icon-wrap i {
        font-size: 1.7rem;
    }
    .card-title {
        font-size: 1.25rem;
    }
}

/* Accessibility focus */
.modern-card:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 1.25rem;
}
/* ===== MODERN PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 60px 15px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 114, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== PORTFOLIO PAGE  ===== */
.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.portfolio-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.portfolio-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.portfolio-title span::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
  border-radius: 3px;
  z-index: -1;
}

.portfolio-subtitle {
  font-size: 0.95rem;
  color: #b0b7c3;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* ===== PORTFOLIO CARD - SMALLER ===== */
.portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);     
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; }

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  transition: all 0.4s ease;
}

/* ===== OVERLAY ===== */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay span {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.3);
}

.portfolio-overlay h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* ===== CARD SPECIFIC GRADIENTS ===== */
.portfolio-card:nth-child(1) .portfolio-overlay span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
}
.portfolio-card:nth-child(2) .portfolio-overlay span {
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}
.portfolio-card:nth-child(3) .portfolio-overlay span {
  background: linear-gradient(90deg, #7b61ff, #00c6ff);
}
.portfolio-card:nth-child(4) .portfolio-overlay span {
  background: linear-gradient(90deg, #4cd964, #00c6ff);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
  .portfolio-section {
    padding: 50px 20px;
  }
  
  .portfolio-title {
    font-size: 1.8rem;
  }
  
  .portfolio-card {
    height: 250px;
  }
  
  .portfolio-overlay {
    padding: 20px;
  }
  
  .portfolio-overlay h3 {
    font-size: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 15px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 18px;
  }
  
  .portfolio-title {
    font-size: 1.6rem;
  }
  
  .portfolio-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .portfolio-card {
    height: 230px;
  }
  
  .portfolio-overlay {
    padding: 18px;
  }
  
  .portfolio-overlay h3 {
    font-size: 1.1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .portfolio-section {
    padding: 30px 12px;
  }
  
  .portfolio-title {
    font-size: 1.4rem;
  }
  
  .portfolio-badge {
    padding: 5px 16px;
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
  
  .portfolio-card {
    height: 200px;
    border-radius: 12px;
  }
  
  .portfolio-overlay {
    padding: 15px;
  }
  
  .portfolio-overlay span {
    padding: 4px 12px;
    font-size: 0.65rem;
  }
  
  .portfolio-overlay h3 {
    font-size: 1rem;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .portfolio-section {
    padding: 25px 10px;
  }
  
  .portfolio-title {
    font-size: 1.3rem;
  }
  
  .portfolio-subtitle {
    font-size: 0.85rem;
  }
  
  .portfolio-card {
    height: 180px;
  }
  
  .portfolio-overlay {
    padding: 12px;
  }
  
  .portfolio-overlay h3 {
    font-size: 0.95rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ADDITIONAL DECORATIVE ELEMENTS ===== */
.portfolio-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 20px auto 0;
  border-radius: 2px;
  animation: widthGrow 1s ease forwards;
}

@keyframes widthGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

/* ===== LOAD MORE BUTTON ===== */
.portfolio-load-more {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.load-more-btn:hover::before {
  opacity: 1;
}

.load-more-btn:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}

@media (max-width: 768px) {
  .portfolio-load-more {
    margin-top: 30px;
  }
  
  .load-more-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}




/* ===== PROCESS SECTION  ===== */
.process-section {
  padding: 120px 24px;
  background: linear-gradient(145deg, #fafcff 0%, #f5f9ff 100%);
  position: relative;
  overflow: hidden;
}

/* animated background accent (subtle floating circles) */
.process-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.03) 0%, rgba(0, 119, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.025) 0%, rgba(0, 119, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* HEADER SECTION */
.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: rgba(0, 119, 255, 0.08);
  backdrop-filter: blur(2px);
  color: #0066e6;
  border-radius: 80px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 0.5px solid rgba(0, 119, 255, 0.2);
  transition: all 0.3s ease;
}

.process-badge i {
  font-size: 0.85rem;
}

.process-badge:hover {
  background: rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.4);
  transform: translateY(-2px);
}

.process-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a2634 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.process-title span {
  background: linear-gradient(135deg, #0077ff, #00c2ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.process-subtitle {
  color: #4a5568;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 12px;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

/* CARDS */
.process-card {
  position: relative;
  background: #ffffff;
  padding: 40px 28px 36px 28px;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 119, 255, 0.02);
  backdrop-filter: blur(0px);
  cursor: default;
  overflow: hidden;
  animation: cardGlide 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  opacity: 0;
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 40px -18px rgba(0, 119, 255, 0.2), 0 0 0 1px rgba(0, 119, 255, 0.2);
  background: #ffffff;
}

/* left accent border */
.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #0077ff, #5cb0ff);
  border-radius: 0 12px 12px 0;
  transition: height 0.4s ease-out;
}

.process-card:hover::before {
  height: 60%;
}

/* icon container */
.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 188, 255, 0.05));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s;
  color: #0077ff;
  font-size: 32px;
  border: 1px solid rgba(0, 119, 255, 0.15);
}

.process-card:hover .card-icon {
  background: linear-gradient(135deg, #0077ff, #3a9eff);
  color: white;
  transform: scale(1.02);
  border-color: transparent;
  box-shadow: 0 10px 20px -8px rgba(0, 119, 255, 0.4);
}

/* step number background */
.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 70px;
  font-weight: 800;
  font-family: 'Inter', monospace;
  color: rgba(0, 119, 255, 0.04);
  transition: all 0.3s ease;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.process-card:hover .step-number {
  color: rgba(0, 119, 255, 0.12);
  transform: scale(1.02);
}

/* typography */
.process-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b1b2f;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}

.process-card p {
  color: #475569;
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 6px;
}

.process-card:hover p {
  color: #1e293b;
}

/* shine effect */
.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.process-card:hover::after {
  left: 100%;
}

/* staggered animation delays */
.process-card:nth-child(1) { animation-delay: 0.05s; }
.process-card:nth-child(2) { animation-delay: 0.15s; }
.process-card:nth-child(3) { animation-delay: 0.25s; }
.process-card:nth-child(4) { animation-delay: 0.35s; }
.process-card:nth-child(5) { animation-delay: 0.45s; }
.process-card:nth-child(6) { animation-delay: 0.55s; }

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

/* responsive adjustments */
@media (max-width: 768px) {
  .process-section {
    padding: 80px 20px;
  }
  .process-title {
    font-size: 36px;
  }
  .process-grid {
    gap: 24px;
  }
  .process-card {
    padding: 32px 24px 32px 24px;
  }
  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    border-radius: 20px;
  }
  .process-card h3 {
    font-size: 1.5rem;
  }
  .step-number {
    font-size: 58px;
    top: 16px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 30px;
  }
  .process-subtitle {
    font-size: 1rem;
  }
  .process-card {
    padding: 28px 20px;
  }
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .process-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .process-card::after,
  .process-card::before {
    transition: none;
  }
}

/* focus outline */
.process-card:focus-within {
  outline: 2px solid #0077ff;
  outline-offset: 4px;
  transform: translateY(-4px);
}


/* ===== TESTIMONIALS SECTION - FULLY RESPONSIVE (SKY BLUE) ===== */
.testimonials-section.single-slider {
    background: transparent;
    padding: clamp(40px, 8vw, 100px) clamp(15px, 5vw, 5%);
    position: relative;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 60px);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    padding: clamp(5px, 1.5vw, 8px) clamp(20px, 4vw, 28px);
    border-radius: 50px;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 3vw, 20px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.section-title {
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0 15px;
}

/* Slider Container */  
.testimonial-slider {
    position: relative;
    max-width: min(900px, 90%);
    margin: 0 auto 40px;
    padding: 20px 0;
}

.slider-container {
    position: relative;
    min-height: clamp(320px, 60vh, 450px);
    margin-bottom: 30px;
}

/* Testimonial Cards */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    background: #ffffff;
    border-radius: clamp(16px, 4vw, 24px);
    padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 35px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
    height: auto;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

/* Card Content */
.testimonial-rating {
    margin-bottom: clamp(12px, 3vw, 20px);
    color: #fbbf24;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
}

.testimonial-text {
    font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: clamp(20px, 5vw, 30px);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 18px);
    flex-wrap: wrap;
}

.author-avatar {
    width: clamp(50px, 12vw, 65px);
    height: clamp(50px, 12vw, 65px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #38bdf8;
    background: #e2e8f0;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: #0f172a;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin: 0 0 5px;
    font-weight: 600;
}

.author-info p {
    color: #475569;
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    margin: 0;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.dot {
    width: clamp(20px, 6vw, 40px);
    height: clamp(3px, 1vw, 5px);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: #38bdf8;
    transform: scaleX(1.2);
}

.dot:hover {
    background: #7dd3fc;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 2px;
    transition: width 0s linear;
}

/* ===== EXTRA SMALL DEVICES (320px and below) ===== */
@media (max-width: 480px) {
    .testimonials-section.single-slider {
        padding: 40px 12px;
    }
    .slider-container {
        min-height: 480px;
    }
    .testimonial-card {
        padding: 20px 15px;
    }
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }
    .author-info {
        text-align: center;
    }
    .author-info h4 {
        font-size: 0.9rem;
    }
    .author-info p {
        font-size: 0.7rem;
    }
    .dot {
        width: 18px;
        height: 3px;
    }
}

/* ===== LANDSCAPE MODE ON SMALL PHONES ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .slider-container {
        min-height: 380px;
    }
    .testimonial-card {
        padding: 25px 20px;
    }
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* ===== TABLET AND UP ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-slider {
        max-width: 85%;
    }
    .slider-container {
        min-height: 400px;
    }
    .testimonial-card {
        padding: 35px 30px;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 1025px) {
    .testimonial-slider {
        max-width: 900px;
    }
    .slider-container {
        min-height: 380px;
    }
}

/* ===== LARGE SCREENS (4K) ===== */
@media (min-width: 1920px) {
    .testimonials-section.single-slider {
        padding: 120px 10%;
    }
    .testimonial-slider {
        max-width: 1100px;
    }
    .slider-container {
        min-height: 450px;
    }
    .testimonial-card {
        padding: 50px 45px;
    }
    .testimonial-text {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    .author-avatar {
        width: 80px;
        height: 80px;
    }
    .author-info h4 {
        font-size: 1.3rem;
    }
    .author-info p {
        font-size: 1rem;
    }
    .dot {
        width: 50px;
        height: 6px;
    }
}

/* ===== TOUCH DEVICES: larger tap targets ===== */
@media (hover: none) and (pointer: coarse) {
    .dot {
        min-width: 30px;
        height: 6px;
    }
    .testimonial-card {
        cursor: grab;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        transition: opacity 0.2s ease;
        transform: none;
    }
    .progress-bar {
        transition: none !important;
    }
}

/* =====  TEAM SECTION ===== */
.team {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.team h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.team-container {
    max-width: 1300px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Team Member Card */
.team-member {
    background: #f5f5f56e;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

/* Member Image */
.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f1f5f9;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

/* Member Info */
.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-member .role {
    display: inline-block;
    color: #4361ee;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 20px;
}

/* Bio & Skills */
.team-member .bio {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 15px 0;
    padding: 0 5px;
    flex-grow: 1;
}

.team-member .skills {
    color: #2d3748;
    font-size: 0.9rem;
    margin: 15px 0 20px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    width: 100%;
    border-left: 3px solid #4361ee;
}

.team-member .skills strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4361ee;
    color: white;
    transform: translateY(-3px);
}

/* Individual icon colors */
.social-icons a:nth-child(1):hover { background: #0077b5; } /* LinkedIn */
.social-icons a:nth-child(2):hover { background: #1da1f2; } /* Twitter */
.social-icons a:nth-child(3):hover { background: #333333; } /* GitHub */
.social-icons a:nth-child(4):hover { background: #ea4c89; } /* Dribbble */

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

@media (max-width: 768px) {
    .team {
        padding: 60px 15px;
    }
    
    .team h2 {
        font-size: 2.5rem;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 25px;
        margin-top: 50px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-image {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .team h2 {
        font-size: 2rem;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Simple Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.team-member {
    animation: fadeIn 0.5s ease forwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

.team-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-section h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2d3748;
  position: relative;
}

.team-section h1:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #667eea, #764ba2);
  border-radius: 2px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}

.team-member {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* empty space clean lage */
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 MAIN FIX */
  object-position: center;
  border-radius: 50%;
}


.team-member h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a202c;
}

.role {
  color: #667eea;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.company {
  color: #718096;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 25px;
}

.skill-tag {
  background-color: #edf2f7;
  color: #4a5568;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.team-member:hover .skill-tag {
  background-color: #e2e8f0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #667eea;
  color: white;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 15px;
  }
  
  .team-section h1 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .team-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .team-container {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  
  .team-section h1 {
    font-size: 1.8rem;
  }
}



/* ===== CTA SECTION ===== */
.cta-section {
  padding: 140px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background: transparent;
  z-index: 0;
}

/* Animated particles effect */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 198, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 114, 255, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CTA CONTENT ===== */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-badge:hover::before {
  left: 100%;
}

.cta-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 114, 255, 0.4);
}

.cta-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2.2rem;
  }
}

.cta-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.cta-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
  border-radius: 4px;
  z-index: -1;
}

.cta-text {
  font-size: 1.3rem;
  color: #b0b7c3;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cta-text {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  border: 2px solid transparent;
  cursor: pointer;
}

/* Primary Button */
.cta-btn.primary {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.3);
}

.cta-btn.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn.primary:hover::before {
  width: 400px;
  height: 400px;
}

.cta-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 114, 255, 0.4),
    0 0 80px rgba(0, 114, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Secondary Button */
.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-btn.secondary:hover::before {
  opacity: 1;
}

.cta-btn.secondary:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(0, 114, 255, 0.25);
}

/* Button hover arrow effect */
.cta-btn::after {
  content: '→';
  margin-left: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.cta-btn:hover::after {
  transform: translateX(5px);
  opacity: 1;
}

/* Button active states */
.cta-btn:active {
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Animated gradient for the section */
.cta-section {
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 20px;
  }
  
  .cta-badge {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .cta-btn {
    padding: 16px 40px;
    font-size: 1rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 80px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 35px;
  }
  
  .cta-buttons {
    gap: 15px;
  }
}

/* ===== DECORATIVE ELEMENTS ===== */
.cta-content::before {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 0 auto 40px;
  border-radius: 2px;
  animation: widthGrow 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes widthGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

/* ===== ADDITIONAL VISUAL EFFECTS ===== */
.cta-content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ===== CALL TO ACTION TEXT ANIMATION ===== */
.cta-title span {
  position: relative;
  overflow: hidden;
}

.cta-title span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== OPTIONAL: ADD PHONE NUMBER/EMAIL ===== */
.cta-contact {
  margin-top: 40px;
  color: #b0b7c3;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-contact a {
  color: #00c6ff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.cta-contact a:hover {
  color: #fff;
  text-decoration: underline;
}


/* ===== CONTACT PAGE  ===== */

.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* ===== HEADER STYLES ===== */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contact-title span {
  color: #0066ff;
  position: relative;
  display: inline-block;
}

.contact-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 102, 255, 0.2);
  z-index: -1;
}

.contact-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CONTENT LAYOUT ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== CONTACT INFO STYLES ===== */
.contact-info {
 background: linear-gradient(
  135deg,
  #38bdf8 0%,
  #0ea5e9 50%,
  #2563eb 100%
);
  padding: 50px;
  color: white;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  margin-bottom: 25px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.contact-details a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  opacity: 0.8;
  transform: translateX(5px);
}

/* ===== CONTACT FORM STYLES ===== */
.contact-form {
  padding: 50px;
  background:  ffffff;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eef2f6;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background: white;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15),
              0 8px 24px rgba(14, 165, 233, 0.15);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-btn {
  background: linear-gradient(
    135deg,
    #38bdf8 0%,
    #0ea5e9 50%,
    #2563eb 100%
  );
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  background: linear-gradient(
    135deg,
    #67e8f9 0%,
    #38bdf8 50%,
    #1d4ed8 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
}

.contact-btn:active {
  transform: translateY(0);
}
/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets (992px and below) */
@media screen and (max-width: 992px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info {
    padding: 40px;
  }

  .contact-form {
    padding: 40px;
  }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-details li {
    margin-bottom: 20px;
  }

  .contact-details a {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .contact-btn {
    padding: 14px 25px;
    font-size: 15px;
  }
}

/* Mobile Phones (576px and below) */
@media screen and (max-width: 576px) {
  .contact-section {
    padding: 40px 12px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-badge {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 15px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-title span::after {
    height: 6px;
    bottom: 3px;
  }

  .contact-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .contact-details li {
    margin-bottom: 18px;
  }

  .contact-details strong {
    font-size: 12px;
  }

  .contact-details a {
    font-size: 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  .contact-btn {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* Small Mobile Phones (400px and below) */
@media screen and (max-width: 400px) {
  .contact-section {
    padding: 30px 10px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-info {
    padding: 25px 15px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 13px;
  }

  .contact-details a {
    font-size: 14px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px;
    font-size: 13px;
  }

  .contact-btn {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* Landscape Mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .contact-section {
    padding: 40px 20px;
  }

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

  .contact-info,
  .contact-form {
    padding: 30px;
  }
}

/* High Resolution Screens */
@media screen and (min-width: 1400px) {
  .contact-container {
    max-width: 1300px;
  }

  .contact-title {
    font-size: 48px;
  }

  .contact-subtitle {
    font-size: 20px;
  }

  .contact-info h3 {
    font-size: 32px;
  }

  .contact-info p {
    font-size: 18px;
  }

  .contact-details a {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .contact-btn {
    font-size: 18px;
    padding: 18px 35px;
  }
}

/* Print Styles */
@media print {
  .contact-section {
    background: white;
    padding: 20px;
  }

  .contact-btn {
    display: none;
  }
}
/* ===== FORM VALIDATION STYLES ===== */

/* Error state */
.field-error {
  border-color: #dc3545 !important;
  background-color: #fff8f8 !important;
}

/* Success state */
.field-success {
  border-color: #28a745 !important;
  background-color: #f8fff8 !important;
}

/* Notification styles */
.form-notification {
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 14px;
  position: relative;
  animation: slideDown 0.3s ease;
}

.form-notification.error {
  background-color: #fff3f3;
  border: 1px solid #dc3545;
  color: #dc3545;
}

.form-notification.success {
  background-color: #f0fff4;
  border: 1px solid #28a745;
  color: #28a745;
}

.form-notification ul {
  margin: 5px 0 0 20px;
  padding: 0;
}

.form-notification li {
  margin-bottom: 5px;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.notification-close:hover {
  opacity: 1;
}

/* Field hint style */
.field-hint {
  animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Disabled button state */
.contact-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Responsive notification */
@media screen and (max-width: 576px) {
  .form-notification {
    padding: 12px 15px;
    font-size: 13px;
  }
  
  .notification-close {
    top: 8px;
    right: 10px;
  }
}





/* ===== BLOG PAGE ===== */
#blog.about {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#blog.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(58, 54, 224, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 30%);
  z-index: 0;
}

#blog.about h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #121212, #3a36e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

#blog.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3a36e0, #ff6b6b);
  border-radius: 2px;
}

#blog.about > p {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3a36e0, #ff6b6b, #4ecdc4);
  z-index: 2;
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-img::after {
  opacity: 1;
}

.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6b7280;
  font-weight: 500;
}

.blog-category {
  background: linear-gradient(90deg, #3a36e0, #2622c2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #121212;
  flex-grow: 1;
}

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3a36e0;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding: 10px 0;
  position: relative;
  width: fit-content;
  transition: all 0.3s ease;
}

.read-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-btn:hover {
  color: #ff6b6b;
  gap: 12px;
}

.read-btn:hover::after {
  transform: translateX(5px);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 10%, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #2563eb;
}

/* Stats Container - for dynamic stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 60px 20px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .cta-stats {
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}
.blog-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  #blog.about h2,
  .cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  #blog.about,
  .cta {
    padding: 80px 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  #blog.about h2,
  .cta h2 {
    font-size: 2.2rem;
  }
  
  .cta p,
  #blog.about > p {
    font-size: 1.1rem;
  }
  
  .blog-card-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #blog.about h2,
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-content h3 {
    font-size: 1.2rem;
  }
}

/* Hover effect for entire blog section */
#blog.about:hover .blog-card:not(:hover) {
  opacity: 0.8;
  transform: scale(0.98);
}


/* ===== WEVDEVLOPMENT SECTION ===== */

#hero {
    min-height: 70vh; /* pehle 100vh tha */
    background: radial-gradient(circle at top, #6366f1, #0f172a 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px; /* vertical space kam */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle background glow (smaller) */
#hero::before {
    content: "";
    position: absolute;
    width: 350px;   /* pehle 500px */
    height: 350px;
    background: #22d3ee;
    filter: blur(160px);
    opacity: 0.22;
    top: -120px;
    right: -120px;
}

#hero h1 {
    font-size: 44px; /* text thoda chhota */
    font-weight: 700;
    max-width: 750px;
    line-height: 1.25;
    z-index: 1;
}

#hero p {
    font-size: 18px;
    margin: 16px 0 28px;
    color: #c7d2fe;
    z-index: 1;
}

#hero a {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px; /* button compact */
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1;
}

#hero a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #hero {
        min-height: 60vh;
    }

    #hero h1 {
        font-size: 32px;
    }

    #hero p {
        font-size: 16px;
    }
}


/* ===== Technologies Section ===== */
#technologies {
    padding: 90px 8%;
    background: linear-gradient(180deg, #020617, #0f172a);
}

#technologies h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}

#technologies h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    display: block;
    margin: 14px auto 0;
    border-radius: 10px;
}

/* Grid layout */
#technologies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Cards */
.tech-category {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px 30px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient border glow */
.tech-category::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(99,102,241,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.tech-category:hover::before {
    opacity: 1;
}

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Card title */
.tech-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #22d3ee;
}

/* List style */
.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category li {
    padding: 8px 0;
    font-size: 15px;
    color: #cbd5f5;
    position: relative;
    padding-left: 22px;
}

/* Custom bullet */
.tech-category li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #6366f1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #technologies {
        padding: 70px 6%;
    }

    #technologies h2 {
        font-size: 30px;
    }
}
/* ===== Projects Section ===== */
#projects {
    padding: 90px 8%;
    background: linear-gradient(180deg, #0f172a, #020617);
}

#projects h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}

#projects h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    display: block;
    margin: 14px auto 0;
    border-radius: 10px;
}

/* Grid Layout */
#projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Project Card */
.project {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Glow on hover */
.project::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(34,211,238,0.25), transparent);
    opacity: 0;
    transition: 0.4s;
}

.project:hover::before {
    opacity: 1;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Title */
.project h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #22d3ee;
}

/* Description */
.project p {
    font-size: 15px;
    color: #cbd5f5;
    margin-bottom: 12px;
}

/* Type label */
.project strong {
    color: #6366f1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #projects {
        padding: 70px 6%;
    }

    #projects h2 {
        font-size: 30px;
    }
}
/* ===== Pricing Section ===== */
#pricing {
    padding: 90px 8%;
    background: linear-gradient(180deg, #020617, #0f172a);
}

#pricing h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}

#pricing h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    display: block;
    margin: 14px auto 0;
    border-radius: 10px;
}

/* Grid layout */
#pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Pricing card */
.package {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Highlight effect */
.package::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(99,102,241,0.25), transparent);
    opacity: 0;
    transition: 0.4s;
}

.package:hover::before {
    opacity: 1;
}

.package:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 65px rgba(0,0,0,0.45);
}

/* Plan name */
.package h3 {
    font-size: 24px;
    margin-bottom: 22px;
    color: #22d3ee;
    text-align: center;
}

/* Features list */
.package ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package li {
    padding: 10px 0;
    font-size: 15px;
    color: #cbd5f5;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

/* Price / CTA text */
.package p {
    margin-top: 24px;
    text-align: center;
    font-weight: 600;
    color: #6366f1;
    font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #pricing {
        padding: 70px 6%;
    }

    #pricing h2 {
        font-size: 30px;
    }
}


/* ===== FOOTER ===== */
.footer {
  background: transparent;   /* 👈 changed from #0a0a0a to transparent */
  color: #fff;
  padding: 70px 0 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
  display: block;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  /* Desktop: Logo+About spans 2fr, others 1fr each */
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

/* ===== Brand Column (Logo + About) ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0, 114, 255, 0.3));
  transition: transform 0.3s ease;
}

/* Footer Brand Title */
.footer-brand h3 {
  font-size: 1.5rem;
  margin: 0 0 15px 0;

  /* Font */
  font-family: 'Azonix', sans-serif;
  font-weight: 600;

  /* White Gradient Text */
  background: linear-gradient(90deg, #ffffff, #eaeaea, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Optional Lite Glow */
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.25),
    0 0 12px rgba(255, 255, 255, 0.12);
}

/* Font Import */
@font-face {
  font-family: 'Azonix';
  src: url('../assets/fonts/Azonix.otf') format('opentype');
}
.footer-brand p {
  color: #b0b7c3;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
  max-width: 350px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: #b0b7c3;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-socials a:hover::before {
  left: 100%;
}

.footer-socials a:hover {
  background: #0072ff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
}

/* ===== Footer Columns (Hosting, Domains, Company, Support) ===== */
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b0b7c3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '▸';
  color: #0072ff;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Newsletter Full Width ===== */
.footer-newsletter {
  grid-column: 1 / -1; /* Spans all columns */
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 2px;
}

.footer-newsletter p {
  color: #b0b7c3;
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 450px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #0072ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: #888;
  font-size: 0.85rem;
}

.newsletter-form button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #00b4e6, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
}

.newsletter-form button:active {
  transform: translateY(0);
}

/* ===== Footer Bottom Bar - ALWAYS VISIBLE ===== */
.footer-bottom {
  margin-top: 50px;
  padding: 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  background: transparent;   /* 👈 changed from #0a0a0a to transparent */
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 25px 20px;
  }
}

.footer-bottom p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.footer-bottom-links a {
  color: #b0b7c3;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0072ff;
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* ===== Responsive: Tablet (max-width: 992px) - 2x2 Grid Layout ===== */
@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-areas:
      "brand brand"
      "hosting domains"
      "company support"
      "newsletter newsletter";
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-area: brand;
    text-align: center;
    align-items: center;
  }
  
  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-brand h3 {
    text-align: center;
  }
  
  /* Hosting Section */
  .footer-col:nth-child(2) {
    grid-area: hosting;
  }
  
  /* Domains Section */
  .footer-col:nth-child(3) {
    grid-area: domains;
  }
  
  /* Company Section */
  .footer-col:nth-child(4) {
    grid-area: company;
  }
  
  /* Support Section */
  .footer-col:nth-child(5) {
    grid-area: support;
  }
  
  .footer-newsletter {
    grid-area: newsletter;
    text-align: center;
  }
  
  .footer-newsletter p {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .newsletter-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-col ul li a {
    justify-content: center;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    gap: 25px;
    padding: 0 15px;
  }
  
  .footer-logo {
    width: 100px;
  }
  
  .footer-brand h3 {
    font-size: 1.3rem;
  }
  
  .footer-brand p {
    font-size: 0.85rem;
  }
  
  .footer-socials a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .footer-col h4 {
    font-size: 1rem;
  }
  
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  
  .footer-col ul li a::before {
    display: none;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-newsletter p {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    margin-top: 30px;
    padding: 15px;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.8rem;
  }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-container {
    gap: 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.2rem;
  }
  
  .footer-brand p {
    font-size: 0.8rem;
  }
  
  .footer-socials {
    gap: 10px;
  }
  
  .footer-col h4 {
    font-size: 0.95rem;
  }
  
  .footer-col ul li a {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    margin-top: 25px;
    padding: 12px;
  }
  
  .footer-bottom-links {
    gap: 12px;
  }
  
  .footer-bottom-links a {
    font-size: 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* ===== Extra Small Devices (max-width: 360px) ===== */
@media (max-width: 360px) {
  .footer-container {
    gap: 15px;
    padding: 0 12px;
  }
  
  .footer-col ul li a {
    font-size: 0.75rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  .footer-bottom-links {
    gap: 10px;
  }
}

/* ===== Fix for Large Screens (Laptop, TV, Big Screens) - Bottom Bar Visible ===== */
@media (min-width: 1200px) {
  .footer-container {
    max-width: 1400px;
    padding: 0 40px;
    gap: 40px;
  }
  
  .footer-bottom {
    margin-top: 60px;
    padding: 30px 40px;
  }
  
  .footer-brand p {
    max-width: 400px;
  }
}

@media (min-width: 1600px) {
  .footer-container {
    max-width: 1600px;
    padding: 0 60px;
    gap: 50px;
  }
  
  .footer-bottom {
    padding: 35px 60px;
  }
}

/* ===== Utility & Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Ensure footer bottom bar is always visible and not hidden */
.footer-bottom {
  visibility: visible;
  opacity: 1;
  display: flex;
}

/* Fix for any hidden bottom bar issues */
.footer {
  padding-bottom: 0;
}



/* ===== UX/UI PAGE ===== */

.ux-hero {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 50%, #FFCC70 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ux-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    position: relative;
    animation: fadeInUp 1s ease;
}

.ux-hero p {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
}

/* ===== UX/UI ABOUT SECTION - MODERN COMPACT ===== */
.ux-about {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    position: relative;
}

.ux-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(65, 88, 208, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ux-about h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #4158D0, #C850C0);
    border-radius: 4px;
}

.ux-about p {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    color: #334155;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
}

.ux-about p:last-of-type {
    margin-bottom: 0;
}

/* ===== UX/UI PROCESS SECTION - MODERN COMPACT ===== */
.ux-process {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.ux-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(65, 88, 208, 0.2), transparent);
}

.ux-process h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #4158D0, #C850C0);
    border-radius: 4px;
}

.ux-process h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #0f172a;
    margin: 1.8rem 0 0.6rem 0;
    padding-left: 1rem;
    border-left: 3px solid #C850C0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ux-process h3:hover {
    border-left-color: #4158D0;
    padding-left: 1.3rem;
}

.ux-process p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    padding-left: 1rem;
}

/* ===== UX/UI SERVICES SECTION - MODERN COMPACT ===== */
.ux-services {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.ux-services h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #4158D0, #C850C0);
    border-radius: 4px;
}

.ux-services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

.ux-services li {
    background: white;
    padding: 1.5rem 1.5rem 1.5rem 2.8rem;
    border-radius: 16px;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: #1e293b;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(65, 88, 208, 0.1);
    position: relative;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.ux-services li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, #4158D0, #C850C0);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 5px 10px rgba(65, 88, 208, 0.3);
}

.ux-services li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(65, 88, 208, 0.15);
    border-color: #4158D0;
}

/* ===== UX/UI TOOLS SECTION - MODERN COMPACT ===== */
.ux-tools {
    padding: 70px 20px;
    background: linear-gradient(135deg, #0b1120 0%, #1a2639 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ux-tools::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 80, 192, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ux-tools h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: white;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-tools > p {
    text-align: center;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.ux-tools ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.ux-tools li {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    flex: 0 1 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.ux-tools li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.ux-tools li:hover {
    background: rgba(65, 88, 208, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: #C850C0;
    box-shadow: 0 15px 30px rgba(200, 80, 192, 0.3);
}

.ux-tools li:hover::before {
    left: 100%;
}

/* ===== UX/UI WHY CHOOSE US SECTION - MODERN COMPACT ===== */
.ux-why {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    position: relative;
}

.ux-why h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: #0f172a;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-why h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #4158D0, #C850C0);
    border-radius: 4px;
}

.ux-why ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    list-style: none;
}

.ux-why li {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: #0f172a;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(65, 88, 208, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.ux-why li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #4158D0, #C850C0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.ux-why li::after {
    content: '★';
    position: absolute;
    bottom: 0.5rem;
    right: 0.8rem;
    font-size: 3rem;
    color: rgba(65, 88, 208, 0.05);
    font-weight: 400;
}

.ux-why li:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(65, 88, 208, 0.15);
    background: white;
}

.ux-why li:hover::before {
    transform: scaleX(1);
}

/* ===== UX/UI CALL TO ACTION SECTION - MODERN COMPACT ===== */
.ux-cta {
    padding: 70px 20px;
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ux-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1.5" fill="white" opacity="0.1"/></svg>') repeat;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.ux-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: white;
    margin-bottom: 1rem;
    padding: 0 15px;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ux-cta p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    position: relative;
    line-height: 1.6;
}

.ux-cta a {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: white;
    color: #4158D0;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.ux-cta a:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE BREAKPOINTS - COMPACT ===== */
@media (max-width: 1024px) {
    .ux-hero {
        padding: 80px 20px;
    }
    
    .ux-about,
    .ux-process,
    .ux-services,
    .ux-tools,
    .ux-why,
    .ux-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .ux-hero {
        padding: 70px 20px;
    }
    
    .ux-hero h1 {
        font-size: 2rem;
    }
    
    .ux-about,
    .ux-process,
    .ux-services,
    .ux-tools,
    .ux-why,
    .ux-cta {
        padding: 50px 20px;
    }
    
    .ux-about h2,
    .ux-process h2,
    .ux-services h2,
    .ux-tools h2,
    .ux-why h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .ux-process h3 {
        margin: 1.5rem 0 0.6rem;
        padding-left: 0.8rem;
    }
    
    .ux-process p {
        padding-left: 0.8rem;
    }
    
    .ux-services ul {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.2rem;
    }
    
    .ux-tools ul {
        gap: 1rem;
    }
    
    .ux-tools li {
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .ux-hero {
        padding: 60px 15px;
    }
    
    .ux-hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .ux-hero p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .ux-about,
    .ux-process,
    .ux-services,
    .ux-tools,
    .ux-why,
    .ux-cta {
        padding: 40px 15px;
    }
    
    .ux-about h2,
    .ux-process h2,
    .ux-services h2,
    .ux-tools h2,
    .ux-why h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.6rem;
    }
    
    .ux-about h2::after,
    .ux-process h2::after,
    .ux-services h2::after,
    .ux-tools h2::after,
    .ux-why h2::after {
        width: 50px;
        height: 2px;
    }
    
    .ux-about p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .ux-process h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.4rem;
        padding-left: 0.6rem;
        border-left-width: 2px;
    }
    
    .ux-process p {
        font-size: 0.85rem;
        padding-left: 0.6rem;
        line-height: 1.6;
    }
    
    .ux-services li {
        padding: 1.2rem 1.2rem 1.2rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .ux-services li::before {
        left: 0.8rem;
        top: 1.2rem;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .ux-tools > p {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }
    
    .ux-tools ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .ux-tools li {
        width: 100%;
        text-align: center;
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .ux-why ul {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .ux-why li {
        padding: 1.5rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .ux-why li::after {
        font-size: 2.5rem;
    }
    
    .ux-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .ux-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .ux-cta a {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .ux-hero h1 {
        font-size: 1.4rem;
    }
    
    .ux-hero p {
        font-size: 0.85rem;
    }
    
    .ux-about h2,
    .ux-process h2,
    .ux-services h2,
    .ux-tools h2,
    .ux-why h2,
    .ux-cta h2 {
        font-size: 1.4rem;
    }
    
    .ux-cta p {
        font-size: 0.85rem;
    }
    
    .ux-cta a {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* ===== CONTAINER FOR BETTER LAYOUT ===== */
.ux-hero > *,
.ux-about > *,
.ux-process > *,
.ux-services > *,
.ux-tools > *,
.ux-why > *,
.ux-cta > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: #4158D0;
    color: white;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4158D0, #C850C0);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C850C0, #4158D0);
}