
/* ============================================
   1. BASE & VARIABLES
============================================ */
/* ============================================
   NEW COLOR THEME - EMERALD GREEN
============================================ */
:root {
    /* Primary Colors */
    --primary-accent: #10B981;
    --secondary-accent: #059669;
    --tertiary-accent: #34D399;
    
    /* Background Colors */
    --main-bg: #0a0f0d;
    --secondary-bg: #0f1a16;
    --card-bg: #132a23;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-soft: #a3c4b8;
    --text-muted: #5a8a7a;
    
    /* Special Colors */
    --whatsapp-green: #25D366;
    --glass-border: rgba(16, 185, 129, 0.15);
    --glass-bg: rgba(16, 185, 129, 0.05);
    --shadow-color: rgba(16, 185, 129, 0.25);
    
    /* Utilities */
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--main-bg);
    color: var(--text-soft);
    line-height: 1.7;
    overflow-x: hidden;
}


body {
  overflow-x: hidden;
}

body:not(.loaded) * {
  transition: none !important;
}





/* Prevent layout shift */
body {
  overflow-x: hidden;
}

/* Smooth load */
body * {
  transition: all 0.2s ease-in-out;
}

/* Error message */
.field-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 5px;
}

/* Hide messages initially */
#successMessage,
#errorMessage {
  display: none;
}




a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Section Heading */
.section-heading {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--text-white);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    margin: 15px auto 0;
    border-radius: 10px;
}

.section-subheading {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

/* ============================================
   2. BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--primary-accent);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--text-white);
    border: none;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.secondary-btn {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-soft);
}

.secondary-btn:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--main-bg);
    transform: translateY(-3px);
}

/* ============================================
   3. HEADER & NAVIGATION
============================================ */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

#mainHeader.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}




/* ============================================
   ADVANCED MODERN PRELOADER
============================================ */

/* Preloader Container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f0d 0%, #0f1a16 40%, #132a23 70%, #0a0f0d 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}

/* Preloader Exit Animation */
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    pointer-events: none;
}

.preloader.loaded .loader-content {
    animation: contentExit 0.8s ease forwards;
}

@keyframes contentExit {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.8);
    }
}

/* Loader Content */
.loader-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 40px;
    width: 100%;
    max-width: 500px;
}

/* ============================================
   ANIMATED BACKGROUND
============================================ */
.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Grid Background */
.loader-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

/* Floating Particles */
.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.loader-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
    opacity: 0;
    box-shadow: 
        0 0 10px #10B981,
        0 0 20px #10B981,
        0 0 30px rgba(16, 185, 129, 0.5);
}

/* Particle Positions */
.loader-particles span:nth-child(1) {
    left: 5%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.loader-particles span:nth-child(2) {
    left: 15%;
    width: 5px;
    height: 5px;
    animation-delay: 1s;
    animation-duration: 14s;
}

.loader-particles span:nth-child(3) {
    left: 25%;
    width: 7px;
    height: 7px;
    animation-delay: 2s;
    animation-duration: 11s;
}

.loader-particles span:nth-child(4) {
    left: 35%;
    width: 4px;
    height: 4px;
    animation-delay: 3s;
    animation-duration: 16s;
}

.loader-particles span:nth-child(5) {
    left: 45%;
    width: 9px;
    height: 9px;
    animation-delay: 0.5s;
    animation-duration: 13s;
}

.loader-particles span:nth-child(6) {
    left: 55%;
    width: 6px;
    height: 6px;
    animation-delay: 1.5s;
    animation-duration: 15s;
}

.loader-particles span:nth-child(7) {
    left: 65%;
    width: 5px;
    height: 5px;
    animation-delay: 2.5s;
    animation-duration: 10s;
}

.loader-particles span:nth-child(8) {
    left: 75%;
    width: 8px;
    height: 8px;
    animation-delay: 3.5s;
    animation-duration: 17s;
}

.loader-particles span:nth-child(9) {
    left: 85%;
    width: 4px;
    height: 4px;
    animation-delay: 0.8s;
    animation-duration: 12s;
}

.loader-particles span:nth-child(10) {
    left: 92%;
    width: 7px;
    height: 7px;
    animation-delay: 1.8s;
    animation-duration: 14s;
}

.loader-particles span:nth-child(11) {
    left: 10%;
    width: 5px;
    height: 5px;
    animation-delay: 2.8s;
    animation-duration: 11s;
}

.loader-particles span:nth-child(12) {
    left: 50%;
    width: 6px;
    height: 6px;
    animation-delay: 4s;
    animation-duration: 13s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg) scale(1.5);
        opacity: 0;
    }
}

/* Glow Orbs */
.loader-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* ============================================
   LOGO ANIMATION
============================================ */
.loader-logo {
    margin-bottom: 40px;
    position: relative;
    perspective: 1000px;
}

.logo-text {
    font-size: clamp(4rem, 15vw, 7rem);
    font-weight: 900;
    letter-spacing: 20px;
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(
        135deg,
        #10B981 0%,
        #34D399 25%,
        #6EE7B7 50%,
        #34D399 75%,
        #10B981 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: 
        logoGradient 4s ease infinite,
        logoFloat 3s ease-in-out infinite,
        logoAppear 1s ease forwards;
    text-shadow: none;
}

@keyframes logoGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(5deg);
    }
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Logo Glow Effect */
.logo-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(50px);
    opacity: 0.7;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        filter: blur(50px);
    }
    50% {
        opacity: 0.9;
        filter: blur(60px);
    }
}

/* Logo Reflection */
.logo-text::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(16, 185, 129, 0.4) 0%,
        transparent 50%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scaleY(-1) translateY(20px);
    opacity: 0.3;
    filter: blur(2px);
    mask-image: linear-gradient(to top, transparent 30%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 30%, black 100%);
}

/* Rotating Ring Around Logo */
.loader-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-top-color: #10B981;
    border-right-color: #34D399;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 3s linear infinite;
    opacity: 0.5;
}

.loader-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    border: 1px solid transparent;
    border-bottom-color: #10B981;
    border-left-color: #059669;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 4s linear infinite reverse;
    opacity: 0.3;
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================
   TYPING TEXT
============================================ */
.loader-text {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #a3c4b8;
    margin-bottom: 50px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    font-weight: 400;
    letter-spacing: 1px;
}

.typing-text {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.cursor {
    color: #10B981;
    font-weight: 300;
    animation: cursorBlink 0.8s step-end infinite;
    text-shadow: 0 0 10px #10B981;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ============================================
   PROGRESS BAR
============================================ */
.loader-progress {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(16, 185, 129, 0.1);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #059669 0%,
        #10B981 25%,
        #34D399 50%,
        #10B981 75%,
        #059669 100%
    );
    background-size: 200% 100%;
    border-radius: 20px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: progressShine 2s linear infinite;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 40px rgba(16, 185, 129, 0.3);
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Progress Fill Glow Tip */
.progress-fill::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 
        0 0 15px #34D399,
        0 0 30px #34D399,
        0 0 45px rgba(52, 211, 153, 0.5);
    animation: tipPulse 1s ease-in-out infinite;
}

@keyframes tipPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Shimmer Effect */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Progress Percentage */
.progress-percent {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 800;
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.progress-percent span {
    background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #6EE7B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    position: relative;
}

.progress-percent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: percentGlow 2s ease-in-out infinite;
}

@keyframes percentGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* ============================================
   LOADING STATUS
============================================ */
.loader-status {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: #5a8a7a;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 20px;
    position: relative;
    padding: 10px 30px;
    display: inline-block;
}

.loader-status span {
    position: relative;
    z-index: 1;
}

/* Status Decorative Dots */
.loader-status::before,
.loader-status::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: statusDot 1.5s ease-in-out infinite;
}

.loader-status::before {
    left: 10px;
    animation-delay: 0s;
}

.loader-status::after {
    right: 10px;
    animation-delay: 0.75s;
}

@keyframes statusDot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 1;
    }
}

/* ============================================
   LOADING COMPLETE STATE
============================================ */
.preloader.complete .progress-fill {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.preloader.complete .loader-status span {
    color: #10B981;
}

.preloader.complete .logo-text {
    animation: logoComplete 0.5s ease forwards;
}

@keyframes logoComplete {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 768px) {
    .loader-content {
        padding: 30px 20px;
    }
    
    .logo-text {
        letter-spacing: 15px;
    }
    
    .loader-logo::before {
        width: 150px;
        height: 150px;
    }
    
    .loader-logo::after {
        width: 180px;
        height: 180px;
    }
    
    .loader-progress {
        max-width: 280px;
    }
    
    .progress-track {
        height: 6px;
    }
    
    .progress-fill::before {
        width: 15px;
        height: 15px;
    }
    
    .loader-status {
        letter-spacing: 3px;
    }
    
    .loader-text {
        min-height: 35px;
    }
}

@media (max-width: 480px) {
    .loader-content {
        padding: 20px 15px;
    }
    
    .logo-text {
        letter-spacing: 10px;
    }
    
    .loader-logo::before,
    .loader-logo::after {
        display: none;
    }
    
    .loader-progress {
        max-width: 250px;
        padding: 0 15px;
    }
    
    .progress-fill::before {
        width: 12px;
        height: 12px;
    }
    
    .loader-status {
        letter-spacing: 2px;
        padding: 10px 25px;
    }
    
    .loader-status::before,
    .loader-status::after {
        width: 6px;
        height: 6px;
    }
    
    .loader-text {
        font-size: 0.9rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .loader-particles span,
    .logo-text,
    .progress-fill,
    .loader-logo::before,
    .loader-logo::after {
        animation: none;
    }
    
    .logo-text {
        opacity: 1;
        transform: none;
        filter: none;
    }
}





/* ============================================
   4. HERO SECTION
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-accent);
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.hero-content .sub-heading {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--text-soft);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .sub-heading strong {
    color: var(--primary-accent);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 50%;
    opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   5. ABOUT SECTION
============================================ */
.about-section {
    background: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--glass-border);
}

.about-text .intro-bio {
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-text .intro-bio strong {
    color: var(--primary-accent);
}

.skills-heading {
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.3rem;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-white);
    font-size: 0.9rem;
}

.skill-percent {
    color: var(--primary-accent);
    font-weight: 600;
}

.progress-bar-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

/* ============================================
   6. CV / PROFILE SECTION
============================================ */
.cv-section {
    background: var(--main-bg);
}

.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.15);
    border-color: var(--primary-accent);
}

.detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
}

.detail-card h3 i {
    color: var(--primary-accent);
    font-size: 1.3rem;
}

.detail-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-accent), var(--secondary-accent));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 15px 50px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-content {
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.15);
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border: 4px solid var(--main-bg);
    border-radius: 50%;
    z-index: 1;
    top: 30px;
}

.timeline-item.left .timeline-marker {
    right: -10px;
}

.timeline-item.right .timeline-marker {
    left: -10px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary-accent);
    margin-bottom: 8px;
}

.timeline-content .company {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.timeline-content .dates {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: inline-block;
    padding: 4px 12px;
    background: var(--glass-bg);
    border-radius: 20px;
}

.timeline-content ul {
    padding-left: 0;
}

.timeline-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.timeline-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
}

.reference-note {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

/* ============================================
   7. SERVICES SECTION
============================================ */
.services-section {
    background: var(--secondary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--main-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.15);
    border-color: var(--primary-accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(56, 91, 255, 0.15));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-accent);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--text-white);
}

.service-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li i {
    color: #10B981;
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-accent);
    font-weight: 600;
    margin-top: 15px;
}



.testimonials-section {
  padding: 100px 5%;
  background: var(--main-bg);
}

.testimonials-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--text-white);
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition);
}

.testimonial-card {
  min-width: 350px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  margin: 0 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px var(--shadow-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-accent);
}

.testimonial-text {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--primary-accent);
}

.testimonial-user h4 {
  color: var(--text-white);
  font-size: 16px;
}

.testimonial-user span {
  color: var(--text-muted);
  font-size: 13px;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  background: var(--glass-border);
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots span.active {
  background: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-accent);
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 85%;
  }
}


/* ============================================
   9. PROJECTS SECTION
============================================ */
.projects-section {
    background: var(--main-bg);
}

.project-filters {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: var(--card-bg);
    color: var(--text-soft);
    border: 1px solid var(--glass-border);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--text-white);
    border-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 191, 255, 0.15);
}

.project-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9), rgba(56, 91, 255, 0.9));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-accent);
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.project-overlay a:hover {
    background: var(--main-bg);
    color: var(--text-white);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.project-info .description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: rgba(0, 191, 255, 0.1);
    color: var(--primary-accent);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}
/

/* ============================================
   11. CONTACT SECTION
============================================ */
.contact-section {
    background: var(--secondary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    padding: 45px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.3;
}

.contact-info h3 span {
    color: var(--primary-accent);
}

.contact-info > p {
    color: var(--text-soft);
    margin-bottom: 35px;
    font-size: 1rem;
}

.info-details {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 18px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-accent);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.info-item a,
.info-item span {
    color: var(--text-soft);
    font-size: 0.95rem;
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-soft);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-color: transparent;
    color: var(--text-white);
    transform: translateY(-5px);
}

/* Form Messages */
.form-success-message,
.form-error-message {
    display: none;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.form-success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-success-message i,
.form-error-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.form-success-message i {
    color: #10B981;
}

.form-error-message i {
    color: #EF4444;
}

.form-success-message h3 {
    color: #10B981;
}

.form-error-message h3 {
    color: #EF4444;
}

/* ============================================
   12. FOOTER
============================================ */
.main-footer {
    background: var(--main-bg);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-text {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

/* ============================================
   13. FIXED BUTTONS
============================================ */
.fixed-btn {
    position: fixed;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    z-index: 1000;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.whatsapp-btn {
    left: 30px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.back-to-top-btn {
    right: 30px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--text-white);
    box-shadow: 0 5px 20px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fixed-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.back-to-top-btn.visible:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   14. PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   15. RESPONSIVE - LAPTOP (1024px)
============================================ */
@media (max-width: 1024px) {
    /* Container */
    .container {
        width: 92%;
        padding: 70px 0;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        text-align: center;
        order: -1;
    }

    .about-image img {
        max-width: 350px;
    }

    /* Timeline */
    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        padding-left: 70px;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 21px;
        right: auto;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* Testimonials */
    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   16. RESPONSIVE - TABLET (768px)
============================================ */
@media (max-width: 768px) {
    /* Base */
    html {
        font-size: 15px;
    }

    .container {
        width: 90%;
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-subheading {
        margin-top: -30px;
        margin-bottom: 40px;
        font-size: 1rem;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        display: none;
    }

    /* About */
    .about-image img {
        max-width: 280px;
    }

    .about-text .intro-bio {
        font-size: 1rem;
    }

    /* Profile Cards */
    .profile-details-grid {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 25px;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 60px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 60px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 11px;
    }

    .timeline-content {
        padding: 25px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* Pricing */
    .pricing-card {
        padding: 35px 25px;
    }

    .custom-quote {
        padding: 30px 20px;
    }

    .quote-content {
        flex-direction: column;
        text-align: center;
    }

    .quote-text {
        text-align: center;
    }

    /* Projects */
    .project-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-thumbnail {
        height: 200px;
    }

   

    /* Contact */
    .contact-form {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .info-item {
        padding: 15px;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    /* Footer */
    .footer-links {
        gap: 15px;
    }

    /* Fixed Buttons */
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
    }

    .whatsapp-btn {
        left: 20px;
    }

    .back-to-top-btn {
        right: 20px;
    }
}

/* ============================================
   17. RESPONSIVE - MOBILE (480px)
============================================ */
@media (max-width: 480px) {
    /* Base */
    html {
        font-size: 14px;
    }

    .container {
        width: 92%;
        padding: 50px 0;
    }

    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .section-subheading {
        margin-top: -25px;
        margin-bottom: 35px;
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    /* Header */
    .logo a {
        font-size: 1.4rem;
    }

    .nav-links {
        width: 85%;
    }

    /* Hero */
    .hero-section {
        padding: 90px 15px 50px;
    }

    .hero-badge {
        padding: 6px 15px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .sub-heading {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    /* About */
    .about-image img {
        max-width: 250px;
    }

    .skills-heading {
        font-size: 1.2rem;
    }

    .skill-name {
        font-size: 0.85rem;
    }

    /* Profile Cards */
    .detail-card {
        padding: 20px;
    }

    .detail-card h3 {
        font-size: 1.1rem;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 50px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 50px;
    }

    .timeline::after {
        left: 15px;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 6px;
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    .timeline-content ul li {
        font-size: 0.85rem;
    }

    /* Services */
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .custom-quote {
        padding: 25px 15px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .quote-text h3 {
        font-size: 1.2rem;
    }

    /* Projects */
    .project-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .project-thumbnail {
        height: 180px;
    }

    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .tags span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

   

    /* Contact */
    .contact-form {
        padding: 25px 18px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .info-item {
        padding: 12px;
        gap: 12px;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .info-item a,
    .info-item span {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /* Form Messages */
    .form-success-message,
    .form-error-message {
        padding: 35px 20px;
    }

    .form-success-message i,
    .form-error-message i {
        font-size: 3rem;
    }

    .form-success-message h3,
    .form-error-message h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    /* Fixed Buttons */
    .fixed-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 15px;
    }

    .whatsapp-btn {
        left: 15px;
    }

    .back-to-top-btn {
        right: 15px;
    }
}

/* ============================================
   18. RESPONSIVE - EXTRA SMALL (360px)
============================================ */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}






/* Service section  */



/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 120px 0;
    background: var(--main-bg);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--shadow-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Heading */
.section-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-heading span {
    background: linear-gradient(135deg, var(--primary-accent), var(--tertiary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subheading {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 70px;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* ============================================
   SERVICE CARD
   ============================================ */

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Card Glow Effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), var(--tertiary-accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glass-bg) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-accent);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--shadow-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

/* Featured Card */
.service-card.featured {
    border: 2px solid var(--primary-accent);
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(16, 185, 129, 0.08) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--main-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-accent);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--tertiary-accent);
    transform: scale(1.1);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.service-card:hover .icon-bg {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary-accent);
    transform: rotate(5deg);
}

/* Card Title & Description */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--tertiary-accent);
}

.service-card > p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    transition: var(--transition);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.service-features li i {
    color: var(--primary-accent);
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Tech Stack Badges */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.tech-badge {
    background: var(--glass-bg);
    color: var(--primary-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.tech-badge:hover {
    background: var(--primary-accent);
    color: var(--main-bg);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 0;
}

.service-link i {
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--tertiary-accent);
}

.service-link:hover i {
    transform: translateX(8px);
}

/* ============================================
   WHY CHOOSE ME SECTION
   ============================================ */

.why-choose-me {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--shadow-color) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
}

.why-choose-me h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.reason-item {
    padding: 30px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.reason-item:hover {
    background: var(--glass-bg);
    transform: translateY(-5px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.reason-item:hover .reason-icon {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: rotate(5deg) scale(1.05);
}

.reason-icon i {
    font-size: 1.8rem;
    color: var(--primary-accent);
    transition: var(--transition);
}

.reason-item:hover .reason-icon i {
    color: var(--main-bg);
}

.reason-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.reason-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.reason-item:hover p {
    color: var(--text-soft);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .section-subheading {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card.featured {
        order: -1; /* Bring featured card to top on mobile */
    }
    
    .why-choose-me {
        padding: 50px 25px;
        border-radius: 20px;
    }
    
    .why-choose-me h3 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-item {
        padding: 25px 20px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .tech-stack {
        gap: 6px;
    }
    
    .tech-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card:hover .service-icon i {
    animation: float 2s ease-in-out infinite;
}

/* Smooth Scroll Reveal */
.service-card,
.why-choose-me,
.reason-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Testimoinals Section */
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--shadow-color) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    padding: 0 50px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 380px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 30px;
    scroll-snap-align: start;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), var(--tertiary-accent));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 30px var(--shadow-color);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.quote-icon i {
    font-size: 1.2rem;
    color: var(--primary-accent);
    opacity: 0.6;
}

/* Project Type Badge */
.project-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.project-type i {
    font-size: 0.85rem;
    color: var(--primary-accent);
}

.project-type span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 25px;
    min-height: 120px;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    font-size: 0.9rem;
    color: #fbbf24;
}

/* User Info */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-bg);
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow i {
    font-size: 1rem;
    color: var(--text-soft);
    transition: var(--transition);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-arrow:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow:hover i {
    color: var(--main-bg);
}

/* Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
    background: var(--primary-accent);
    transform: scale(1.2);
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */

.stats-counter {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 40px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, var(--glass-bg) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.stat-item:hover .stat-icon {
    background: var(--primary-accent);
    transform: rotate(5deg) scale(1.1);
}

.stat-item:hover .stat-icon i {
    color: var(--main-bg);
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .stats-counter {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-slider {
        padding: 0 10px;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        padding: 30px 25px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .stats-counter {
        padding: 40px 25px;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.7rem;
    }
    
    .testimonial-card {
        flex: 0 0 290px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        min-height: 100px;
    }
    
    .stats-counter {
        padding: 30px 20px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        padding: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}