/* General Styles */
:root {
            --primary-color: #6c5ce7;
            --secondary-color: #0984e3;
            --dark-color: #2d3436;
            --light-bg: #f8f9fa;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* logo */
.logo-new{
    max-width: 75% !important;

}
/* navigation tyle */
     /* Navigation Bar - Split Design */
        /* Sticky Navbar Styles */
.navbar-split {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Add padding to body to prevent content from hiding under navbar */
body {
    padding-top: 80px; /* Adjust this value based on your navbar height */
}

/* Navbar Container */
/* ============================================
   STICKY NAVBAR - FULLY RESPONSIVE
   ============================================ */

/* Base Navbar Styles */
.navbar-split {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Add padding to body to prevent content jump */
body {
    padding-top: 80px;
}

/* Navbar Container */
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-new {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-links a:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    width: 42px;
    height: 42px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #334155;
}

.btn-icon:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.btn-nav-cta {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-toggle:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.mobile-toggle i {
    transition: all 0.3s ease;
}

/* Scrolled State */
.navbar-split.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-split.scrolled .navbar-container {
    padding: 0.7rem 2rem;
}

.navbar-split.scrolled .logo-new {
    height: 40px;
}

/* ============================================
   TABLET RESPONSIVE (992px and below)
   ============================================ */
@media (max-width: 992px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 0.3rem;
    }

    .nav-links a {
        padding: 8px 14px;
        font-size: 0.95rem;
    }

    .btn-nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-new {
        height: 40px;
    }
}

/* ============================================
   MOBILE RESPONSIVE (768px and below)
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar-container {
        padding: 0.8rem 1rem;
    }

    /* Mobile Navigation Links */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .nav-links a.active {
        background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
        color: white;
    }

    /* Show Mobile Toggle */
    .mobile-toggle {
        display: flex;
    }

    /* Hide Desktop Actions on Mobile */
    .btn-icon {
        display: none;
    }

    .btn-nav-cta {
        display: none;
    }

    /* Mobile CTA in Menu */
    .nav-links::after {
        content: '';
        display: block;
        margin-top: 2rem;
    }

    /* Smaller Logo */
    .logo-new {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* ============================================
   SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }

    .navbar-container {
        padding: 0.7rem 1rem;
    }

    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 1.5rem 1rem;
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .logo-new {
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media (max-height: 500px) and (max-width: 992px) {
    .nav-links {
        padding: 1rem;
    }

    .nav-links a {
        padding: 10px 16px;
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
}

/* ============================================
   PREVENT BODY SCROLL WHEN MENU OPEN
   ============================================ */
body.menu-open {
    overflow: hidden;
}
        
        /* Banner Section - Wave Design */
        .banner-wave {
            min-height: 100vh;
            background: #0a0e27;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 40px;
        }
        
        /* Animated Grid Background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }
        
        /* Glowing Orbs */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: orbFloat 15s ease-in-out infinite;
        }
        
        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #00d4ff, transparent);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #7b2ff7, transparent);
            bottom: -10%;
            right: -10%;
            animation-delay: 3s;
        }
        
        .orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, #ff006e, transparent);
            top: 40%;
            right: 20%;
            animation-delay: 6s;
        }
        
        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }
        
        /* Content */
        .banner-content-wrapper {
            position: relative;
            z-index: 10;
        }
        
        /* Badge */
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: #00d4ff;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 30px;
            animation: slideInLeft 0.8s ease;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .badge-dot {
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }
        
        /* Title */
        .banner-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gradient-word {
            background: linear-gradient(135deg, #00d4ff, #7b2ff7, #ff006e);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
        }
        
        /* Description */
        .banner-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 600px;
            animation: slideInUp 0.8s ease 0.4s backwards;
        }
        
        /* Buttons */
        .banner-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease 0.6s backwards;
        }
        
        .btn-primary-large {
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
            color: #fff;
        }
        
        .btn-primary-large i {
            transition: transform 0.3s ease;
        }
        
        .btn-primary-large:hover i {
            transform: translateX(5px);
        }
        
        .btn-secondary-large {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary-large:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            color: #fff;
        }
        
        /* Features Pills */
        .features-pills {
            display: flex;
            gap: 15px;
            margin-top: 50px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease 0.8s backwards;
        }
        
        .feature-pill {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 24px;
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-pill:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .feature-pill i {
            color: #00d4ff;
            font-size: 1.1rem;
        }
        
        /* Banner Visual - Animated Image */
        .banner-visual {
            position: relative;
            z-index: 10;
            animation: slideInRight 0.8s ease 0.4s backwards;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .animated-image-container {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image {
            width: 100%;
            max-width: 550px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: floatImage 6s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }
        
        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 3;
        }
        
        .floating-element i {
            font-size: 2rem;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .element-1 {
            top: 10%;
            right: 10%;
            animation: float1 4s ease-in-out infinite;
        }
        
        .element-2 {
            bottom: 20%;
            left: 5%;
            animation: float2 5s ease-in-out infinite;
        }
        
        .element-3 {
            top: 50%;
            right: 0;
            animation: float3 6s ease-in-out infinite;
        }
        
        @keyframes float1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-20px, -20px) rotate(10deg);
            }
        }
        
        @keyframes float2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(15px, -15px) rotate(-10deg);
            }
        }
        
        @keyframes float3 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-10px, 20px) rotate(8deg);
            }
        }
        
        /* Clients/Partners */
        .clients-section {
            position: relative;
            z-index: 10;
            margin-top: 80px;
            animation: slideInUp 0.8s ease 1s backwards;
        }
        
        .clients-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }
        
        .clients-logos {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .client-logo {
            width: 120px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            transform: translateY(-3px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 300px;
                height: calc(100vh - 100px);
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px;
                gap: 10px;
                transition: left 0.4s ease;
                border-radius: 0 30px 30px 0;
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li a {
                width: 100%;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .banner-title {
                font-size: 3rem;
            }
            
            .banner-description {
                font-size: 1.1rem;
            }
            
            .animated-image-container {
                height: 400px;
            }
            
            .hero-image {
                max-width: 400px;
            }
            
            .floating-element {
                width: 60px;
                height: 60px;
            }
            
            .floating-element i {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-split {
                width: 100%;
                padding: 12px 20px;
            }
            
            .logo-symbol {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .nav-actions .btn-icon {
                display: none;
            }
            
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-description {
                font-size: 1rem;
            }
            
            .btn-primary-large,
            .btn-secondary-large {
                padding: 15px 30px;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }
            
            .animated-image-container {
                height: 300px;
                margin-top: 40px;
            }
            
            .hero-image {
                max-width: 100%;
            }
            
            .floating-element {
                display: none;
            }
        }

/* Service Boxes */
.service-box {
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-3px);
}

.service-box-1 {
    background: rgba(255, 107, 157, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.service-box-2 {
    background: rgba(79, 172, 254, 0.3);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

.service-box-3 {
    background: rgba(255, 195, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.2);
}

.service-box-4 {
    background: rgba(0, 242, 254, 0.3);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
    transform: translateY(50%);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-get-started {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-collapse {
        background: rgba(43, 27, 78, 0.95);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .illustration-box {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        padding: 12px 24px;
    }
    
    .brand-text {
        font-size: 24px;
    }
}


        /* Section Styles */
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }

        .service-box {
            padding: 40px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: 2px solid transparent;
        }

        .service-box:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
        }

        .service-box h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin: 20px 0 15px;
        }

        .service-box p {
            color: #666;
            line-height: 1.8;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: transform 0.6s ease;
        }

        .service-box:hover .service-icon {
            transform: rotateY(360deg);
        }

        /* Web Development Section */
        .web-dev-section {
            padding: 80px 0;
            background: var(--light-bg);
            position: relative;
        }

        .feature-item {
            display: flex;
            align-items: start;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: transform 0.6s ease;
            cursor: pointer;
        }

        .feature-item:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .feature-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-content p {
            color: #666;
            line-height: 1.7;
        }

        /* Enhanced Services */
        .enhanced-services {
            padding: 80px 0;
            background: white;
        }

        .step-box {
            position: relative;
            padding: 40px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s;
            text-align: center;
        }

        .step-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            z-index: 2;
        }

        .step-icon-wrapper {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            transition: transform 0.6s ease;
        }

        .step-box:hover .step-icon-wrapper {
            transform: rotateY(360deg);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }

        .step-box h4 {
            margin: 20px 0 15px;
            font-weight: 700;
        }

        /* Marketing Techniques */
        .marketing-techniques {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .technique-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 25px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            border-left: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        .technique-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left-color: #e74c3c;
            border-bottom-color: #e74c3c;
        }

        .technique-card h5 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .technique-card h5 i {
            color: var(--primary-color);
        }

        .technique-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .technique-icon i {
            font-size: 2rem;
            color: var(--dark-color);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .accordion-button {
            background: white;
            color: var(--dark-color);
            font-weight: 600;
            padding: 20px 25px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-1);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: 3px solid transparent;
        }

        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .pricing-header p {
            color: #666;
            font-size: 0.9rem;
        }

        .pricing-price {
            margin: 30px 0;
        }

        .pricing-price h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .pricing-price span {
            font-size: 1rem;
            color: #666;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .pricing-features li {
            padding: 12px 0;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .pricing-features li i {
            color: #27ae60;
            margin-right: 10px;
        }

        .btn-pricing {
            width: 100%;
            padding: 12px;
            border-radius: 25px;
            font-weight: 600;
            background: var(--gradient-1);
            color: white;
            border: none;
            transition: all 0.3s;
        }

        .btn-pricing:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
        }

        /* Newsletter */
        .newsletter-section {
            padding: 60px 0;
            background: var(--gradient-1);
            color: white;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-form input {
            padding: 15px 25px;
            border-radius: 25px 0 0 25px;
            border: none;
            width: 70%;
        }

        .newsletter-form button {
            padding: 15px 30px;
            border-radius: 0 25px 25px 0;
            background: white;
            color: var(--primary-color);
            border: none;
            font-weight: 600;
            width: 40%;
        }

       
 /* counter section */
   /* What We've Done Section */
        .achievements-section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            background: #1a1a1a;
        }
        
        /* Background Image with Overlay */
        .achievements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }
        
        /* Dark Overlay */
        .achievements-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            z-index: 2;
        }
        
        /* Watermark Text Background */
        .watermark-text {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            padding-right: 5%;
            z-index: 3;
            pointer-events: none;
        }
        
        .watermark-text span {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            line-height: 0.9;
            text-transform: uppercase;
            letter-spacing: -2px;
            transform: rotate(-8deg);
            white-space: nowrap;
        }
        
        /* Content Container */
        .content-wrapper {
            position: relative;
            z-index: 10;
        }
        
        /* Red Accent Line */
        .accent-line {
            width: 60px;
            height: 4px;
            background: #cf1094;
            margin-bottom: 30px;
        }
        
        /* Section Title */
        .section-titles {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }
        
        /* Description Text */
        .section-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 800px;
        }
        
        /* Stats Grid */
        .stats-row {
            margin-top: 80px;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        /* Stat Number */
        .stat-number {
            font-size: 4.5rem;
            font-weight: 900;
            color: #cf1094;
            display: block;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
            line-height: 1;
        }
        
        /* Stat Label */
        .stat-label {
            font-size: 1.25rem;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* Counter Animation */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stat-item.animated {
            animation: countUp 0.6s ease-out;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .watermark-text span {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .watermark-text {
                width: 100%;
                align-items: center;
                padding-right: 0;
            }
            
            .watermark-text span {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stat-label {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .achievements-section {
                padding: 60px 0;
            }
            
            .watermark-text span {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .stats-row {
                margin-top: 50px;
            }
            
            .stat-item {
                margin-bottom: 40px;
            }
        }

        /* footer section */
         /* Demo Content Spacer */
        .demo-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.5rem;
        }
        
        /* Modern Footer */
        .modern-footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* Animated Background Gradient */
        .footer-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Grid Pattern */
        .footer-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }
        
        /* Content Container */
        .footer-content {
            position: relative;
            z-index: 10;
            padding: 80px 0 0;
        }
        
        /* Footer Top Section */
        .footer-top {
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        /* Brand Section */
        .footer-brand {
            margin-bottom: 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #fff;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }
        
        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }
        
        .footer-tagline {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 350px;
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            border-color: transparent;
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }
        
        /* Footer Links Section */
        .footer-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #7b2ff7);
            border-radius: 10px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #00d4ff;
            padding-left: 8px;
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        /* Newsletter Section */
        .newsletter-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 35px;
            backdrop-filter: blur(10px);
        }
        
        .newsletter-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .newsletter-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .newsletter-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }
        
        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
        }
        
        /* Footer Middle - Stats */
        .footer-stats {
            padding: 50px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .stat-card {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            padding: 30px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: #7b2ff7;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #00d4ff;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-content > * {
            animation: fadeInUp 0.6s ease-out backwards;
        }
        
        .footer-top {
            animation-delay: 0.1s;
        }
        
        .footer-stats {
            animation-delay: 0.2s;
        }
        
        .footer-bottom {
            animation-delay: 0.3s;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .footer-content {
                padding: 60px 0 0;
            }
            
            .footer-brand {
                margin-bottom: 50px;
            }
            
            .footer-section-title {
                margin-top: 40px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-btn {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
            }
        }
        /* blog page */

     
 /*  blog*/

 /* contact */

   /* ============================================
           HERO SECTION
           ============================================ */
        .contact-hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #a78bfa;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

      /* ============================================
           CONTACT SECTION - WHITE BACKGROUND
           ============================================ */
        .contact-section {
            background: white;
            padding: 80px 0;
            position: relative;
            margin-top: -40px;
            border-radius: 40px 40px 0 0;
            z-index: 2;
        }

        .section-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        /* Contact Form */
        .form-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-header {
            margin-bottom: 40px;
        }

        .form-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .form-title {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .form-subtitle {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            margin-bottom: 10px;
            color: #334155;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control,
        .form-select {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 14px 18px;
            color: #1e293b;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-control:focus,
        .form-select:focus {
            background: white;
            border-color: #8b5cf6;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
            color: #1e293b;
            outline: none;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 140px;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
        }

        .form-select option {
            background: white;
            color: #1e293b;
        }

        .submit-btn {
            background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
            border: none;
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
        }

        /* Map Section */
        .map-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }

        .map-header {
            margin-bottom: 25px;
        }

        .map-icon-header {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .map-title {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .map-address {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            height: 350px;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Info Below Map */
        .contact-info-list {
            margin-top: 30px;
        }

        .info-item {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: white;
            border-color: #8b5cf6;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.15);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #1e293b;
        }

        .info-content p {
            font-size: 0.95rem;
            color: #64748b;
            margin: 0;
        }

        .info-content a {
            color: #8b5cf6;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .info-content a:hover {
            color: #ec4899;
        }

        /* ============================================
           QUICK CONTACT CARDS
           ============================================ */
        .quick-contact-section {
            background: white;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
        }

        .quick-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .quick-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .quick-card:hover {
            transform: translateY(-10px);
            border-color: #8b5cf6;
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
        }

        .quick-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .quick-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .quick-text {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
        }

        .quick-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .quick-link:hover {
            color: #ec4899;
            gap: 8px;
        }

        /* ============================================
           SUCCESS MESSAGE
           ============================================ */
        .success-message {
            display: none;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
            border: 2px solid #10b981;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            text-align: center;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .success-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #059669;
        }

        .success-text {
            color: #64748b;
            font-size: 0.95rem;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            .section-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .map-card {
                position: relative;
                top: 0;
            }

            .quick-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .form-card,
            .map-card {
                padding: 30px 25px;
            }

            .form-title {
                font-size: 1.8rem;
            }

            .quick-cards {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .contact-section {
                border-radius: 30px 30px 0 0;
            }
        }