* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F79633;
    --primary-dark: #e8851a;
    --primary-light: #ffb366;
    --secondary: #00B8BF;
    --secondary-dark: #009ea5;
    --secondary-light: #33d1d9;
    --dark: #0a0a2a;
    --dark-light: #1a1a3e;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}




/* Fix for centered header */
.unique-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.unique-header-center .unique-desc {
    max-width: 600px;
    margin: 0 auto;
}


















/* ============================================
   ULTRA PREMIUM NAVBAR - TOP CLASS
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Premium 3D shadow effect */
.navbar::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(247, 150, 51, 0.15) 20%,
        rgba(0, 184, 191, 0.15) 50%,
        rgba(247, 150, 51, 0.15) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.6s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #F79633 20%, 
        #00B8BF 50%, 
        #F79633 80%, 
        transparent 100%
    );
    border-radius: 4px;
    opacity: 0;
    transform: scaleX(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(1px);
}

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

.navbar:hover::after {
    opacity: 0.6;
    transform: scaleX(1);
}

/* Scrolled state - premium */
.navbar.scrolled {
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.05);
    border-bottom-color: transparent;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== LOGO - Premium ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    position: relative;
}

.logo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.logo-icon-wrapper:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo-img {
    height: 48px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

.logo-icon-wrapper:hover .logo-img {
    filter: drop-shadow(0 4px 16px rgba(247, 150, 51, 0.15));
}

.logo-divider {
    width: 1.5px;
    height: 32px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.05) 0%, 
        rgba(0, 0, 0, 0.15) 50%, 
        rgba(0, 0, 0, 0.05) 100%
    );
    border-radius: 2px;
    position: relative;
}

.logo-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #F79633;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Nav icons */
.nav-icon {
    font-size: 0.75rem;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
    opacity: 1;
    color: #F79633;
}

/* Premium pill background */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, 
        rgba(247, 150, 51, 0.05), 
        rgba(0, 184, 191, 0.05)
    );
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Premium gradient underline with glow */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F79633, #00B8BF);
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(247, 150, 51, 0.15);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

/* Text hover */
.nav-links a:hover,
.nav-links a.active {
    color: #F79633;
}

.nav-links a.active {
    font-weight: 600;
}

.nav-links a.active .nav-text {
    background: linear-gradient(135deg, #F79633, #00B8BF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== CTA BUTTON - Ultra Premium ===== */
.nav-links a.nav-cta {
    background: linear-gradient(135deg, #F79633, #00B8BF);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 10px;
    margin-left: 12px;
    box-shadow: 0 4px 25px rgba(247, 150, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* CTA shine effect */
.nav-links a.nav-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2), 
        transparent 60%
    );
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0.5) rotate(0deg);
}

.nav-links a.nav-cta:hover::before {
    opacity: 1;
    transform: scale(1) rotate(10deg);
}

/* CTA hover glow */
.nav-links a.nav-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    background: linear-gradient(135deg, #F79633, #00B8BF);
    opacity: 0;
    filter: blur(12px);
    transition: all 0.5s ease;
    z-index: -1;
}

.nav-links a.nav-cta:hover::after {
    opacity: 0.5;
}

.nav-links a.nav-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 40px rgba(247, 150, 51, 0.35);
    color: #ffffff !important;
}

.nav-links a.nav-cta:active {
    transform: scale(0.97);
}

/* CTA arrow animation */
.cta-icon {
    transition: all 0.4s ease;
    display: inline-flex;
}

.nav-links a.nav-cta:hover .cta-icon {
    transform: translateX(4px) rotate(-8deg);
}

/* Remove default effects */
.nav-links a.nav-cta::before,
.nav-links a.nav-cta::after {
    content: ''; /* Override for CTA */
}

.nav-links a.nav-cta .nav-icon {
    display: none;
}

/* ===== MOBILE HAMBURGER - Premium ===== */
.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 14px;
    transition: all 0.4s ease;
    position: relative;
}

.mobile-btn:hover {
    background: rgba(247, 150, 51, 0.06);
}

.mobile-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.mobile-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: #F79633;
}

.mobile-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: #F79633;
}

/* Mobile menu indicator dot */
.mobile-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #F79633;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.mobile-btn.active::after {
    opacity: 1;
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .mobile-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 28px 30px;
        gap: 4px;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -30px 0 80px rgba(0, 0, 0, 0.05);
        border-left: 1px solid rgba(0, 0, 0, 0.03);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Premium mobile overlay */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: -1;
        animation: fadeOverlay 0.4s ease;
    }

    @keyframes fadeOverlay {
        from { opacity: 0; backdrop-filter: blur(0px); }
        to { opacity: 1; backdrop-filter: blur(8px); }
    }

    .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 14px;
        width: 100%;
        text-align: left;
        gap: 14px;
    }

    .nav-icon {
        font-size: 1rem;
        min-width: 24px;
    }

    .nav-links a::before {
        border-radius: 14px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.nav-cta {
        margin: 20px 0 0;
        text-align: center;
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .logo-img {
        height: 40px;
    }

    .logo-divider {
        height: 26px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 34px;
    }

    .logo-divider {
        height: 20px;
    }

    .logo-wrapper {
        gap: 12px;
    }

    .nav-links {
        padding: 70px 20px 20px;
        width: 92%;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}


















/* Hero Slider */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(247,150,51,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0,184,191,0.15) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(450px, 1fr) 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 100px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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


/* Hero Title - Reduced font size for single line */
.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-title .gradient-text {
    font-size: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Specifically for Slide 3 (longest text) */
.slide-3 .hero-title {
    font-size: 32px;
}

.slide-3 .hero-title .gradient-text {
    font-size: 32px;
}

/* Slide 4 slightly smaller */
.slide-4 .hero-title {
    font-size: 34px;
}

.slide-4 .hero-title .gradient-text {
    font-size: 34px;
}

/* For mobile devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-title .gradient-text {
        font-size: 26px;
    }
    
    .slide-3 .hero-title,
    .slide-4 .hero-title {
        font-size: 22px;
    }
    
    .slide-3 .hero-title .gradient-text,
    .slide-4 .hero-title .gradient-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-title .gradient-text {
        font-size: 20px;
    }
    
    .slide-3 .hero-title,
    .slide-4 .hero-title {
        font-size: 18px;
    }
    
    .slide-3 .hero-title .gradient-text,
    .slide-4 .hero-title .gradient-text {
        font-size: 18px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    gap: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.trust-badge {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.trust-item i {
    color: var(--secondary);
}

/* Enhanced Slide Content Styling */
.hero-content .hero-title {
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.hero-content .hero-text {
    text-shadow: 0 1px 20px rgba(0,0,0,0.15);
}

.hero-badge {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge .dot-pulse {
    background: var(--secondary) !important;
}

/* Slide-specific overlay enhancements */
.slide-1 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 50%, #0d2b4f 100%);
}

.slide-2 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0a3e 50%, #2a0a4e 100%);
}

.slide-3 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #0a1a3e 50%, #0a2a4e 100%);
}

.slide-4 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0a2a 50%, #2a0a3e 100%);
}

/* Image overlay for better text readability */
.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,42,0.6) 0%, rgba(10,10,42,0.2) 70%, transparent 100%);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Button hover enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 4px 25px rgba(247,150,51,0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 35px rgba(247,150,51,0.45) !important;
}

.btn-outline {
    border-color: rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
    border-color: var(--secondary) !important;
    background: rgba(0,184,191,0.15);
    color: var(--secondary) !important;
}

/* Trust badge enhancement */
.trust-item {
    background: rgba(255,255,255,0.06);
    padding: 4px 16px 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-item i {
    color: var(--secondary) !important;
}

/* Swiper nav buttons enhancement */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.2);
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.4) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    box-shadow: 0 0 20px rgba(247,150,51,0.4);
}


/* Hero Slider Images */
.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
     display: grid;
    grid-template-columns: minmax(450px, 1fr) 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding-right: 40px;
    min-width: 0;
}

.hero-visual {
    position: relative;
    z-index: 3;
}

.industry-showcase {
    display: none;
}

.slide-1 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
}

.slide-2 .hero-bg {
    background: linear-gradient(135deg, #0d2b4f 0%, #1a3a5c 100%);
}

.slide-3 .hero-bg {
    background: linear-gradient(135deg, #2a0a3e 0%, #3a1a4e 100%);
}

.slide-4 .hero-bg {
    background: linear-gradient(135deg, #3e0a2a 0%, #4e1a3a 100%);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

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

.tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}


























/* ============================================
   SERVICES SECTION - PREMIUM DESIGN 
   MATCHING INDUSTRIES 100%
   ============================================ */
.services {
    padding: 60px 0 40px;
    background: linear-gradient(165deg, #0a1628 0%, #1a2a4a 40%, #0a1628 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 15px;
    position: relative;
    overflow: hidden;
}

/* Remove old services background animation */
.services::before {
    display: none;
}

/* ===== COPY ALL BACKGROUND ANIMATIONS FROM INDUSTRIES ===== */

/* Glowing Orbs (8 Orbs) */
.services .orb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 25s ease-in-out infinite;
}

.services .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 150, 51, 0.2) 0%, transparent 70%);
    top: -25%;
    right: -15%;
    animation-delay: 0s;
}
.services .orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 191, 0.15) 0%, transparent 70%);
    bottom: -25%;
    left: -15%;
    animation-delay: -6s;
}
.services .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 150, 51, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -12s;
}
.services .orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    top: 8%;
    left: 4%;
    animation-delay: -3s;
}
.services .orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 184, 191, 0.1) 0%, transparent 70%);
    bottom: 8%;
    right: 6%;
    animation-delay: -9s;
}
.services .orb-6 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(247, 150, 51, 0.08) 0%, transparent 70%);
    top: 28%;
    left: 18%;
    animation-delay: -15s;
}
.services .orb-7 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    bottom: 30%;
    right: 20%;
    animation-delay: -21s;
}
.services .orb-8 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
    top: 60%;
    left: 30%;
    animation-delay: -18s;
}

/* Floating Particles (60 Particles) */
.services .particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.services .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

/* Group 1 - Orange/Gold (15 particles) */
.services .particle-1 { width: 8px; height: 8px; background: rgba(247, 150, 51, 0.5); top: 3%; left: 2%; animation-duration: 18s; animation-delay: 0s; box-shadow: 0 0 20px rgba(247, 150, 51, 0.3); }
.services .particle-2 { width: 5px; height: 5px; background: rgba(247, 150, 51, 0.4); top: 8%; left: 12%; animation-duration: 20s; animation-delay: 1.5s; }
.services .particle-3 { width: 10px; height: 10px; background: rgba(247, 150, 51, 0.3); top: 18%; left: 5%; animation-duration: 22s; animation-delay: 3s; box-shadow: 0 0 25px rgba(247, 150, 51, 0.2); }
.services .particle-4 { width: 6px; height: 6px; background: rgba(247, 150, 51, 0.45); top: 28%; left: 1%; animation-duration: 16s; animation-delay: 0.5s; }
.services .particle-5 { width: 9px; height: 9px; background: rgba(247, 150, 51, 0.35); top: 38%; left: 8%; animation-duration: 19s; animation-delay: 4s; box-shadow: 0 0 15px rgba(247, 150, 51, 0.15); }
.services .particle-6 { width: 4px; height: 4px; background: rgba(247, 150, 51, 0.5); top: 48%; left: 3%; animation-duration: 21s; animation-delay: 2s; }
.services .particle-7 { width: 7px; height: 7px; background: rgba(247, 150, 51, 0.4); top: 58%; left: 10%; animation-duration: 17s; animation-delay: 6s; }
.services .particle-8 { width: 11px; height: 11px; background: rgba(247, 150, 51, 0.25); top: 68%; left: 2%; animation-duration: 24s; animation-delay: 1s; box-shadow: 0 0 30px rgba(247, 150, 51, 0.15); }
.services .particle-9 { width: 5px; height: 5px; background: rgba(247, 150, 51, 0.45); top: 78%; left: 7%; animation-duration: 18s; animation-delay: 5s; }
.services .particle-10 { width: 8px; height: 8px; background: rgba(247, 150, 51, 0.35); top: 88%; left: 3%; animation-duration: 20s; animation-delay: 3s; box-shadow: 0 0 18px rgba(247, 150, 51, 0.12); }
.services .particle-11 { width: 6px; height: 6px; background: rgba(247, 150, 51, 0.4); top: 12%; left: 20%; animation-duration: 22s; animation-delay: 7s; }
.services .particle-12 { width: 9px; height: 9px; background: rgba(247, 150, 51, 0.3); top: 32%; left: 15%; animation-duration: 16s; animation-delay: 0.8s; }
.services .particle-13 { width: 4px; height: 4px; background: rgba(247, 150, 51, 0.5); top: 52%; left: 18%; animation-duration: 19s; animation-delay: 4.5s; }
.services .particle-14 { width: 7px; height: 7px; background: rgba(247, 150, 51, 0.35); top: 72%; left: 12%; animation-duration: 23s; animation-delay: 2.5s; }
.services .particle-15 { width: 10px; height: 10px; background: rgba(247, 150, 51, 0.25); top: 92%; left: 8%; animation-duration: 21s; animation-delay: 6.5s; box-shadow: 0 0 20px rgba(247, 150, 51, 0.1); }

/* Group 2 - Teal/Cyan (15 particles) */
.services .particle-16 { width: 9px; height: 9px; background: rgba(0, 184, 191, 0.4); top: 5%; left: 30%; animation-duration: 23s; animation-delay: 0.5s; box-shadow: 0 0 20px rgba(0, 184, 191, 0.2); }
.services .particle-17 { width: 5px; height: 5px; background: rgba(0, 184, 191, 0.5); top: 15%; left: 40%; animation-duration: 19s; animation-delay: 3s; }
.services .particle-18 { width: 11px; height: 11px; background: rgba(0, 184, 191, 0.3); top: 25%; left: 35%; animation-duration: 25s; animation-delay: 6s; box-shadow: 0 0 30px rgba(0, 184, 191, 0.15); }
.services .particle-19 { width: 6px; height: 6px; background: rgba(0, 184, 191, 0.45); top: 35%; left: 42%; animation-duration: 18s; animation-delay: 1.5s; }
.services .particle-20 { width: 8px; height: 8px; background: rgba(0, 184, 191, 0.35); top: 45%; left: 38%; animation-duration: 22s; animation-delay: 5s; box-shadow: 0 0 18px rgba(0, 184, 191, 0.12); }
.services .particle-21 { width: 4px; height: 4px; background: rgba(0, 184, 191, 0.5); top: 55%; left: 45%; animation-duration: 20s; animation-delay: 0s; }
.services .particle-22 { width: 7px; height: 7px; background: rgba(0, 184, 191, 0.4); top: 65%; left: 40%; animation-duration: 24s; animation-delay: 4s; }
.services .particle-23 { width: 10px; height: 10px; background: rgba(0, 184, 191, 0.25); top: 75%; left: 48%; animation-duration: 17s; animation-delay: 2s; box-shadow: 0 0 25px rgba(0, 184, 191, 0.1); }
.services .particle-24 { width: 5px; height: 5px; background: rgba(0, 184, 191, 0.45); top: 85%; left: 35%; animation-duration: 21s; animation-delay: 7s; }
.services .particle-25 { width: 8px; height: 8px; background: rgba(0, 184, 191, 0.35); top: 95%; left: 42%; animation-duration: 19s; animation-delay: 3.5s; }
.services .particle-26 { width: 6px; height: 6px; background: rgba(0, 184, 191, 0.4); top: 10%; left: 50%; animation-duration: 22s; animation-delay: 5.5s; }
.services .particle-27 { width: 9px; height: 9px; background: rgba(0, 184, 191, 0.3); top: 30%; left: 55%; animation-duration: 16s; animation-delay: 0.3s; }
.services .particle-28 { width: 4px; height: 4px; background: rgba(0, 184, 191, 0.5); top: 50%; left: 52%; animation-duration: 20s; animation-delay: 6.5s; }
.services .particle-29 { width: 7px; height: 7px; background: rgba(0, 184, 191, 0.35); top: 70%; left: 58%; animation-duration: 23s; animation-delay: 1.8s; }
.services .particle-30 { width: 10px; height: 10px; background: rgba(0, 184, 191, 0.25); top: 90%; left: 50%; animation-duration: 18s; animation-delay: 4.8s; }

/* Group 3 - White/Bright (15 particles) */
.services .particle-31 { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.2); top: 2%; left: 65%; animation-duration: 24s; animation-delay: 2s; box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); }
.services .particle-32 { width: 4px; height: 4px; background: rgba(255, 255, 255, 0.25); top: 12%; left: 72%; animation-duration: 16s; animation-delay: 5s; }
.services .particle-33 { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.15); top: 22%; left: 80%; animation-duration: 21s; animation-delay: 1s; box-shadow: 0 0 12px rgba(255, 255, 255, 0.08); }
.services .particle-34 { width: 5px; height: 5px; background: rgba(255, 255, 255, 0.2); top: 32%; left: 68%; animation-duration: 19s; animation-delay: 4s; }
.services .particle-35 { width: 7px; height: 7px; background: rgba(255, 255, 255, 0.18); top: 42%; left: 75%; animation-duration: 23s; animation-delay: 0.5s; }
.services .particle-36 { width: 3px; height: 3px; background: rgba(255, 255, 255, 0.3); top: 52%; left: 82%; animation-duration: 17s; animation-delay: 7s; }
.services .particle-37 { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.2); top: 62%; left: 70%; animation-duration: 20s; animation-delay: 3s; }
.services .particle-38 { width: 9px; height: 9px; background: rgba(255, 255, 255, 0.12); top: 72%; left: 78%; animation-duration: 25s; animation-delay: 6s; box-shadow: 0 0 15px rgba(255, 255, 255, 0.06); }
.services .particle-39 { width: 4px; height: 4px; background: rgba(255, 255, 255, 0.25); top: 82%; left: 72%; animation-duration: 18s; animation-delay: 2.5s; }
.services .particle-40 { width: 7px; height: 7px; background: rgba(255, 255, 255, 0.18); top: 92%; left: 80%; animation-duration: 22s; animation-delay: 5.5s; }
.services .particle-41 { width: 5px; height: 5px; background: rgba(255, 255, 255, 0.22); top: 8%; left: 88%; animation-duration: 16s; animation-delay: 0.8s; }
.services .particle-42 { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.14); top: 28%; left: 92%; animation-duration: 24s; animation-delay: 4.2s; }
.services .particle-43 { width: 3px; height: 3px; background: rgba(255, 255, 255, 0.3); top: 48%; left: 85%; animation-duration: 19s; animation-delay: 1.8s; }
.services .particle-44 { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.2); top: 68%; left: 90%; animation-duration: 21s; animation-delay: 6.2s; }
.services .particle-45 { width: 9px; height: 9px; background: rgba(255, 255, 255, 0.12); top: 88%; left: 88%; animation-duration: 23s; animation-delay: 3.2s; }

/* Group 4 - Mixed Colors (15 particles) */
.services .particle-46 { width: 7px; height: 7px; background: rgba(255, 107, 107, 0.3); top: 4%; left: 95%; animation-duration: 22s; animation-delay: 1.2s; box-shadow: 0 0 15px rgba(255, 107, 107, 0.1); }
.services .particle-47 { width: 5px; height: 5px; background: rgba(78, 205, 196, 0.35); top: 14%; right: 2%; animation-duration: 18s; animation-delay: 4.5s; }
.services .particle-48 { width: 9px; height: 9px; background: rgba(255, 217, 61, 0.25); top: 24%; left: 98%; animation-duration: 25s; animation-delay: 0s; box-shadow: 0 0 20px rgba(255, 217, 61, 0.1); }
.services .particle-49 { width: 4px; height: 4px; background: rgba(247, 150, 51, 0.4); top: 34%; right: 5%; animation-duration: 16s; animation-delay: 6.5s; }
.services .particle-50 { width: 8px; height: 8px; background: rgba(0, 184, 191, 0.3); top: 44%; left: 95%; animation-duration: 21s; animation-delay: 2.2s; box-shadow: 0 0 15px rgba(0, 184, 191, 0.1); }
.services .particle-51 { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.15); top: 54%; left: 60%; animation-duration: 19s; animation-delay: 5.8s; }
.services .particle-52 { width: 10px; height: 10px; background: rgba(247, 150, 51, 0.2); top: 64%; left: 25%; animation-duration: 24s; animation-delay: 0.8s; box-shadow: 0 0 25px rgba(247, 150, 51, 0.1); }
.services .particle-53 { width: 5px; height: 5px; background: rgba(0, 184, 191, 0.4); top: 74%; left: 32%; animation-duration: 17s; animation-delay: 7.5s; }
.services .particle-54 { width: 7px; height: 7px; background: rgba(255, 255, 255, 0.12); top: 84%; left: 58%; animation-duration: 23s; animation-delay: 3.8s; }
.services .particle-55 { width: 4px; height: 4px; background: rgba(247, 150, 51, 0.35); top: 94%; left: 65%; animation-duration: 20s; animation-delay: 1.5s; }
.services .particle-56 { width: 8px; height: 8px; background: rgba(78, 205, 196, 0.25); top: 6%; left: 55%; animation-duration: 22s; animation-delay: 4.8s; }
.services .particle-57 { width: 5px; height: 5px; background: rgba(255, 217, 61, 0.3); top: 18%; right: 10%; animation-duration: 18s; animation-delay: 0.2s; }
.services .particle-58 { width: 9px; height: 9px; background: rgba(255, 107, 107, 0.2); top: 40%; left: 65%; animation-duration: 25s; animation-delay: 6.8s; }
.services .particle-59 { width: 6px; height: 6px; background: rgba(247, 150, 51, 0.3); top: 60%; right: 15%; animation-duration: 19s; animation-delay: 2.8s; }
.services .particle-60 { width: 7px; height: 7px; background: rgba(0, 184, 191, 0.35); top: 80%; right: 20%; animation-duration: 21s; animation-delay: 5.2s; }

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: translate(35px, -45px) scale(1) rotate(36deg);
    }
    50% {
        opacity: 1;
        transform: translate(180px, -120px) scale(1.3) rotate(180deg);
    }
    90% {
        opacity: 0.8;
        transform: translate(320px, -200px) scale(0.7) rotate(324deg);
    }
    100% {
        opacity: 0;
        transform: translate(400px, -280px) scale(0.2) rotate(360deg);
    }
}

/* ===== SPARKLES (40 SPARKLES) ===== */
.services .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: sparkle 3.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(247, 150, 51, 0.5);
}

.services .sparkle-1 { top: 2%; left: 15%; animation-delay: 0s; }
.services .sparkle-2 { top: 5%; left: 35%; animation-delay: 0.7s; }
.services .sparkle-3 { top: 8%; left: 55%; animation-delay: 1.4s; }
.services .sparkle-4 { top: 3%; left: 75%; animation-delay: 2.1s; }
.services .sparkle-5 { top: 6%; left: 90%; animation-delay: 2.8s; }
.services .sparkle-6 { top: 15%; left: 10%; animation-delay: 0.3s; }
.services .sparkle-7 { top: 18%; left: 30%; animation-delay: 1s; }
.services .sparkle-8 { top: 22%; left: 50%; animation-delay: 1.7s; }
.services .sparkle-9 { top: 12%; left: 70%; animation-delay: 2.4s; }
.services .sparkle-10 { top: 20%; left: 85%; animation-delay: 3.1s; }
.services .sparkle-11 { top: 28%; left: 5%; animation-delay: 0.5s; }
.services .sparkle-12 { top: 32%; left: 25%; animation-delay: 1.2s; }
.services .sparkle-13 { top: 38%; left: 45%; animation-delay: 1.9s; }
.services .sparkle-14 { top: 25%; left: 65%; animation-delay: 2.6s; }
.services .sparkle-15 { top: 35%; left: 80%; animation-delay: 3.3s; }
.services .sparkle-16 { top: 42%; left: 8%; animation-delay: 0.1s; }
.services .sparkle-17 { top: 48%; left: 28%; animation-delay: 0.8s; }
.services .sparkle-18 { top: 52%; left: 48%; animation-delay: 1.5s; }
.services .sparkle-19 { top: 45%; left: 68%; animation-delay: 2.2s; }
.services .sparkle-20 { top: 55%; left: 88%; animation-delay: 2.9s; }
.services .sparkle-21 { top: 58%; left: 12%; animation-delay: 0.4s; }
.services .sparkle-22 { top: 62%; left: 32%; animation-delay: 1.1s; }
.services .sparkle-23 { top: 68%; left: 52%; animation-delay: 1.8s; }
.services .sparkle-24 { top: 60%; left: 72%; animation-delay: 2.5s; }
.services .sparkle-25 { top: 72%; left: 92%; animation-delay: 3.2s; }
.services .sparkle-26 { top: 78%; left: 8%; animation-delay: 0.6s; }
.services .sparkle-27 { top: 82%; left: 28%; animation-delay: 1.3s; }
.services .sparkle-28 { top: 88%; left: 48%; animation-delay: 2s; }
.services .sparkle-29 { top: 75%; left: 68%; animation-delay: 2.7s; }
.services .sparkle-30 { top: 85%; left: 85%; animation-delay: 3.4s; }
.services .sparkle-31 { top: 92%; left: 15%; animation-delay: 0.2s; }
.services .sparkle-32 { top: 95%; left: 35%; animation-delay: 0.9s; }
.services .sparkle-33 { top: 98%; left: 55%; animation-delay: 1.6s; }
.services .sparkle-34 { top: 90%; left: 75%; animation-delay: 2.3s; }
.services .sparkle-35 { top: 10%; left: 45%; animation-delay: 3s; }
.services .sparkle-36 { top: 40%; left: 92%; animation-delay: 0.4s; }
.services .sparkle-37 { top: 65%; left: 18%; animation-delay: 1.1s; }
.services .sparkle-38 { top: 50%; left: 55%; animation-delay: 1.8s; }
.services .sparkle-39 { top: 30%; left: 42%; animation-delay: 2.5s; }
.services .sparkle-40 { top: 80%; left: 62%; animation-delay: 3.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.8); box-shadow: 0 0 30px rgba(247, 150, 51, 0.7); }
}

/* ===== FLOATING SHAPES ===== */
.services .floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.services .shape-diamond {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2.5px solid rgba(247, 150, 51, 0.35);
    transform: rotate(45deg);
    top: 5%;
    right: 8%;
    animation: floatDiamond 22s ease-in-out infinite;
}

.services .shape-circle-outline {
    width: 90px;
    height: 90px;
    border: 2.5px solid rgba(0, 184, 191, 0.25);
    border-radius: 50%;
    bottom: 8%;
    right: 4%;
    animation: floatCircle 18s ease-in-out infinite;
}

.services .shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(247, 150, 51, 0.15);
    top: 25%;
    right: 2%;
    animation: floatTriangle 20s ease-in-out infinite;
}

.services .shape-hexagon {
    width: 55px;
    height: 55px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 25%;
    left: 1%;
    animation: floatHexagon 26s ease-in-out infinite;
}

.services .shape-star {
    font-size: 30px;
    color: rgba(247, 150, 51, 0.15);
    top: 10%;
    left: 6%;
    animation: floatStar 24s ease-in-out infinite;
}

.services .shape-cross {
    font-size: 40px;
    color: rgba(0, 184, 191, 0.1);
    bottom: 15%;
    left: 10%;
    animation: floatCross 28s ease-in-out infinite;
}

.services .shape-ring {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(247, 150, 51, 0.12);
    border-radius: 50%;
    top: 42%;
    right: 12%;
    animation: floatRing 30s ease-in-out infinite;
}

.services .shape-ring::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0, 184, 191, 0.08);
    border-radius: 50%;
}

.services .shape-square-rotate {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.06);
    transform: rotate(20deg);
    top: 68%;
    left: 3%;
    animation: floatSquare 25s ease-in-out infinite;
}

.services .shape-plus {
    font-size: 35px;
    color: rgba(247, 150, 51, 0.08);
    top: 48%;
    left: 2%;
    animation: floatPlus 27s ease-in-out infinite;
}

.services .shape-dot-circle {
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(0, 184, 191, 0.08);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation: floatDotCircle 32s ease-in-out infinite;
}

.services .shape-dot-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: rgba(247, 150, 51, 0.1);
    border-radius: 50%;
}

.services .shape-infinity {
    font-size: 45px;
    color: rgba(255, 255, 255, 0.04);
    bottom: 35%;
    right: 1%;
    animation: floatInfinity 30s ease-in-out infinite;
}

.services .shape-wave-line {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 150, 51, 0.08), transparent);
    top: 30%;
    left: 5%;
    animation: floatWaveLine 20s ease-in-out infinite;
}

.services .shape-wave-line-2 {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 191, 0.06), transparent);
    bottom: 45%;
    right: 5%;
    animation: floatWaveLine 25s ease-in-out infinite reverse;
}

/* Shape Animations */
@keyframes floatDiamond {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    25% { transform: rotate(65deg) translate(25px, -35px); }
    50% { transform: rotate(95deg) translate(-15px, -55px); }
    75% { transform: rotate(75deg) translate(20px, -25px); }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -25px) scale(1.15); }
    66% { transform: translate(25px, -45px) scale(0.85); }
}

@keyframes floatTriangle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(12deg); }
    50% { transform: translate(-25px, -50px) rotate(-8deg); }
    75% { transform: translate(15px, -35px) rotate(10deg); }
}

@keyframes floatHexagon {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(30px, -40px) rotate(180deg) scale(1.2); }
}

@keyframes floatStar {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(15px, -20px) rotate(20deg) scale(1.1); }
    50% { transform: translate(-10px, -35px) rotate(-10deg) scale(0.9); }
    75% { transform: translate(20px, -15px) rotate(15deg) scale(1.05); }
}

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

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

@keyframes floatSquare {
    0%, 100% { transform: rotate(20deg) translate(0, 0); }
    50% { transform: rotate(50deg) translate(-20px, -35px); }
}

@keyframes floatPlus {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -25px) rotate(45deg); }
}

@keyframes floatDotCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-20px, -30px) rotate(180deg) scale(1.1); }
}

@keyframes floatInfinity {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-15px, -25px) rotate(90deg) scale(1.15); }
}

@keyframes floatWaveLine {
    0%, 100% { transform: translate(0, 0) scaleX(1); opacity: 0.3; }
    50% { transform: translate(30px, -15px) scaleX(1.5); opacity: 0.8; }
}

/* ===== LIGHT RAYS ===== */
.services .light-ray {
    position: absolute;
    width: 2px;
    height: 250px;
    background: linear-gradient(180deg, transparent, rgba(247, 150, 51, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
    animation: lightRay 8s ease-in-out infinite;
}

.services .light-ray-1 { left: 3%; top: -20%; animation-delay: 0s; height: 300px; }
.services .light-ray-2 { left: 8%; top: -20%; animation-delay: 0.6s; height: 220px; }
.services .light-ray-3 { left: 13%; top: -20%; animation-delay: 1.2s; height: 280px; }
.services .light-ray-4 { left: 18%; top: -20%; animation-delay: 1.8s; height: 250px; }
.services .light-ray-5 { left: 23%; top: -20%; animation-delay: 2.4s; height: 200px; }
.services .light-ray-6 { left: 28%; top: -20%; animation-delay: 3s; height: 270px; }
.services .light-ray-7 { left: 33%; top: -20%; animation-delay: 0.3s; height: 230px; }
.services .light-ray-8 { left: 38%; top: -20%; animation-delay: 0.9s; height: 260px; }
.services .light-ray-9 { left: 43%; top: -20%; animation-delay: 1.5s; height: 210px; }
.services .light-ray-10 { left: 48%; top: -20%; animation-delay: 2.1s; height: 290px; }
.services .light-ray-11 { left: 53%; top: -20%; animation-delay: 2.7s; height: 240px; }
.services .light-ray-12 { left: 58%; top: -20%; animation-delay: 3.3s; height: 260px; }
.services .light-ray-13 { left: 63%; top: -20%; animation-delay: 0.4s; height: 220px; }
.services .light-ray-14 { left: 68%; top: -20%; animation-delay: 1s; height: 280px; }
.services .light-ray-15 { left: 73%; top: -20%; animation-delay: 1.6s; height: 250px; }
.services .light-ray-16 { left: 78%; top: -20%; animation-delay: 2.2s; height: 200px; }
.services .light-ray-17 { left: 83%; top: -20%; animation-delay: 2.8s; height: 270px; }
.services .light-ray-18 { left: 88%; top: -20%; animation-delay: 3.4s; height: 230px; }
.services .light-ray-19 { left: 93%; top: -20%; animation-delay: 0.5s; height: 260px; }
.services .light-ray-20 { left: 98%; top: -20%; animation-delay: 1.1s; height: 210px; }

@keyframes lightRay {
    0%, 100% { 
        opacity: 0.3;
        transform: rotate(0deg) translateY(0) scaleY(1);
    }
    50% { 
        opacity: 0.9;
        transform: rotate(10deg) translateY(40px) scaleY(1.2);
        background: linear-gradient(180deg, transparent, rgba(247, 150, 51, 0.15), rgba(0, 184, 191, 0.08), transparent);
    }
}

/* ===== DOTS GRID PATTERN ===== */
.services .shape-dots-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(247, 150, 51, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 184, 191, 0.02) 0.5px, transparent 0.5px);
    background-size: 50px 50px, 30px 30px, 20px 20px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 12s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.03); }
}

/* ===== WAVE PATTERN ===== */
.services .wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath d='M0,100 C300,15 600,185 900,100 C1050,57 1150,75 1200,100 L1200,200 L0,200 Z' fill='rgba(247,150,51,0.05)'/%3E%3Cpath d='M0,120 C250,50 550,170 850,120 C1000,90 1100,105 1200,120 L1200,200 L0,200 Z' fill='rgba(0,184,191,0.04)'/%3E%3Cpath d='M0,140 C200,80 500,160 800,140 C950,115 1050,130 1200,140 L1200,200 L0,200 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-50px) scaleY(1.15); }
}

/* ===== FLOATING ICONS ===== */
.services .float-icon {
    position: absolute;
    font-size: 28px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    animation: floatIcon 30s ease-in-out infinite;
}

.services .float-icon-1 { top: 2%; left: 3%; animation-delay: 0s; color: #F79633; }
.services .float-icon-2 { bottom: 5%; right: 2%; animation-delay: -7s; color: #00B8BF; }
.services .float-icon-3 { top: 32%; left: 1%; animation-delay: -14s; color: #FF6B6B; }
.services .float-icon-4 { bottom: 32%; right: 1%; animation-delay: -3.5s; color: #4ECDC4; }
.services .float-icon-5 { top: 10%; right: 10%; animation-delay: -10.5s; color: #FFD93D; }
.services .float-icon-6 { top: 52%; left: 2%; animation-delay: -17.5s; color: #F79633; }
.services .float-icon-7 { bottom: 52%; right: 3%; animation-delay: -1.5s; color: #00B8BF; }
.services .float-icon-8 { top: 72%; left: 6%; animation-delay: -8.5s; color: #FF6B6B; }
.services .float-icon-9 { bottom: 18%; left: 3%; animation-delay: -15.5s; color: #4ECDC4; }
.services .float-icon-10 { top: 42%; right: 6%; animation-delay: -4.5s; color: #FFD93D; }
.services .float-icon-11 { top: 85%; right: 12%; animation-delay: -11.5s; color: #F79633; }
.services .float-icon-12 { bottom: 42%; left: 4%; animation-delay: -18.5s; color: #00B8BF; }
.services .float-icon-13 { top: 18%; left: 20%; animation-delay: -2s; color: #F79633; }
.services .float-icon-14 { bottom: 25%; right: 15%; animation-delay: -9s; color: #00B8BF; }
.services .float-icon-15 { top: 62%; right: 8%; animation-delay: -16s; color: #FF6B6B; }
.services .float-icon-16 { bottom: 60%; left: 8%; animation-delay: -5s; color: #4ECDC4; }
.services .float-icon-17 { top: 38%; left: 12%; animation-delay: -12s; color: #FFD93D; }
.services .float-icon-18 { bottom: 38%; right: 10%; animation-delay: -19s; color: #F79633; }
.services .float-icon-19 { top: 55%; right: 20%; animation-delay: -6.5s; color: #00B8BF; }
.services .float-icon-20 { bottom: 55%; left: 12%; animation-delay: -13.5s; color: #FF6B6B; }

@keyframes floatIcon {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(25px, -35px) rotate(12deg) scale(1.15); }
    50% { transform: translate(-20px, -55px) rotate(-8deg) scale(0.85); }
    75% { transform: translate(30px, -25px) rotate(10deg) scale(1.08); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -50px) scale(1.08); }
    50% { transform: translate(-30px, 40px) scale(0.92); }
    75% { transform: translate(50px, 25px) scale(1.05); }
}

/* ============================================
   SERVICES CARDS - PREMIUM DESIGN
   MATCHING INDUSTRIES 100%
   ============================================ */

/* Premium Header for Services */
.services .premium-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.services .premium-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    letter-spacing: -0.02em;
}

.services .premium-header p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.services .premium-tag {
    background: linear-gradient(135deg, rgba(247,150,51,0.15), rgba(0,184,191,0.15)) !important;
    border: 1px solid rgba(247,150,51,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
}

.services .premium-tag i {
    margin-right: 8px;
    color: var(--primary);
}

.services .premium-header h2 .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services .premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* Premium Cards - Glass Morphism (SMALLER VERSION) */
.services .premium-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 12px 14px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 130px;
    display: flex;
    flex-direction: column;
}

.services .premium-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(247,150,51,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.services .premium-card:hover .card-glow {
    opacity: 1;
}

.services .premium-card .card-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.services .premium-card:hover .card-number {
    color: rgba(247,150,51,0.3);
    transform: scale(1.2);
}

.services .premium-card .card-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .premium-card i {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.services .premium-card .icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.services .premium-card:hover .icon-ring {
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(247,150,51,0.15);
}

.services .premium-card:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.services .premium-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.services .premium-card p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.services .premium-card .service-features {
    list-style: none;
    margin-top: auto;
}

.services .premium-card .service-features li {
    margin-bottom: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.services .premium-card .service-features i {
    font-size: 10px;
    color: rgba(0, 184, 191, 0.6);
    transition: color 0.3s ease;
}

.services .premium-card .card-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.services .premium-card:hover .card-hover-line {
    width: 60%;
}

.services .premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(247,150,51,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.services .premium-card:hover h3 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services .premium-card:hover p {
    color: rgba(255,255,255,0.8);
}

.services .premium-card:hover .service-features li {
    color: rgba(255,255,255,0.7);
}

.services .premium-card:hover .service-features i {
    color: var(--secondary);
}

/* Color variations for cards */
.services .premium-card:nth-child(1):hover .icon-ring { border-color: #F79633; }
.services .premium-card:nth-child(2):hover .icon-ring { border-color: #00B8BF; }
.services .premium-card:nth-child(3):hover .icon-ring { border-color: #FF6B6B; }
.services .premium-card:nth-child(4):hover .icon-ring { border-color: #4ECDC4; }
.services .premium-card:nth-child(5):hover .icon-ring { border-color: #FFD93D; }
.services .premium-card:nth-child(6):hover .icon-ring { border-color: #F79633; }
.services .premium-card:nth-child(7):hover .icon-ring { border-color: #00B8BF; }
.services .premium-card:nth-child(8):hover .icon-ring { border-color: #FF6B6B; }
.services .premium-card:nth-child(9):hover .icon-ring { border-color: #4ECDC4; }

/* ============================================
   RESPONSIVE FOR SERVICES
   ============================================ */
@media (max-width: 992px) {
    .services .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .services .premium-card {
        padding: 16px 14px;
        min-height: 160px;
    }
    
    .services .premium-card i {
        font-size: 24px;
    }
    
    .services .premium-card .card-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .services .premium-card h3 {
        font-size: 15px;
    }
    
    .services .premium-card p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0 20px;
        height: auto;
        min-height: 100vh;
    }
    
    .services .premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .services .premium-card {
        padding: 14px 12px;
        min-height: 140px;
        border-radius: 18px;
    }
    
    .services .premium-card i {
        font-size: 20px;
    }
    
    .services .premium-card .card-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    
    .services .premium-card h3 {
        font-size: 14px;
    }
    
    .services .premium-card p {
        font-size: 11px;
    }
    
    .services .premium-card .service-features li {
        font-size: 10px;
    }
    
    .services .premium-header h2 {
        font-size: 28px;
    }
    
    .services .premium-card .card-number {
        font-size: 10px;
        top: 8px;
        right: 10px;
    }
    
    .services .particle { display: none; }
    .services .floating-shape { display: none; }
    .services .light-ray { display: none; }
    .services .sparkle { display: none; }
    .services .float-icon { display: none; }
    .services .orb-1,
    .services .orb-2,
    .services .orb-3,
    .services .orb-4,
    .services .orb-5,
    .services .orb-6,
    .services .orb-7,
    .services .orb-8 {
        width: 120px;
        height: 120px;
        filter: blur(50px);
    }
    .services .wave-pattern {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .services .premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .services .premium-card {
        padding: 12px 10px;
        min-height: 120px;
        border-radius: 14px;
    }
    
    .services .premium-card i {
        font-size: 18px;
    }
    
    .services .premium-card .card-icon-wrapper {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }
    
    .services .premium-card .icon-ring {
        border-width: 1.5px;
    }
    
    .services .premium-card h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .services .premium-card p {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .services .premium-card .service-features li {
        font-size: 9px;
    }
    
    .services .premium-header h2 {
        font-size: 22px;
    }
    
    .services .premium-header p {
        font-size: 12px;
    }
    
    .services .premium-card .card-number {
        font-size: 8px;
        top: 6px;
        right: 8px;
    }
    
    .services .premium-tag {
        font-size: 10px !important;
        padding: 4px 14px !important;
    }
}
















/* ============================================
   INDUSTRIES - UNIQUE MODERN DESIGN
   COMPLETELY DIFFERENT FROM REST OF SITE
   ============================================ */

.industries-unique {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    scroll-margin-top: 15px;
}

/* Background Pattern */
.unique-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247,150,51,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f79733, #ffb366);
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00b8bf, #33d1d9);
    bottom: -50px;
    left: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    top: 40%;
    left: 10%;
    animation: floatShape 18s ease-in-out infinite 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4ecdc4, #6ed4cc);
    top: 20%;
    right: 20%;
    animation: floatShape 22s ease-in-out infinite 4s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    bottom: 20%;
    right: 10%;
    animation: floatShape 28s ease-in-out infinite 6s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -40px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-20px, 30px) scale(0.9) rotate(240deg); }
}

/* Container */
.unique-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.unique-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.unique-header-left {
    flex: 1;
    min-width: 280px;
}

.unique-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247,150,51,0.15);
    color: #f79733;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(247,150,51,0.2);
    backdrop-filter: blur(10px);
}

.unique-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.unique-highlight {
    background: linear-gradient(135deg, #f79733, #00b8bf, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: highlightGradient 4s ease-in-out infinite;
}

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

.unique-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 500px;
    line-height: 1.5;
}

.unique-header-right {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

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

.unique-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #f79733, #00b8bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.unique-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.unique-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.unique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247,150,51,0.05), rgba(0,184,191,0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.unique-card:hover {
    transform: translateX(8px) scale(1.02);
    border-color: rgba(247,150,51,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
}

.unique-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.unique-card-icon i {
    font-size: 18px;
    color: white;
}

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

/* Card Content */
.unique-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.unique-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.unique-card-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.unique-card-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 6px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}

.unique-card:hover .unique-card-tag {
    color: #f79733;
    border-color: rgba(247,150,51,0.15);
    background: rgba(247,150,51,0.08);
}

/* Card Arrow */
.unique-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.unique-card-arrow i {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.unique-card:hover .unique-card-arrow {
    background: linear-gradient(135deg, #f79733, #00b8bf);
    border-color: transparent;
    transform: rotate(45deg);
}

.unique-card:hover .unique-card-arrow i {
    color: white;
    transform: rotate(-45deg);
}

/* Footer CTA */
.unique-footer {
    text-align: center;
    margin-top: 10px;
}

.unique-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #f79733, #00b8bf);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 30px rgba(247,150,51,0.3);
}

.unique-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 50px rgba(247,150,51,0.5);
    gap: 18px;
}

.unique-cta i {
    transition: transform 0.4s ease;
}

.unique-cta:hover i {
    transform: translateX(6px) rotate(-8deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .unique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-unique {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .unique-container {
        padding: 0 20px;
    }
    
    .unique-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .unique-header-right {
        gap: 30px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .unique-title {
        font-size: 30px;
    }
    
    .unique-stat-number {
        font-size: 28px;
    }
    
    .unique-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .unique-card {
        padding: 16px 18px;
        gap: 14px;
    }
    
    .unique-card-icon {
        width: 44px;
        height: 44px;
    }
    
    .unique-card-icon i {
        font-size: 18px;
    }
    
    .unique-card-content h4 {
        font-size: 14px;
    }
    
    .unique-card-content p {
        font-size: 11px;
    }
    
    .unique-card-arrow {
        width: 28px;
        height: 28px;
    }
    
    .unique-cta {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .unique-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .unique-card {
        padding: 14px 16px;
    }
    
    .unique-title {
        font-size: 24px;
    }
    
    .unique-desc {
        font-size: 14px;
    }
    
    .unique-header-right {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .unique-stat-number {
        font-size: 22px;
    }
}









.apps {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.apps .container {
    width: 100%;
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.apps-content .section-header-left {
    margin-bottom: 30px;
}

.apps-content .section-header-left .tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.apps-content .section-header-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.apps-content .section-header-left p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    flex: 1;
    justify-content: center;
    min-width: 160px;
}

.apple-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.apple-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.google-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.google-store i {
    color: white;
}

.google-store small,
.google-store strong {
    color: white;
}

.google-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.web-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.web-store i {
    color: white;
}

.web-store small,
.web-store strong {
    color: white;
}

.web-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.store-btn i {
    font-size: 28px;
}

.store-btn small {
    font-size: 10px;
    opacity: 0.8;
    display: block;
    line-height: 1.2;
}

.store-btn strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.store-btn div {
    text-align: left;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.app-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-features div:hover {
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    transform: translateX(5px);
}

.app-features i {
    color: var(--secondary);
    font-size: 14px;
}

.tech-stack {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    border-radius: 32px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(247,150,51,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0,184,191,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tech-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247,150,51,0.08) 0%, transparent 70%);
    animation: techGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes techGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(10%, 10%); opacity: 1; }
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.2), rgba(0,184,191,0.2));
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(247,150,51,0.3);
}

.tech-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.tech-header .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-header p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.tech-card {
    text-align: center;
    padding: 24px 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

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

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

.tech-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(247,150,51,0.15), rgba(0,184,191,0.15));
    border-color: rgba(247,150,51,0.4);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
}

.tech-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247,150,51,0.2), rgba(0,184,191,0.2));
    border-radius: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-bg {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(247,150,51,0.3);
}

.tech-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.tech-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.tech-card p {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.tech-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tech-card:hover .tech-hover-line {
    transform: scaleX(1);
}

.tech-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.tech-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.tech-stat .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.tech-stat .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

/* Toggle Buttons for Testimonials */
.testimonial-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.toggle-btn {
    padding: 6px 16px;
    border: 1px solid var(--gray-light);
    background: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.toggle-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-video-content {
    transition: all 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 200px;
    object-fit: cover;
}

.testimonial-video:focus {
    outline: none;
}

.testimonial-card {
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-text-content,
.testimonial-video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-video {
    width: 100%;
    max-height: 200px;
    min-height: 160px;
    object-fit: cover;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
}

.team .container {
    width: 100%;
}

.team-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.team-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: center;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    padding: 40px 0 20px;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
}

.team-avatar i {
    font-size: 80px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar i {
    transform: scale(1.05);
    color: var(--secondary);
}

.team-social {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
}

.team-card h3 {
    font-size: 20px;
    margin: 24px 0 8px;
    font-weight: 700;
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--gray);
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 20px 24px;
}

.team-expertise span {
    background: rgba(247,150,51,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-card:hover .team-expertise span {
    background: rgba(0,184,191,0.1);
    color: var(--secondary);
}

.team-slider-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    flex-shrink: 0;
}

.team-slider-btn i {
    font-size: 18px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.team-slider-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: scale(1.08);
}

.team-slider-btn:hover i {
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="30" r="3"/><circle cx="50" cy="80" r="2"/><circle cx="90" cy="70" r="2"/><circle cx="10" cy="60" r="3"/></svg>');
    background-repeat: repeat;
}

.stats-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card-main {
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card-main:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 45px;
    color: rgba(255,255,255,0.9);
    transition: transform 0.3s ease;
}

.stat-card-main:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-card-main h3 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card-main p {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-line {
    display: block;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 15px auto 0;
    transition: width 0.3s ease;
}

.stat-card-main:hover .stat-line {
    width: 80px;
    background: white;
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    scroll-margin-top: 70px;
}

.testimonial-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-icon {
    margin-bottom: 20px;
}

.testimonial-icon i {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.7;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #FFD700;
}

.testimonial-slider-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-slider-btn i {
    font-size: 18px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.testimonial-slider-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: scale(1.08);
}

.testimonial-slider-btn:hover i {
    color: white;
}

.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Compact Contact Section */
.contact {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    scroll-margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(247,150,51,0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0,184,191,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header {
    margin-bottom: 30px;
}

.contact .section-header .tag i {
    margin-right: 6px;
}

.contact .section-header h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.contact .section-header p {
    font-size: 14px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← CHANGED from 1.1fr to 1fr */
    gap: 30px;
    align-items: stretch;
}

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

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
}

.contact-badge i {
    color: var(--primary);
    font-size: 12px;
}

.contact-badge span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.contact-headline {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-headline .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtext {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 18px;
}

.contact-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-stat-item {
    text-align: center;
    flex: 1;
}

.contact-stat-item .stat-number {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 3px;
}

.contact-stat-item .stat-label {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247,150,51,0.05), rgba(0,184,191,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(247,150,51,0.15), rgba(0,184,191,0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-card-icon i {
    font-size: 18px;
    color: var(--primary);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-card-content p {
    color: var(--gray);
    font-size: 11px;
    margin-bottom: 2px;
}

.contact-card-content a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 11px;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: var(--secondary);
    margin-top: 3px;
}

.contact-hint i {
    font-size: 8px;
}

.contact-social-proof {
    background: linear-gradient(135deg, rgba(247,150,51,0.05), rgba(0,184,191,0.05));
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.client-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.avatar-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.avatar-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-size: 10px;
    color: var(--gray);
    margin-top: 6px;
}

.trust-text i {
    color: var(--secondary);
    margin-right: 4px;
    font-size: 9px;
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header {
    text-align: center;
    margin-bottom: 18px;
}

.form-header i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    display: inline-block;
}

.form-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.form-header p {
    font-size: 11px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.message-group i {
    top: 18px;
    transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form textarea {
    padding: 10px 12px 10px 38px;
    resize: vertical;
    min-height: 80px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(247,150,51,0.1);
}

.input-group select {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 10px;
    color: var(--gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

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

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

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 9px;
    color: var(--gray);
}

.form-note i {
    color: var(--secondary);
    margin-right: 4px;
}

/* ==================== ENHANCED PROFESSIONAL FOOTER CSS ==================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Aesthetic Background Art */
.footer-bg-art {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-mesh-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 40%, rgba(247,150,51,0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(0,184,191,0.06) 0%, transparent 60%);
    animation: slowFloat 20s ease-in-out infinite;
}

.footer-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.footer-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.footer-glow-1 {
    bottom: -100px;
    left: -100px;
    background: var(--primary);
}

.footer-glow-2 {
    top: -100px;
    right: -100px;
    background: var(--secondary);
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(2deg); }
}

/* Footer Main Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Brand Column */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.logo-separator {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    font-weight: 300;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-contact-info {
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #aaa;
    font-size: 0.85rem;
}

.footer-contact-item i {
    width: 20px;
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Two columns for industries */
.footer-links.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.footer-links.two-columns li {
    margin-bottom: 0;
}

/* Newsletter */
.newsletter-text {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-newsletter {
    margin-bottom: 24px;
}

.newsletter-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-group i {
    position: absolute;
    left: 15px;
    color: #aaa;
    font-size: 0.9rem;
    pointer-events: none;
}

.newsletter-group input {
    width: 100%;
    padding: 12px 45px 12px 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.newsletter-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.newsletter-group input::placeholder {
    color: #777;
}

.newsletter-group button {
    position: absolute;
    right: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(247,150,51,0.5);
}

/* Trust Badge & Awards */
.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 10px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-trust-badge i {
    color: var(--secondary);
    font-size: 1rem;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-awards span {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-awards i {
    color: var(--primary);
    width: 16px;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #777;
    font-size: 0.8rem;
}

.footer-copyright a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: var(--primary);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   PROFESSIONAL CLASSICAL CONTACT SECTION - COMPACT SIZE
   ============================================ */

.contact {
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(247,150,51,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(0,184,191,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    width: 100%;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

/* LEFT SIDE - CLASSICAL MASTERPIECE - COMPACT */
.contact-info {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 24px 28px;
    position: relative;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(247, 150, 51, 0.2);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* RIGHT SIDE FORM - COMPACT */
.contact-form {
    background: white;
    padding: 24px 28px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow-y: auto;
    height: 100%;
    transition: all 0.3s;
}

/* Classical decorative elements */
.classical-ornament {
    position: absolute;
    top: 24px;
    left: 28px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.greco-roman-border {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(247,150,51,0.2);
    border-right: 2px solid rgba(247,150,51,0.2);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 150, 51, 0.08), rgba(0, 184, 191, 0.03));
    border-radius: 50%;
    pointer-events: none;
}

/* Colorful bar on RIGHT side INSIDE the left section */
.contact-info {
    position: relative;
    overflow: hidden; /* This keeps the bar inside the curved corners */
}

.contact-info::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 5px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmerVertical 3s infinite;
    border-radius: 0;
    z-index: 1;
}

@keyframes shimmerVertical {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.contact-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.elegant-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.elegant-divider i {
    font-size: 12px;
    color: var(--primary);
    opacity: 0.7;
}

.contact-subtext {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.artistic-stats {
    display: flex;
    gap: 16px;
    padding: 14px 0 12px;
    border-top: 1px solid rgba(247, 150, 51, 0.15);
    border-bottom: 1px solid rgba(247, 150, 51, 0.15);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #5a6874;
    letter-spacing: 0.5px;
}

.stat-dot {
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 6px auto 0;
    opacity: 0.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(247, 150, 51, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateX(5px) translateY(-2px);
    background: white;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(247, 150, 51, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.12), rgba(0, 184, 191, 0.12));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,150,51,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .icon-glow {
    opacity: 1;
}

.contact-card-icon i {
    font-size: 20px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-card-content p,
.contact-card-content a {
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-hint {
    font-size: 10px;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.contact-social-proof {
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.06), rgba(0, 184, 191, 0.06));
    border-radius: 24px;
    padding: 12px 16px;
    text-align: center;
    backdrop-filter: blur(4px);
    margin-top: auto;
    border: 1px solid rgba(247, 150, 51, 0.1);
}

.client-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.avatar-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px;
    transition: transform 0.3s;
}

.avatar-ring:hover {
    transform: scale(1.05);
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.avatar-count {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-size: 11px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 6px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    color: var(--gray);
}

.trust-badges i {
    color: var(--primary);
    margin-right: 4px;
}

/* Form Styles - Compact */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

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

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.1), rgba(0, 184, 191, 0.1));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}

.form-header-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed var(--primary);
    opacity: 0.5;
    animation: spinCircle 20s linear infinite;
}

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

.form-header-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.form-header p {
    font-size: 12px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    z-index: 1;
    transition: color 0.3s;
}

.message-group i {
    top: 16px;
    transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s;
    background: #fafcff;
}

.contact-form textarea {
    padding: 10px 14px 10px 40px;
    min-height: 70px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(247, 150, 51, 0.08);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.contact-form input:focus + .input-focus-line,
.contact-form select:focus + .input-focus-line,
.contact-form textarea:focus + .input-focus-line {
    width: 100%;
}

.input-group:focus-within i {
    color: var(--primary);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 14px;
}

.form-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    font-size: 13px;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 150, 51, 0.3);
    gap: 12px;
}

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

.submit-btn:hover i {
    transform: translateX(4px);
}

.form-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 9px;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.form-note i {
    font-size: 10px;
    color: var(--secondary);
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact .container {
        padding: 0 20px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact {
        min-height: auto;
        height: auto;
        padding: 50px 0;
    }
    .contact-info, .contact-form {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact .container {
        padding: 16px;
    }
    .contact-headline {
        font-size: 26px;
    }
    .contact-info, .contact-form {
        padding: 20px 18px;
    }
    .artistic-stats {
        gap: 10px;
    }
    .stat-number {
        font-size: 22px;
    }
    .contact-card {
        padding: 10px 14px;
    }
    .contact-card-icon {
        width: 38px;
        height: 38px;
    }
    .contact-card-icon i {
        font-size: 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .form-header h4 {
        font-size: 18px;
    }
    .form-footer {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .trust-badges {
        flex-direction: column;
        gap: 4px;
    }
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

.footer-floating-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .newsletter-col {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonial-slide {
        min-width: 340px;
        max-width: 340px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mobile-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px;
        transition: 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-grid,
    .services-grid,
    .industries-grid,
    .apps-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 40px;
        height: auto;
    }
    
    .stats-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card-main {
        padding: 20px 15px;
    }
    
    .stat-card-main h3 {
        font-size: 32px;
    }
    
    .stat-icon i {
        font-size: 32px;
    }
    
    .stat-card-main p {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .store-btn {
        min-width: auto;
        justify-content: center;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack {
        padding: 30px 20px;
    }
    
    .tech-header h3 {
        font-size: 22px;
    }
    
    .tech-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .tech-icon {
        width: 38px;
        height: 38px;
    }
    
    .tech-card {
        padding: 18px 10px;
    }
    
    .tech-card h4 {
        font-size: 12px;
    }
    
    .tech-card p {
        font-size: 10px;
    }
    
    .tech-stats {
        gap: 15px;
    }
    
    .tech-stat .stat-number {
        font-size: 16px;
    }
    
    .team-slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .team-slider-btn i {
        font-size: 14px;
    }
    
    .team-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .team-avatar i {
        font-size: 60px;
    }
    
    .team {
        padding: 60px 0;
        min-height: auto;
    }
    
    .testimonial-slide {
        min-width: 300px;
        max-width: 300px;
    }
    
    .testimonial-slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .testimonial-slider-btn i {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .contact {
        padding: 30px 0;
    }
    
    .contact-headline {
        font-size: 22px;
    }
    
    .contact-stats {
        gap: 15px;
    }
    
    .contact-stat-item .stat-number {
        font-size: 18px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-header i {
        font-size: 28px;
    }
    
    .form-header h4 {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 8px 12px;
    }
    
    .contact-card-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .contact-card-icon i {
        font-size: 16px;
    }
    
    .avatar-ring {
        width: 28px;
        height: 28px;
    }
    
    .avatar-count {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .newsletter-col {
        grid-column: span 1;
    }
    .footer-links.two-columns {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer-floating-badge {
        display: none;
    }
}