
/* ========================================
   HERO SECTION - COMPLETE & OPTIMIZED
   ======================================== */

/* Global Styles */
html {
    scroll-behavior: smooth;
}

/* Hero Section Container */
.hero-section {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000000 0%, #0a0015 50%, #1a0a2e 100%);
    overflow: hidden;
    z-index: 1;
}

/* Smooth Bottom Edge Transition */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, #18181A 100%);
    z-index: 15;
    pointer-events: none;
}

/* ========================================
   COSMIC GLOW EFFECTS
   ======================================== */

/* Main Bright Cosmic Sphere */
.hero-cosmic-glow {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(200, 150, 255, 0.7) 8%,
        rgba(162, 89, 255, 0.6) 15%,
        rgba(138, 89, 255, 0.4) 25%,
        rgba(118, 75, 162, 0.25) 40%,
        rgba(102, 89, 200, 0.12) 60%,
        transparent 80%
    );
    filter: blur(80px);
    animation: smoothGlow 8s ease-in-out infinite, fadeInGlow 1.5s ease-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes smoothGlow {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(0.95);
        filter: blur(80px) brightness(0.9);
    }
    25% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1);
        filter: blur(85px) brightness(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
        filter: blur(90px) brightness(1.1);
    }
    75% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1);
        filter: blur(85px) brightness(1);
    }
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(0.95);
        filter: blur(80px) brightness(0.9);
    }
}

/* Cosmic Ring */
.hero-cosmic-ring {
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translateX(-50%);
    width: 200%;
    height: 60%;
    background: radial-gradient(
        ellipse at top center,
        rgba(162, 89, 255, 0.15) 0%,
        rgba(138, 89, 255, 0.08) 30%,
        transparent 60%
    );
    border-radius: 50% 50% 0 0;
    z-index: 1;
    pointer-events: none;
    animation: fadeIn 1.8s ease-out;
}

/* Background Flare */
.hero-bg-flare {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(
        ellipse at top center,
        rgba(80, 40, 120, 0.4) 0%,
        rgba(100, 50, 140, 0.3) 20%,
        rgba(120, 60, 160, 0.2) 35%,
        rgba(138, 89, 255, 0.12) 50%,
        rgba(162, 89, 255, 0.06) 65%,
        transparent 80%
    );
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: seamlessAura 10s ease-in-out infinite, fadeIn 1.2s ease-out;
}

@keyframes seamlessAura {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.98);
    }
    33% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.02);
    }
    66% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.98);
    }
}

/* Purple Grid Overlay */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    background-image: 
        repeating-linear-gradient(
            0deg, 
            transparent 0px, 
            transparent 49px, 
            rgba(162, 89, 255, 0.18) 49px, 
            rgba(162, 89, 255, 0.18) 50px
        ),
        repeating-linear-gradient(
            90deg, 
            transparent 0px, 
            transparent 49px, 
            rgba(162, 89, 255, 0.18) 49px, 
            rgba(162, 89, 255, 0.18) 50px
        );
    opacity: 0.5;
    animation: gridFadeIn 2s ease-out;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ========================================
   FLOATING ORBS
   ======================================== */

.floating-orbs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%, 
        rgba(255, 255, 255, 0.5), 
        rgba(162, 89, 255, 0.25), 
        rgba(138, 89, 255, 0.08)
    );
    box-shadow: 
        0 0 8px 2px rgba(162, 89, 255, 0.04),
        0 0 16px 0 rgba(138, 89, 255, 0.02),
        inset -4px -4px 10px rgba(138, 89, 255, 0.02);
    filter: blur(0.3px);
    opacity: 0;
    animation: orbReducedGlow 4s ease-in-out infinite alternate,
               orbSmoothBounce 8s ease-in-out infinite,
               orbFadeIn 1.5s ease-out forwards;
}

@keyframes orbReducedGlow {
    0% {
        box-shadow:
            0 0 4px 1px rgba(162, 89, 255, 0.02),
            0 0 10px 0 rgba(138, 89, 255, 0.01),
            0 0 0px 0px rgba(162, 89, 255, 0.005) inset;
        filter: blur(0.4px);
        opacity: 0.7;
    }
    50% {
        box-shadow:
            0 0 8px 3px rgba(162, 89, 255, 0.04),
            0 0 16px 0 rgba(138, 89, 255, 0.02),
            0 0 3px 1px rgba(162, 89, 255, 0.015) inset;
        filter: blur(0.6px);
        opacity: 0.85;
    }
    100% {
        box-shadow:
            0 0 5px 1.5px rgba(162, 89, 255, 0.025),
            0 0 12px 0 rgba(138, 89, 255, 0.015),
            0 0 1px 0.5px rgba(162, 89, 255, 0.008) inset;
        filter: blur(0.5px);
        opacity: 0.75;
    }
}

@keyframes orbSmoothBounce {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    25% { 
        transform: translateY(-12px) scale(1.02); 
    }
    50% { 
        transform: translateY(-18px) scale(1.04); 
    }
    75% { 
        transform: translateY(-12px) scale(1.02); 
    }
}

@keyframes orbFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
    }
}

/* Individual Orb Positioning */
.orb-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s, 0s, 0.3s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 1s, 2s, 0.6s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 25%;
    animation-delay: 0.5s, 1s, 0.9s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 15%;
    animation-delay: 1.5s, 3s, 1.2s;
}

/* ========================================
   HERO CONTENT
   ======================================== */

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    animation: fadeInUpContent 1.2s ease-out;
}

@keyframes fadeInUpContent {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(162, 89, 255, 0.15);
    border: 1px solid rgba(162, 89, 255, 0.4);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 0.3s both;
    letter-spacing: 0.01em;
}

/* Hero Title */
.hero-title {
    font-weight: 700;
    font-size: 64px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(162, 89, 255, 0.3);
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Hero Description */
.hero-desc {
    color: #b8b8d1;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    animation: fadeIn 1s ease-out 0.7s both;
    max-width: 700px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Get Started Button - Glassmorphism */
.btn-hero-primary {
    background: linear-gradient(135deg, rgba(162,89,255,0.20) 0%, rgba(255,255,255,0.13) 100%);
    color: #fff !important;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    backdrop-filter: blur(30px) saturate(175%);
    -webkit-backdrop-filter: blur(30px) saturate(175%);
    background-color: rgba(162, 89, 255, 0.30);
    border: 1.5px solid rgba(255,255,255,0.21);
    box-shadow:
        0 8px 32px 0 rgba(162,89,255,0.10),
        0 1.5px 6px rgba(139,61,255,0.06),
        0 1px 32px 0 rgba(255,255,255,0.03) inset;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, border 0.2s, color 0.2s, transform 0.2s;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    left: 22%;
    top: -38%;
    width: 66%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255,255,255,0.19) 10%, rgba(255,255,255,0.03) 54%);
    opacity: 0.22;
    border-radius: 40% 70% 60% 50%/60% 50% 70% 40%;
    pointer-events: none;
    filter: blur(1.5px);
    z-index: 1;
    transition: opacity 0.2s;
}

.btn-hero-primary:hover::before,
.btn-hero-primary:focus::before {
    opacity: 0.36;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background: linear-gradient(135deg, rgba(162,89,255,0.27) 0%, rgba(255,255,255,0.16) 100%);
    color: #fff !important;
    border: 1.5px solid rgba(162,89,255,0.22);
    background-color: rgba(162, 89, 255, 0.37);
    box-shadow:
        0 12px 40px rgba(139, 61, 255, 0.13),
        0 2px 12px 0 rgba(255,255,255,0.06) inset;
    transform: translateY(-3px) scale(1.04);
}

/* Secondary Button */
.btn-hero-secondary {
    background: #fff;
    color: #0a0015 !important;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    display: inline-block;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    transform: translateY(-3px);
    background: #f0f0f0;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    color: #a259ff !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Ultra-wide Screens */
@media (min-width: 2560px) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-cosmic-glow {
        width: 1400px;
        height: 1400px;
    }
    
    .hero-title {
        font-size: 90px;
    }
    
    .hero-desc {
        font-size: 22px;
        max-width: 800px;
    }
    
    .hero-badge {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 18px 48px;
        font-size: 18px;
    }
    
    .orb-1 { width: 150px; height: 150px; }
    .orb-2 { width: 100px; height: 100px; }
    .orb-3 { width: 120px; height: 120px; }
    .orb-4 { width: 80px; height: 80px; }
}

/* Large Desktop */
@media (min-width: 1920px) {
    .hero-cosmic-glow {
        width: 1200px;
        height: 1200px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-desc {
        font-size: 20px;
    }
}

/* Desktop Large */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-cosmic-glow {
        width: 1100px;
        height: 1100px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-desc {
        font-size: 20px;
    }
}

/* Desktop Medium */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-cosmic-glow {
        width: 1000px;
        height: 1000px;
    }
    
    .hero-title {
        font-size: 68px;
    }
}

/* Desktop Small */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-cosmic-glow {
        width: 900px;
        height: 900px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-desc {
        font-size: 17px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-cosmic-glow {
        width: 700px;
        height: 700px;
    }
    
    .hero-title {
        font-size: 52px;
        margin-bottom: 20px;
    }
    
    .hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        gap: 16px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .orb-1 { width: 100px; height: 100px; }
    .orb-2 { width: 70px; height: 70px; }
    .orb-3 { width: 85px; height: 85px; }
    .orb-4 { width: 55px; height: 55px; }
}

/* Mobile Large */
@media (min-width: 600px) and (max-width: 767px) {
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-cosmic-glow {
        width: 600px;
        height: 600px;
    }
    
    .hero-title {
        font-size: 46px;
        margin-bottom: 18px;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 9px 20px;
        margin-bottom: 28px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 14px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 13px 28px;
        font-size: 14px;
    }
    
    .orb-1 { width: 85px; height: 85px; }
    .orb-2 { width: 60px; height: 60px; }
    .orb-3 { width: 75px; height: 75px; }
    .orb-4 { width: 48px; height: 48px; }
}

/* Mobile Medium */
@media (min-width: 481px) and (max-width: 599px) {
    .hero-content {
        padding: 0 25px;
    }
    
    .hero-cosmic-glow {
        width: 550px;
        height: 550px;
    }
    
    .hero-title {
        font-size: 38px;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 26px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        font-size: 14px;
        padding: 13px 24px;
        max-width: 170px;
        min-width: 140px;
    }
    
    .orb-1 { width: 80px; height: 80px; }
    .orb-2 { width: 55px; height: 55px; }
    .orb-3 { width: 70px; height: 70px; }
    .orb-4 { width: 45px; height: 45px; }
}

/* Mobile Small */
@media (min-width: 361px) and (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-cosmic-glow {
        width: 500px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 14px;
        margin-bottom: 28px;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        font-size: 14px;
        padding: 13px 20px;
        max-width: 160px;
        min-width: 140px;
    }
    
    .orb-1 { width: 70px; height: 70px; }
    .orb-2 { width: 50px; height: 50px; }
    .orb-3 { width: 60px; height: 60px; }
    .orb-4 { width: 40px; height: 40px; }
    
    .hero-section::after {
        height: 100px;
    }
}

/* Mobile Extra Small */
@media (min-width: 321px) and (max-width: 360px) {
    .hero-content {
        padding: 0 18px;
    }
    
    .hero-cosmic-glow {
        width: 450px;
        height: 450px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    
    .hero-desc {
        font-size: 13px;
        margin-bottom: 26px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 22px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        font-size: 13px;
        padding: 12px 16px;
        min-width: 120px;
        max-width: 145px;
    }
    
    .orb-1 { width: 65px; height: 65px; }
    .orb-2 { width: 45px; height: 45px; }
    .orb-3 { width: 55px; height: 55px; }
    .orb-4 { width: 38px; height: 38px; }
    
    .hero-section::after {
        height: 90px;
    }
}

/* Mobile Tiny */
@media (max-width: 320px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-cosmic-glow {
        width: 400px;
        height: 400px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        font-size: 12px;
        padding: 11px 14px;
        min-width: 110px;
        max-width: 135px;
    }
    
    .orb-1 { width: 55px; height: 55px; }
    .orb-2 { width: 40px; height: 40px; }
    .orb-3 { width: 50px; height: 50px; }
    .orb-4 { width: 35px; height: 35px; }
    
    .hero-section::after {
        height: 80px;
    }
}

/* Height-specific Adjustments */
@media (max-height: 600px) {
    .hero-section {
        min-height: 600px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: clamp(28px, 5vw, 48px);
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: clamp(12px, 2.5vw, 16px);
        margin-bottom: 20px;
    }
    
    .hero-badge {
        margin-bottom: 16px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Landscape Mode - Short Screens */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 500px;
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(24px, 4vw, 36px);
        margin-bottom: 10px;
    }
    
    .hero-desc {
        font-size: clamp(11px, 2vw, 14px);
        margin-bottom: 16px;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 14px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .orb-1, .orb-2, .orb-3, .orb-4 {
        display: none;
    }
}

/* Performance Optimization - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-cosmic-glow,
    .hero-bg-flare,
    .hero-cosmic-ring,
    .hero-bg-grid,
    .orb,
    .hero-content,
    .hero-badge,
    .hero-title,
    .hero-desc,
    .hero-buttons {
        animation: none !important;
        transition: none !important;
    }
    
    .orb {
        opacity: 0.6;
    }
    
    .hero-bg-grid {
        opacity: 0.5;
    }
}

/* ========================================
   END OF HERO SECTION
   ======================================== */   
/* ========================================
   COMPREHENSIVE DIGITAL SOLUTIONS SECTION
   ======================================== */

.solutions-section {
    background: #0E0820;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109, 40, 217, 0.15);
    border: 0.5px solid rgba(168, 85, 247, 0.4);
    border-radius: 30px; /* Increased from 20px */
    padding: 8px 24px;
    font-size: 13px;
    color: #c084fc;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.3);
    font-weight: 500;
}

.badge-icon {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
}

.solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(109, 40, 217, 0.4);
}

.solutions-subtitle {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ========================================
   SOLUTIONS GRID
   ======================================== */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.solution-card {
    background: rgba(20, 10, 40, 0.4);
    border: 2.5px solid rgba(109, 40, 217, 0.15);
    border-radius: 24px; /* Increased from 16px */
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.6);
    background: rgba(20, 10, 40, 0.6);
    box-shadow: 0 10px 40px rgba(109, 40, 217, 0.4);
}

.solution-card:hover::before {
    opacity: 1;
}

/* ========================================
   CARD CONTENT
   ======================================== */

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    border-radius: 18px; /* Increased from 12px */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 5px 20px rgba(109, 40, 217, 0.5);
    font-size: 24px;
    flex-shrink: 0;
}

.solution-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.solution-desc {
    font-size: 14px;
    color: #b8b8d1;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #e0d7ff;
}

.solution-features .dot {
    width: 5px;
    height: 5px;
    background: #a855f7;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
}

/* ========================================
   SOLUTION BUTTON - INCREASED RADIUS
   ======================================== */

.solution-btn {
    display: block;
    text-align: center;
    color: #ffffff;
    background: rgba(109, 40, 217, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px; /* Increased from 8px */
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.2);
    margin-top: auto;
}

.solution-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.4), rgba(168, 85, 247, 0.4));
    border-radius: 20px; /* Increased from 8px */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-btn:hover {
    background: rgba(109, 40, 217, 0.35);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.solution-btn:hover::before {
    opacity: 1;
}

/* ========================================
   CTA SECTION
   ======================================== */

.solutions-cta {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px; /* Already rounded, kept at 50px */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
    border: 1px solid transparent;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #9333ea, #c084fc);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.7);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.cta-button:hover::before {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .solutions-section {
        padding: 80px 20px;
    }

    .solutions-title {
        font-size: 42px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .solution-card {
        padding: 32px 28px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 16px;
    }

    .solutions-header {
        margin-bottom: 40px;
    }

    .solutions-badge {
        font-size: 12px;
        padding: 7px 20px;
        border-radius: 25px;
    }

    .solutions-title {
        font-size: 34px;
    }

    .solutions-subtitle {
        font-size: 15px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto 50px auto;
    }

    .solution-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 16px;
    }

    .solution-title {
        font-size: 20px;
    }

    .solution-desc {
        font-size: 13px;
    }

    .solution-features li {
        font-size: 12px;
    }

    .solution-btn {
        padding: 12px 24px;
        font-size: 13px;
        border-radius: 18px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 40px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
    .solutions-section {
        padding: 50px 12px;
    }

    .solutions-badge {
        font-size: 11px;
        padding: 6px 18px;
        border-radius: 20px;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-subtitle {
        font-size: 14px;
    }

    .solutions-grid {
        max-width: 400px;
        gap: 18px;
    }

    .solution-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .solution-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .solution-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .solution-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .solution-features {
        margin-bottom: 24px;
    }

    .solution-features li {
        font-size: 11px;
        padding: 6px 0;
    }

    .solution-btn {
        padding: 11px 22px;
        font-size: 12px;
        border-radius: 16px;
    }

    .cta-button {
        padding: 13px 36px;
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ======================================== */

@media (max-width: 360px) {
    .solutions-section {
        padding: 40px 10px;
    }

    .solutions-badge {
        font-size: 10px;
        padding: 5px 16px;
        border-radius: 18px;
    }

    .solutions-title {
        font-size: 24px;
    }

    .solutions-subtitle {
        font-size: 13px;
    }

    .solutions-grid {
        max-width: 340px;
        gap: 16px;
    }

    .solution-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .solution-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .solution-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .solution-desc {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .solution-features {
        margin-bottom: 20px;
    }

    .solution-features li {
        font-size: 10px;
        padding: 5px 0;
    }

    .solution-btn {
        padding: 10px 20px;
        font-size: 11px;
        border-radius: 14px;
    }

    .cta-button {
        padding: 12px 32px;
        font-size: 13px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }
.solution-card:nth-child(5) { animation-delay: 0.5s; }
.solution-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   PERFORMANCE OPTIMIZATION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .solution-card,
    .solution-btn,
    .cta-button {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   END OF SOLUTIONS SECTION
   ======================================== */   
/* ==============================================
   ABOUT TRANSFORM SECTION - "Transforming Businesses"
   ============================================== */

.about-transform-section {
    background: #0f0920;
    padding: 80px 20px 100px 20px;
    position: relative;
    overflow: hidden;
}

.about-transform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-transform-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-transform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ==============================================
   LEFT COLUMN - Text & Stats
   ============================================== */

.about-left {
    padding-right: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 0.5px solid rgba(167, 139, 250, 0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    color: #c4b5fd;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.about-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-paragraph {
    font-size: 15px;
    color: #c4b5fd;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

/* Stats Row - 4 Columns */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 32px 0 28px 0;
}

.stat-box {
    background: rgba(30, 27, 75, 0.3);
    border: 0.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: #c4b5fd;
    line-height: 1.4;
}

.about-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.7);
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

/* ==============================================
   RIGHT COLUMN - Feature Boxes (2x2 Grid)
   ============================================== */

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
}

.about-feature-box {
    background: rgba(30, 27, 75, 0.3);
    border: 0.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.about-feature-box:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(30, 27, 75, 0.5);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 14px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    font-size: 20px;
}

.about-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.about-feature-text {
    font-size: 13px;
    color: #c4b5fd;
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   RESPONSIVE - TABLET
   ============================================== */

@media (max-width: 1024px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-transform-content {
        gap: 50px;
    }
    
    .about-right {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================================
   RESPONSIVE - MOBILE
   ============================================== */

@media (max-width: 768px) {
    .about-transform-section {
        padding: 60px 20px 70px 20px;
    }
    
    .about-transform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-main-title {
        font-size: 28px;
    }
    
    .about-right {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-cta-btn {
        padding: 14px 40px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .about-transform-section {
        padding: 50px 16px 60px 16px;
    }
    
    .about-main-title {
        font-size: 24px;
    }
    
    .about-paragraph {
        font-size: 14px;
    }
    
    .stats-row {
        gap: 10px;
    }
    
    .stat-box {
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .about-feature-box {
        padding: 22px 18px;
        min-height: 140px;
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .about-feature-title {
        font-size: 16px;
    }
    
    .about-feature-text {
        font-size: 12px;
    }
    
    .about-cta-btn {
        padding: 13px 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 22px;
    }
    
    .about-cta-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* ==============================================
   EXTRA SMALL DEVICES
   ============================================== */

@media (max-width: 360px) {
    .about-main-title {
        font-size: 20px;
    }
    
    .about-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .stat-box {
        padding: 14px 8px;
    }
    
    .about-cta-btn {
        padding: 9px 20px;
        font-size: 12px;
    }
    
    .about-feature-box {
        padding: 20px 16px;
        min-height: 130px;
    }
}

/* ==============================================
   END OF ABOUT TRANSFORM SECTION
   ============================================== */   
/* ==============================================
   SUCCESS STORIES / PORTFOLIO SECTION
   ============================================== */

.success-stories-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 24px 72px 24px;
    text-align: center;
    background: #0E0820;
}

.success-stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==============================================
   SECTION HEADER
   ============================================== */

.success-stories-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(88, 28, 135, 0.35);
    color: #FFFFFF;
    border: 1.5px solid rgba(126, 34, 206, 0.6);
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(126, 34, 206, 0.25);
}

.success-stories-badge::before {
    content: "•";
    color: #a855f7;
    font-size: 1.1rem;
    line-height: 1;
}

.success-stories-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.success-stories-desc {
    font-size: 1.1rem;
    color: #B3B3B3;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================================
   FILTER PILLS
   ============================================== */

.success-stories-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pill {
    padding: 12px 28px;
    border: 1.5px solid rgba(126, 34, 206, 0.6);
    border-radius: 999px;
    background: rgba(88, 28, 135, 0.3);
    color: #B3B3B3;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    white-space: nowrap;
}

.pill:hover {
    background: rgba(109, 40, 217, 0.4);
    color: #FFFFFF;
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 20px rgba(126, 34, 206, 0.35);
}

.pill.active {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #FFFFFF;
    border: 1.5px solid rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.6), 0 0 60px rgba(168, 85, 247, 0.3);
}

/* ==============================================
   PROJECT CARDS GRID
   ============================================== */

.success-stories-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.success-stories-projects.hidden {
    display: none;
}

/* ==============================================
   INDIVIDUAL PROJECT CARD
   ============================================== */

.success-project-card {
    background: rgba(28, 28, 47, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.3s ease;
    overflow: hidden;
}

.success-project-card:hover {
    background: rgba(28, 28, 47, 0.7);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.25);
    transform: translateY(-8px);
}

.success-project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: rgba(24, 24, 38, 0.9);
}

.success-project-content {
    padding: 24px 20px 0 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ==============================================
   PROJECT CARD ELEMENTS
   ============================================== */

.success-project-tag {
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    background: rgba(88, 28, 135, 0.4);
    color: #FFFFFF;
    border: 1px solid rgba(126, 34, 206, 0.5);
    white-space: nowrap;
    width: fit-content;
}

.success-project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #FFFFFF;
    letter-spacing: -0.3px;
}

.success-project-desc {
    font-size: 0.95rem;
    color: #B3B3B3;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Tech Stack Tags */
.success-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.success-project-stack span {
    background: rgba(109, 40, 217, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 6px 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

/* View Project Link */
.success-project-link {
    display: block;
    text-align: center;
    padding: 12px 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #6d28d9 0%, #9333ea 50%, #a855f7 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.success-project-link:hover {
    box-shadow: 0 6px 24px rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

/* ==============================================
   RESPONSIVE - LARGE SCREENS
   ============================================== */

@media (max-width: 1200px) {
    .success-stories-projects {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 968px) {
    .success-stories-section {
        padding: 64px 20px 56px 20px;
    }
    
    .success-stories-title {
        font-size: 2.25rem;
    }
    
    .success-stories-projects {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* ==============================================
   RESPONSIVE - TABLET
   ============================================== */

@media (max-width: 768px) {
    .success-stories-section {
        padding: 56px 20px 48px 20px;
    }
    
    .success-stories-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        box-shadow: none;
    }
    
    .success-stories-badge::before {
        font-size: 1rem;
    }
    
    .success-stories-title {
        font-size: 1.9rem;
    }
    
    .success-stories-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .success-stories-pills {
        gap: 10px;
        margin-bottom: 36px;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0 20px;
    }
    
    .pill {
        font-size: 0.75rem;
        padding: 9px 16px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .pill:hover {
        box-shadow: none;
    }
    
    .pill.active {
        box-shadow: none;
    }
    
    .success-stories-projects {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 90%;
    }
    
    .success-project-card {
        max-width: 100%;
    }
}

/* ==============================================
   RESPONSIVE - MOBILE
   ============================================== */

@media (max-width: 480px) {
    .success-stories-section {
        padding: 56px 20px 48px 20px;
    }
    
    .success-stories-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
    
    .success-stories-title {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .success-stories-desc {
        font-size: 0.92rem;
        margin-bottom: 32px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .success-stories-pills {
        gap: 8px;
        margin-bottom: 36px;
        padding: 0 4px;
    }
    
    .pill {
        font-size: 0.85rem;
        padding: 10px 22px;
    }
    
    .success-stories-projects {
        max-width: 85%;
        gap: 24px;
    }
    
    .success-project-card {
        padding-bottom: 22px;
        border-radius: 18px;
        margin-bottom: 0;
        width: 100%;
    }
    
    .success-project-img {
        height: 220px;
        border-radius: 0;
    }
    
    .success-project-content {
        padding: 22px 20px 0 20px;
    }
    
    .success-project-tag {
        font-size: 0.82rem;
        padding: 6px 15px;
        margin-bottom: 10px;
    }
    
    .success-project-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .success-project-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    .success-project-stack {
        gap: 7px;
        margin-bottom: 18px;
    }
    
    .success-project-stack span {
        font-size: 0.78rem;
        padding: 6px 13px;
    }
    
    .success-project-link {
        padding: 13px 0;
        font-size: 0.92rem;
        font-weight: 700;
    }
}

/* ==============================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ============================================== */

@media (max-width: 360px) {
    .success-stories-section {
        padding: 48px 16px 40px 16px;
    }
    
    .success-stories-badge {
        font-size: 0.75rem;
        padding: 7px 18px;
    }
    
    .success-stories-title {
        font-size: 1.65rem;
    }
    
    .success-stories-desc {
        font-size: 0.88rem;
        padding: 0 8px;
    }
    
    .success-stories-pills {
        gap: 7px;
    }
    
    .pill {
        font-size: 0.8rem;
        padding: 9px 18px;
    }
    
    .success-stories-projects {
        max-width: 82%;
        gap: 20px;
    }
    
    .success-project-card {
        border-radius: 16px;
        padding-bottom: 20px;
    }
    
    .success-project-img {
        height: 180px;
    }
    
    .success-project-content {
        padding: 20px 18px 0 18px;
    }
    
    .success-project-tag {
        font-size: 0.78rem;
        padding: 5px 13px;
    }
    
    .success-project-title {
        font-size: 1.15rem;
    }
    
    .success-project-desc {
        font-size: 0.87rem;
    }
    
    .success-project-stack span {
        font-size: 0.73rem;
        padding: 5px 11px;
    }
    
    .success-project-link {
        padding: 12px 0;
        font-size: 0.88rem;
    }
}

/* ==============================================
   END OF SUCCESS STORIES SECTION
   ============================================== */   
/* ==============================================
   CONTACT SECTION - "Start Your Digital Journey"
   ============================================== */

.contact-section {
    padding: 100px 20px;
    background-color: #0E0820;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ==============================================
   SECTION HEADER
   ============================================== */

.contact-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-get-in-touch-btn {
    background: rgba(109, 40, 217, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.contact-get-in-touch-btn:hover {
    background: rgba(109, 40, 217, 0.25);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.contact-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    border-radius: 50%;
    display: inline-block;
    animation: contact-pulse 2s infinite;
}

@keyframes contact-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.contact-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff;
}

.contact-section-subtitle {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ==============================================
   CONTENT GRID (Form + Info Cards)
   ============================================== */

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ==============================================
   CONTACT FORM (Left Side)
   ============================================== */

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.contact-form-row .contact-form-group {
    width: 100%;
    min-width: 0;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
}

/* ==============================================
   PHONE INPUT WITH COUNTRY CODE
   ============================================== */

.contact-form-group.phone-group {
    width: 100%;
}

.phone-input-wrapper {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    width: 100%;
}

.country-code-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 0 10px 0 14px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 28px;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.country-code-select:focus {
    outline: none;
    border-color: #a855f7;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.country-code-select option {
    background: #1a1028;
    color: #ffffff;
    padding: 10px;
}

.phone-input-wrapper input[type="tel"] {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
}

/* ==============================================
   FORM INPUTS STYLING
   ============================================== */

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
}

.contact-form-group input,
.contact-form-group select {
    height: 50px;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #808080;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.contact-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-group select option {
    background: #1a1028;
    color: #ffffff;
}

/* Textarea - NO RESIZE GRIP */
.contact-form-group textarea {
    resize: none;
    height: 148px;
    width: 100%;
}

/* ==============================================
   SUBMIT BUTTON
   ============================================== */

.contact-submit-btn {
    background: linear-gradient(135deg, #6d28d9, #9333ea, #a855f7);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-submit-btn:hover::before {
    opacity: 1;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* ==============================================
   CONTACT INFO CARDS (Right Side)
   ============================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-info-card,
.contact-social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-email-icon,
.contact-phone-icon,
.contact-location-icon {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.2), rgba(168, 85, 247, 0.2));
    color: #a855f7;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.contact-info-link {
    color: #a855f7;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #c084fc;
}

.contact-info-description {
    font-size: 14px;
    color: #909090;
}

/* ==============================================
   SOCIAL MEDIA CARD
   ============================================== */

.contact-social-card {
    flex-direction: column;
    gap: 16px;
}

.contact-social-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-social-icon:hover::before {
    opacity: 1;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-facebook::before {
    background: linear-gradient(135deg, #1877f2, #0d5fbd);
}

.contact-twitter::before {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.contact-instagram::before {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
}

.contact-linkedin::before {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.contact-social-icon svg {
    position: relative;
    z-index: 1;
}

/* ==============================================
   RESPONSIVE - LARGE SCREENS
   ============================================== */

@media (max-width: 1200px) {
    .contact-section-title {
        font-size: 42px;
    }
    
    .contact-content-grid {
        gap: 30px;
    }
}

/* ==============================================
   RESPONSIVE - TABLET
   ============================================== */

@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section-title {
        font-size: 38px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
}

/* ==============================================
   RESPONSIVE - MOBILE
   ============================================== */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }
    
    .contact-section-header {
        margin-bottom: 40px;
    }
    
    .contact-section-title {
        font-size: 32px;
    }
    
    .contact-section-subtitle {
        font-size: 15px;
    }
    
    .contact-section-subtitle br {
        display: none;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-form-title {
        font-size: 20px;
    }
    
    .contact-info-card,
    .contact-social-card {
        padding: 20px;
    }
}

/* ==============================================
   RESPONSIVE - SMALL MOBILE
   ============================================== */

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 12px;
    }
    
    .contact-section-title {
        font-size: 28px;
    }
    
    .contact-section-subtitle {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    
    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .contact-info-card,
    .contact-social-card {
        padding: 18px;
        border-radius: 16px;
    }
    
    .contact-icon-wrapper {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .contact-info-content h3 {
        font-size: 16px;
    }
    
    .contact-info-link {
        font-size: 14px;
    }
    
    .contact-social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .contact-social-icons {
        gap: 10px;
    }
}

/* ==============================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ============================================== */

@media (max-width: 360px) {
    .contact-section-title {
        font-size: 24px;
    }
    
    .contact-get-in-touch-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .country-code-select {
        width: 100%;
        min-width: auto;
    }
}
/* ==============================================
   PILL-SHAPED SUBMIT BUTTON
   ============================================== */

.contact-submit-btn {
    background: linear-gradient(135deg, #6d28d9, #9333ea, #a855f7);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 999px; /* Changed from 12px to 999px for pill shape */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 999px; /* Added for smooth hover effect */
}

.contact-submit-btn:hover::before {
    opacity: 1;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .contact-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
/* ==============================================
   END OF CONTACT SECTION
   ============================================== */   
/* ==============================================
   TESTIMONIAL SECTION
   ============================================== */   
 .testimonials-modern-section {
    background: #0E0820;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-modern-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.testimonials-modern-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109, 40, 217, 0.15);
    border: 1px solid rgba(109, 40, 217, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #a855f7;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    border-radius: 50%;
    display: inline-block;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonial Card */
.testimonial-slider-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.testimonial-card-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(109, 40, 217, 0.2);
    border-radius: 24px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ffffff;
}

.testimonial-content-area {
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-quote {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.star {
    font-size: 24px;
    color: #a855f7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(109, 40, 217, 0.3);
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.author-position {
    font-size: 14px;
    color: #a855f7;
    margin: 0;
}

/* Navigation Controls */
.testimonial-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.15);
    border: 1px solid rgba(109, 40, 217, 0.3);
    color: #a855f7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(109, 40, 217, 0.3);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    width: 24px;
    border-radius: 5px;
}

/* Stats Grid */
.testimonials-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(109, 40, 217, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(109, 40, 217, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-modern-section {
        padding: 80px 20px;
    }

    .testimonials-title {
        font-size: 40px;
    }

    .testimonial-card-main {
        padding: 40px;
    }

    .testimonial-quote {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-modern-section {
        padding: 60px 16px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonial-card-main {
        padding: 30px 24px;
    }

    .quote-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }

    .quote-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-quote {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .testimonial-stars {
        margin-bottom: 24px;
    }

    .star {
        font-size: 20px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-position {
        font-size: 13px;
    }

    .testimonial-nav-controls {
        margin-top: 30px;
        gap: 12px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonials-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-modern-section {
        padding: 50px 16px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .testimonial-card-main {
        padding: 24px 20px;
    }

    .testimonial-quote {
        font-size: 16px;
        line-height: 1.6;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .stat-number {
        font-size: 32px;
    }
} 
/* ========================================
   END OF TESTIMONIAL SECTION
   ======================================== */
/* ========================================
   ONBOARDING SECTION - OPTIMIZED WITH PURPLE THEME
   ======================================== */

.onboarding-section {
    background: #0E0820;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.onboarding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(109, 40, 217, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.onboarding-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.onboarding-header {
    text-align: center;
    margin-bottom: 60px;
}

.onboarding-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109, 40, 217, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 12px;
    color: #a855f7;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.onboarding-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
}

.onboarding-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Content Grid */
.onboarding-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Steps Column */
.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.onboarding-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.onboarding-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 16px;
    color: #a8a8b3;
    line-height: 1.6;
    margin: 0;
}

/* Visual Card */
.onboarding-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: rgba(109, 40, 217, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(10px);
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.visual-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* REMOVED: Publish button styles completely hidden */
.visual-btn {
    display: none !important;
}

/* Chart Container */
.visual-chart {
    margin-top: 32px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    height: 220px;
    position: relative;
    padding-bottom: 24px;
    padding-top: 60px;
}

/* Chart Bars */
.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar::before {
    content: '';
    width: 100%;
    height: var(--bar-h, 0%);
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.6), rgba(139, 92, 246, 0.4));
    border-radius: 8px 8px 0 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar.grow::before {
    transform: scaleY(1);
}

/* Highlighted Bar */
.chart-bar.bar-highlight::before {
    background: linear-gradient(180deg, #8b5cf6, #a855f7);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

/* Bar Counter (numbers on bars) */
.bar-counter {
    position: absolute;
    top: -32px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease 0.4s;
    z-index: 5;
    white-space: nowrap;
}

.bar-counter.visible {
    opacity: 1;
}

/* Tooltip for highlighted bar */
.chart-tooltip {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    background: rgba(139, 92, 246, 0.95);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.5);
}

.chart-tooltip.show {
    opacity: 1;
}

.tooltip-label {
    font-weight: 600;
}

.tooltip-date {
    font-size: 11px;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

/* Chart Labels */
.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 4px;
}

.chart-labels span {
    font-size: 12px;
    color: #8b8b9a;
    text-align: center;
    flex: 1;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .onboarding-title {
        font-size: 42px;
    }
    
    .onboarding-content-grid {
        gap: 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .onboarding-section {
        padding: 60px 16px;
    }
    
    .onboarding-title {
        font-size: 36px;
    }
    
    .onboarding-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .onboarding-steps {
        gap: 28px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .visual-card {
        padding: 24px;
        max-width: 100%;
    }
    
    .visual-header {
        margin-bottom: 24px;
    }
    
    .chart-container {
        height: 200px;
        gap: 10px;
        padding-top: 45px;
    }
    
    /* IMPORTANT: Force bar counters to show on mobile with white color */
    .bar-counter {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 12px;
        top: -28px;
        color: #ffffff !important;
    }
    
    .chart-tooltip {
        font-size: 12px;
        padding: 8px 14px;
        top: -65px;
    }
    
    .chart-labels span {
        font-size: 11px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .onboarding-section {
        padding: 50px 16px;
    }
    
    .onboarding-title {
        font-size: 28px;
    }
    
    .onboarding-badge {
        font-size: 11px;
        padding: 6px 18px;
    }
    
    .onboarding-content-grid {
        gap: 40px;
    }
    
    .onboarding-steps {
        gap: 24px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .visual-card {
        padding: 20px;
    }
    
    .visual-title {
        font-size: 16px;
    }
    
    .chart-container {
        height: 180px;
        gap: 8px;
        padding-bottom: 20px;
        padding-top: 40px;
    }
    
    /* CRITICAL: Ensure counters are always visible on small screens with white color */
    .bar-counter {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 11px;
        top: -26px;
        color: #ffffff !important;
    }
    
    .chart-tooltip {
        font-size: 11px;
        padding: 6px 12px;
        top: -60px;
        max-width: 140px;
    }
    
    .chart-labels span {
        font-size: 10px;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   WHAT MAKES US UNIQUE SECTION - COMPLETE
   ======================================== */

.unique-section {
    background: #0E0820;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.unique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(109, 40, 217, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.unique-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.unique-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109, 40, 217, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 12px;
    color: #a855f7;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.unique-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
}

.unique-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
}

.unique-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
}

/* Column Headers with Pills */
.column-header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.others-header,
.espymedia-header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

/* Pill Label Base Styles */
.pill-label {
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

/* OTHERS Pill - White Bordered */
.others-column .pill-label,
.others-header .pill-label {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* ESPY MEDIA Pill - Purple Gradient (matching about-cta-btn) */
.espymedia-column .pill-label,
.espymedia-header .pill-label {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Comparison Items */
.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.item-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

/* Negative Items (Others Column) */
.comparison-item.negative .item-icon,
.negative-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.comparison-item.negative .item-text {
    color: #a8a8b3;
}

/* Positive Items (Espy Media Column) */
.comparison-item.positive .item-icon,
.positive-icon {
    background: rgba(109, 40, 217, 0.2);
    color: #a855f7;
}

.comparison-item.positive .item-text {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .unique-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .unique-section {
        padding: 60px 16px;
    }
    
    .unique-title {
        font-size: 36px;
    }
    
    .unique-subtitle {
        font-size: 18px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-column {
        padding: 28px;
    }
    
    .column-header,
    .others-header,
    .espymedia-header {
        margin-bottom: 28px;
    }
    
    .pill-label {
        padding: 8px 20px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .unique-title {
        font-size: 28px;
    }
    
    .unique-subtitle {
        font-size: 16px;
    }
    
    .unique-badge {
        font-size: 11px;
        padding: 6px 18px;
    }
    
    .comparison-column {
        padding: 24px;
    }
    
    .column-header,
    .others-header,
    .espymedia-header {
        margin-bottom: 24px;
    }
    
    .pill-label {
        padding: 6px 18px;
        font-size: 11px;
    }
    
    .item-text {
        font-size: 14px;
    }
}