
        :root {
            --primary-color: #00aaff;
            --secondary-color: #ff3366;
            --dark-blue: #1e293b;
            --light-gray: #f8fafc;
            --text-gray: #64748b;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 55px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-img {
            transform: scale(1.05); 
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-color);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-menu li a.active {
            color: var(--primary-color);   
        }

        .nav-menu li a.active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            background: transparent;
            border: none;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-blue);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--primary-color);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: var(--primary-color);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu - Right Side Slide */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            padding-top: 100px;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
            padding: 0;
            width: 100%;
        }

        .mobile-menu ul li {
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu ul li:last-child {
            border-bottom: none;
        }

        .mobile-menu ul li a {
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 20px 30px;
            position: relative;
        }

        .mobile-menu ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffd700;
            transform: translateX(-10px);
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .nav-container {
                padding: 0 20px;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-container {
                padding: 0 15px;
            }
            
            .logo-img {
                height: 40px;
            }

            /* Hide desktop menu on mobile */
            .nav-menu {
                display: none;
            }

            /* Show mobile menu toggle on mobile */
            .mobile-menu-toggle {
                display: flex;
            }
        }

        @media screen and (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }
            
            .logo-img {
                height: 35px;
            }

            .mobile-menu {
                width: 100%;
                right: -100%;
            }

            .mobile-menu ul li a {
                font-size: 16px;
                padding: 18px 20px;
            }
        }

        @media screen and (max-width: 320px) {
            .logo-img {
                height: 30px;
            }
            
            .mobile-menu ul li a {
                font-size: 14px;
                padding: 15px 20px;
            }
        }

        /* Additional mobile-specific improvements */
        @media screen and (max-width: 768px) {
            .header {
                padding: 10px 0;
            }
            
            .header.scrolled {
                padding: 8px 0;
            }
            
            /* Prevent body scroll when mobile menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
        }

        /* Hero Section with Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
            touch-action: pan-y;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1.5s ease-in-out;
            transform: scale(1.1);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: right center;
            background-repeat: no-repeat;
        }

        /* Enhanced Background with Better Text Contrast */
        .slide:nth-child(1) .slide-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(44, 62, 80, 0.6)), 
                        url('../images/sliders/img1.png');
            background-size: contain;
            background-position: right center;
            background-repeat: no-repeat;
        }

        .slide:nth-child(2) .slide-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(52, 73, 94, 0.6)), 
                        url('../images/sliders/img2.webp');
            background-size: contain;
            background-position: right center;
            background-repeat: no-repeat;
        }

        .slide:nth-child(3) .slide-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(44, 62, 80, 0.6)), 
                        url('../images/sliders/img3.jpg');
            background-size: contain;
            background-position: right center;
            background-repeat: no-repeat;
        }

        /* Fallback gradient backgrounds if images don't load */
        .slide:nth-child(1) .slide-bg {
            background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(44, 62, 80, 0.6)), 
                             url('../images/sliders/img1.png'),
                             linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        .slide:nth-child(2) .slide-bg {
            background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(52, 73, 94, 0.6)), 
                             url('../images/sliders/img2.webp'),
                             linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        }

        .slide:nth-child(3) .slide-bg {
            background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(44, 62, 80, 0.6)), 
                             url('../images/sliders/img3.jpg'),
                             linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        .slide-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            color: white;
            z-index: 2;
            padding: 0 5%;
        }

        .slide-inner {
            max-width: 600px;
            animation: slideUp 1.5s ease-out;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-subtitle {
            font-size: 1.1rem;
            color: #f39c12;
            margin-bottom: 1rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .slide-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #f39c12 0%, #e74c3c 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
                         0 0 20px rgba(243, 156, 18, 0.3),
                         0 0 40px rgba(231, 76, 60, 0.2);
            color: #f39c12;
            position: relative;
        }
        
        .slide-title::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: blur(3px);
            opacity: 0.7;
        }

        .slide-description {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: #e9ecef;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(231, 76, 60, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        /* Enhanced Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }

        .nav-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .nav-dot.active {
            background: white;
            width: 50px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        /* Improved Slider Arrows - Default size for desktop */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            color: #2c3e50;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border: none;
            outline: none;
        }

        .slider-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            color: var(--primary-color);
        }

        .slider-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .prev-arrow {
            left: 30px;
        }

        .next-arrow {
            right: 30px;
        }

        /* Tablet and Mobile Responsive Design */
        @media screen and (max-width: 1024px) {
            .hero-slider {
                margin-top: 70px;
            }

            .slide-content {
                padding: 0 4%;
            }

            .slide-title {
                font-size: 3.5rem;
            }

            .slide-description {
                font-size: 1.2rem;
            }

            /* Smaller arrows for tablet */
            .slider-arrow {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .prev-arrow {
                left: 20px;
            }

            .next-arrow {
                right: 20px;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-slider {
                margin-top: 60px;
                height: 100vh;
            }

            .slide-content {
                padding: 0 20px;
                text-align: center;
                justify-content: center;
            }

            .slide-inner {
                max-width: 100%;
            }

            .slide-subtitle {
                font-size: 0.9rem;
                letter-spacing: 2px;
                margin-bottom: 0.8rem;
            }

            .slide-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            .slide-description {
                font-size: 1rem;
                margin-bottom: 2rem;
                line-height: 1.6;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                padding: 1rem 2.5rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            /* Hide arrows on mobile and tablet */
            .slider-arrow {
                display: none;
            }

            .slider-nav {
                bottom: 30px;
                gap: 15px;
            }

            .nav-dot {
                width: 12px;
                height: 12px;
            }

            .nav-dot.active {
                width: 40px;
            }
        }

        @media screen and (max-width: 480px) {
            .slide-content {
                padding: 0 15px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-description {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .btn-primary, .btn-secondary {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            .slider-nav {
                bottom: 20px;
                gap: 12px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }

            .nav-dot.active {
                width: 35px;
            }
        }

        @media screen and (max-width: 320px) {
            .slide-title {
                font-size: 1.8rem;
            }

            .slide-description {
                font-size: 0.9rem;
            }

            .btn-primary, .btn-secondary {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Touch improvements */
        .nav-dot {
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-dot::before {
            content: '';
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transition: all 0.4s ease;
        }

        .nav-dot.active::before {
            background: white;
            width: 50px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        @media screen and (max-width: 768px) {
            .nav-dot {
                min-width: 40px;
                min-height: 40px;
            }

            .nav-dot::before {
                width: 12px;
                height: 12px;
            }

            .nav-dot.active::before {
                width: 40px;
            }
        }

        @media screen and (max-width: 480px) {
            .nav-dot {
                min-width: 36px;
                min-height: 36px;
            }

            .nav-dot::before {
                width: 10px;
                height: 10px;
            }

            .nav-dot.active::before {
                width: 35px;
            }
        }



        /* About Us Section Styles */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .about-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-left {
            position: relative;
        }

        .about-image {
    position: relative;
    border-radius: 70px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 1000px; 
    margin: 0 auto;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 320px; 
    object-fit: cover;
    display: block;
}

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(255, 51, 102, 0.1));
            pointer-events: none;
        }

        .about-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .about-text {
            margin-bottom: 40px;
        }

        .about-text p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-text strong {
            color: #1e293b;
            font-weight: 600;
        }

        .btn-know-more {
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            color: white;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .about-right {
            animation: fadeInUp 0.8s ease forwards;
        }


        /* Animations */

        @keyframes fadeInUp {

            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
    
            .about-image img {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }
    
            .about-title {
                font-size: 32px;
                margin-bottom: 25px;
            }
    
            .about-text p {
                font-size: 14px;
                margin-bottom: 15px;
            }
    
            .about-image img {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 60px 0;
            }
    
            .about-title {
                font-size: 26px;
            }
    
            .about-image img {
                height: 250px;
            }
        }

        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        .services-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"><defs><pattern id="services-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,170,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23services-pattern)"/></svg>');
            pointer-events: none;
        }

        .services-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .services-title {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .services-subtitle {
            font-size: 16px;
            color: #64748b;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Horizontal Service Cards Grid */
        .services-grid {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            margin-bottom: 60px;
            overflow-x: auto;
            padding: 10px 0;
        }

        .service-card {
            background: white;
            padding: 25px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 280px;
            max-width: 300px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #00aaff, #0066cc);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 170, 255, 0.15);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:nth-child(2)::before {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .service-card:nth-child(3)::before {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .service-card:nth-child(4)::before {
            background: linear-gradient(135deg, #a855f7, #9333ea);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 170, 255, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #00aaff;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
            color: #22c55e;
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
            color: #f59e0b;
        }

        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
            color: #a855f7;
        }

        .service-title {
            font-size: 18px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .service-description {
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 5px;
            padding-left: 14px;
            position: relative;
            line-height: 1.4;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #22c55e;
            font-weight: bold;
            font-size: 11px;
        }

        /* Enhanced Services Section with Circular Diagram */
        .enhanced-services {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e293b, #334155);
            position: relative;
            overflow: hidden;
        }

        .enhanced-services::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 200 200"><defs><pattern id="enhanced-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23enhanced-pattern)"/></svg>');
            pointer-events: none;
        }

        .enhanced-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .enhanced-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .enhanced-left {
            color: white;
        }

        .enhanced-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .enhanced-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .enhanced-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .enhanced-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #00aaff;
            display: block;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .enhanced-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circular-diagram {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .diagram-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            z-index: 5;
            box-shadow: 0 8px 30px rgba(255, 51, 102, 0.3);
        }

        .diagram-segment {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .diagram-segment:hover {
            transform: scale(1.05);
        }

        .segment-icon {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .segment-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #00aaff, #0066cc);
        }

        .segment-2 {
            top: 20%;
            right: 0;
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .segment-3 {
            bottom: 20%;
            right: 0;
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .segment-4 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #a855f7, #9333ea);
        }

        .segment-5 {
            bottom: 20%;
            left: 0;
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .segment-6 {
            top: 20%;
            left: 0;
            background: linear-gradient(135deg, #06b6d4, #0891b2);
        }

        .cta-button {
            background: linear-gradient(135deg, #ff3366, #ff6b9d);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .enhanced-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .circular-diagram {
                width: 350px;
                height: 350px;
            }

            .diagram-center {
                width: 120px;
                height: 120px;
                font-size: 16px;
            }

            .diagram-segment {
                width: 80px;
                height: 80px;
                font-size: 11px;
                padding: 12px;
            }

            .segment-icon {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .services-grid {
                flex-direction: column;
                gap: 20px;
            }

            .service-card {
                min-width: auto;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .slide-content {
                padding: 0 20px;
                text-align: center;
                flex-direction: column;
            }

            .content-right {
                margin-top: 30px;
            }

            .slide-title {
                font-size: 28px;
            }

            .visual-element {
                width: 250px;
                height: 250px;
            }

            .tech-globe {
                width: 200px;
                height: 200px;
            }

            .slider-arrows {
                display: none;
            }

            .services-title, .enhanced-title {
                font-size: 32px;
            }

            .services-grid {
                flex-direction: column;
                gap: 15px;
            }

            .service-card {
                padding: 20px 15px;
                min-width: auto;
                max-width: none;
            }

            .enhanced-stats {
                justify-content: center;
                gap: 20px;
            }

            .circular-diagram {
                width: 280px;
                height: 280px;
            }

            .diagram-center {
                width: 100px;
                height: 100px;
                font-size: 14px;
            }

            .diagram-segment {
                width: 70px;
                height: 70px;
                font-size: 10px;
                padding: 10px;
            }

            .segment-icon {
                font-size: 14px;
                margin-bottom: 4px;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 60px 0;
            }

            .enhanced-services {
                padding: 60px 0;
            }

            .service-card {
                padding: 18px 12px;
            }

            .service-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
                margin-bottom: 12px;
            }

            .service-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .service-description {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .service-features li {
                font-size: 11px;
                margin-bottom: 4px;
                padding-left: 12px;
            }

            .service-features li::before {
                font-size: 10px;
            }
        }



        /* Use Cases Section Styles */
        .use-cases-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        /* Floating decorative elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 0;
        }


        .floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00aaff, #ff3366);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d, #00aaff);
    border-radius: 20px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00aaff, #0066cc);
    border-radius: 50%;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.use-cases-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.use-cases-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff3366, #ff6b9d);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 16px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.use-cases-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #00aaff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.use-cases-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Case Study Grid */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.case-study-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: slideInUp 0.8s ease forwards;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00aaff, #ff3366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 170, 255, 0.15);
}

.case-study-card:nth-child(1) { animation-delay: 0.1s; }
.case-study-card:nth-child(2) { animation-delay: 0.2s; }
.case-study-card:nth-child(3) { animation-delay: 0.3s; }
.case-study-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.case-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.85), rgba(255, 51, 102, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.case-study-card:hover .case-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.case-study-card:hover .overlay-content {
    transform: translateY(0);
}

.case-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-content {
    padding: 30px 25px;
    position: relative;
}

.case-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.case-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Button */
.use-cases-cta {
    text-align: center;
}

.btn-view-all {
    background: linear-gradient(135deg, #00aaff, #0066cc);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    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.6s ease;
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 170, 255, 0.5);
    background: linear-gradient(135deg, #0066cc, #004499);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-study-grid {
        gap: 30px;
    }
    
    .use-cases-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .use-cases-section {
        padding: 80px 0;
    }
    
    .use-cases-title {
        font-size: 34px;
        margin-bottom: 15px;
    }
    
    .use-cases-subtitle {
        font-size: 16px;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-content {
        padding: 25px 20px;
    }
    
    .case-title {
        font-size: 15px;
        line-height: 1.4;
    }
}

        @media (max-width: 480px) {
            .use-cases-section {
                padding: 60px 0;
            }
    
            .use-cases-title {
                font-size: 28px;
            }
    
            .use-cases-subtitle {
                font-size: 14px;
            }
    
            .case-study-grid {
                gap: 20px;
            }
    
            .case-image {
                height: 180px;
            }
    
            .case-content {
                padding: 20px 15px;
            }
    
            .case-title {
                font-size: 14px;
            }
    
            .btn-view-all {
                padding: 15px 30px;
                font-size: 12px;
            }
        }


        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 4rem 0;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }


        /* Contact us Social Media Icons */
        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 18px;
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-icon.twitter { background-color: #1DA1F2; }
        .social-icon.facebook { background-color: #3b5998; }
        .social-icon.instagram { background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5); }
        .social-icon.linkedin { background-color: #0077b5; }

        .social-icon:hover {
            transform: scale(1.1);
            opacity: 0.85;
        }


        /* Partner Section */
        .partners-section {
            background-color: var(--white);
            padding: 5rem 0;
            position: relative;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 1px;
        }

        .section-subtitle {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem 2rem;
            margin-top: 4rem;
            align-items: center;
            justify-items: center;
        }

        .partner-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            width: 100%;
            max-width: 280px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
            overflow: hidden;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .partner-card:hover::before {
            left: 100%;
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: var(--primary-color);
        }

        .partner-logo {
            max-width: 160px;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            filter: grayscale(0.3) opacity(0.8);
        }

        .partner-card:hover .partner-logo {
            transform: scale(1.05);
            filter: grayscale(0) opacity(1);
        }

        
        @media (max-width: 768px) {
            .partners-section {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .section-subtitle {
                font-size: 2rem;
            }

            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 2rem 1rem;
            }

            .partner-card {
                padding: 1.5rem;
                height: 100px;
            }

            .partner-logo {
                max-width: 140px;
                max-height: 60px;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                font-size: 1.75rem;
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .partner-card {
                max-width: 100%;
            }
        }

        /* Animation for loading */
        .partner-card {
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease forwards;
        }

        .partner-card:nth-child(1) { animation-delay: 0.1s; }
        .partner-card:nth-child(2) { animation-delay: 0.2s; }
        .partner-card:nth-child(3) { animation-delay: 0.3s; }
        .partner-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Footer Section */

        .footer-nexviyo-footer {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.footer-nexviyo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
}

.footer-nexviyo-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' opacity='0.08'%3E%3C!-- North America dots --%3E%3Ccircle cx='120' cy='80' r='1.5'/%3E%3Ccircle cx='140' cy='85' r='1'/%3E%3Ccircle cx='160' cy='90' r='1'/%3E%3Ccircle cx='180' cy='95' r='1'/%3E%3Ccircle cx='200' cy='100' r='1.5'/%3E%3Ccircle cx='220' cy='105' r='1'/%3E%3Ccircle cx='240' cy='110' r='1'/%3E%3Ccircle cx='130' cy='100' r='1'/%3E%3Ccircle cx='150' cy='105' r='1'/%3E%3Ccircle cx='170' cy='110' r='1'/%3E%3Ccircle cx='190' cy='115' r='1'/%3E%3Ccircle cx='210' cy='120' r='1'/%3E%3Ccircle cx='125' cy='120' r='1'/%3E%3Ccircle cx='145' cy='125' r='1'/%3E%3Ccircle cx='165' cy='130' r='1'/%3E%3Ccircle cx='185' cy='135' r='1'/%3E%3C!-- South America dots --%3E%3Ccircle cx='180' cy='200' r='1'/%3E%3Ccircle cx='190' cy='210' r='1'/%3E%3Ccircle cx='200' cy='220' r='1'/%3E%3Ccircle cx='210' cy='230' r='1'/%3E%3Ccircle cx='220' cy='240' r='1.5'/%3E%3Ccircle cx='230' cy='250' r='1'/%3E%3Ccircle cx='240' cy='260' r='1'/%3E%3Ccircle cx='195' cy='230' r='1'/%3E%3Ccircle cx='205' cy='240' r='1'/%3E%3Ccircle cx='215' cy='250' r='1'/%3E%3Ccircle cx='225' cy='260' r='1'/%3E%3C!-- Europe dots --%3E%3Ccircle cx='420' cy='70' r='1'/%3E%3Ccircle cx='435' cy='75' r='1'/%3E%3Ccircle cx='450' cy='80' r='1.5'/%3E%3Ccircle cx='465' cy='85' r='1'/%3E%3Ccircle cx='480' cy='90' r='1'/%3E%3Ccircle cx='495' cy='95' r='1'/%3E%3Ccircle cx='430' cy='95' r='1'/%3E%3Ccircle cx='445' cy='100' r='1'/%3E%3Ccircle cx='460' cy='105' r='1'/%3E%3Ccircle cx='475' cy='110' r='1'/%3E%3C!-- Africa dots --%3E%3Ccircle cx='450' cy='130' r='1'/%3E%3Ccircle cx='460' cy='140' r='1'/%3E%3Ccircle cx='470' cy='150' r='1.5'/%3E%3Ccircle cx='480' cy='160' r='1'/%3E%3Ccircle cx='490' cy='170' r='1'/%3E%3Ccircle cx='500' cy='180' r='1'/%3E%3Ccircle cx='510' cy='190' r='1'/%3E%3Ccircle cx='520' cy='200' r='1'/%3E%3Ccircle cx='465' cy='170' r='1'/%3E%3Ccircle cx='475' cy='180' r='1'/%3E%3Ccircle cx='485' cy='190' r='1'/%3E%3Ccircle cx='495' cy='200' r='1'/%3E%3Ccircle cx='505' cy='210' r='1'/%3E%3C!-- Asia dots --%3E%3Ccircle cx='600' cy='60' r='1'/%3E%3Ccircle cx='620' cy='65' r='1'/%3E%3Ccircle cx='640' cy='70' r='1.5'/%3E%3Ccircle cx='660' cy='75' r='1'/%3E%3Ccircle cx='680' cy='80' r='1'/%3E%3Ccircle cx='700' cy='85' r='1'/%3E%3Ccircle cx='720' cy='90' r='1'/%3E%3Ccircle cx='740' cy='95' r='1'/%3E%3Ccircle cx='760' cy='100' r='1.5'/%3E%3Ccircle cx='610' cy='90' r='1'/%3E%3Ccircle cx='630' cy='95' r='1'/%3E%3Ccircle cx='650' cy='100' r='1'/%3E%3Ccircle cx='670' cy='105' r='1'/%3E%3Ccircle cx='690' cy='110' r='1'/%3E%3Ccircle cx='710' cy='115' r='1'/%3E%3Ccircle cx='730' cy='120' r='1'/%3E%3Ccircle cx='615' cy='120' r='1'/%3E%3Ccircle cx='635' cy='125' r='1'/%3E%3Ccircle cx='655' cy='130' r='1'/%3E%3Ccircle cx='675' cy='135' r='1'/%3E%3Ccircle cx='695' cy='140' r='1'/%3E%3C!-- Australia dots --%3E%3Ccircle cx='720' cy='240' r='1'/%3E%3Ccircle cx='735' cy='245' r='1'/%3E%3Ccircle cx='750' cy='250' r='1.5'/%3E%3Ccircle cx='765' cy='255' r='1'/%3E%3Ccircle cx='780' cy='260' r='1'/%3E%3Ccircle cx='730' cy='260' r='1'/%3E%3Ccircle cx='745' cy='265' r='1'/%3E%3Ccircle cx='760' cy='270' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.footer-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    color: #0a0f1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 22px;
    font-weight: bold;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.footer-company-tagline {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.footer-contact-info p {
    margin-bottom: 8px;
}

.footer-phone.footer-primary {
    color: #ef4444;
    font-weight: 600;
    font-size: 16px;
}

.footer-phone.footer-secondary {
    color: #ef4444;
    font-weight: 600;
    font-size: 16px;
}

.footer-email {
    color: #94a3b8;
    font-size: 14px;
}

.footer-footer-links {
    list-style: none;
}

.footer-footer-links li {
    margin-bottom: 12px;
}

.footer-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-footer-links a:hover {
    color: #ffffff;
}

.footer-newsletter-text {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-email-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
}

.footer-email-input::placeholder {
    color: #64748b;
}

.footer-email-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.footer-signup-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.footer-signup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
}

.footer-nexviyo-link {
    color: #ef4444;
    font-weight: 600;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
    }
    
    .footer-signup-btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .footer-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}






.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-height: 700px;
}

/* Contact Info Side */
.contact-info-side {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-info-header p {
    color: #cbd5e1;
    font-size: 1rem;
}

.contact-info-list {
    margin-top: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f1f5f9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    display: block;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: white;
}

/* Social Links */
.social-links {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Decorative Elements */
.contact-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 100px;
    left: -75px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -30px;
}

/* Contact Form Side */
.contact-form-side {
    padding: 50px 40px;
    background: white;
}

.contact-form {
    height: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.radio-option:hover {
    background: #f8fafc;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #3b82f6;
    background: #3b82f6;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.success-message h3 {
    color: #10b981;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.success-message p {
    color: #64748b;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        padding: 40px 30px;
    }
    
    .contact-form-side {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
}



/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.scroll-to-top-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}



        /* Responsive Design - Mobile First Approach */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 15px;
            }
            
            .container {
                padding: 0 15px;
            }

            .slide-content {
                padding: 0 15px;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .slide-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
                padding: 40px 15px;
            }

            .slide-text {
                order: 1;
            }

            .slide-image {
                order: 2;
            }

            .slider-arrow {
                display: none;
            }

            .about-section,
            .services-section,
            .contact-section {
                padding: 80px 0;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }

            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }

            .header {
                padding: 10px 0;
            }

            .nav-container {
                padding: 0 15px;
            }

            .logo-img {
                height: 40px;
            }


            .nav-menu:active {
                display: flex;
            }


            /* Mobile Menu Adjustments for smaller screens */
            .mobile-menu {
                width: 280px;
                right: -280px;
            }

            .hero-slider {
                min-height: 80vh;
            }

            .slide-content {
                padding: 20px 15px;
                gap: 30px;
            }

            .slide-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                padding: 12px 20px;
            }

            .slider-nav {
                bottom: 20px;
            }

            .about-section,
            .services-section,
            .contact-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .footer {
                padding: 60px 0 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }

            .signup-btn {
                width: 100%;
                padding: 16px;
            }

            .scroll-to-top-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }

            .nav-container {
                padding: 0 10px;
            }

            .mobile-menu {
                width: 280px;
                right: -280px;
            }

            /* Mobile Menu for very small screens */
            .mobile-menu {
                width: 260px;
                right: -260px;
            }

            .mobile-menu ul li a {
                font-size: 16px;
                padding: 18px 25px;
            }

            .hero-slider {
                min-height: 70vh;
            }

            .slide-content {
                padding: 15px 10px;
                gap: 25px;
            }

            .slide-badge {
                font-size: 12px;
                padding: 8px 16px;
            }

            .container {
                padding: 0 10px;
            }

            .about-section,
            .services-section,
            .contact-section {
                padding: 50px 0;
            }

            .service-card {
                padding: 25px 15px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .service-title {
                font-size: 1.25rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stat-item h3 {
                font-size: 1.75rem;
            }

            .contact-form {
                padding: 25px 15px;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px;
                font-size: 16px;
            }

            .footer {
                padding: 50px 0 25px;
            }

            .footer-logo-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-right: 10px;
            }

            .footer-logo-text {
                font-size: 18px;
            }

            .social-links {
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .slider-dot {
                width: 12px;
                height: 12px;
            }
        }

        /* Ultra small screens */
        @media (max-width: 360px) {
            .mobile-menu {
                width: 240px;
                right: -240px;
            }

            .slide-title {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .btn {
                font-size: 14px;
                padding: 10px 16px;
            }

            .service-card {
                padding: 20px 10px;
            }
        }

        /* High DPI screens */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo-circle,
            .service-icon,
            .footer-logo-icon {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
        }

        /* Landscape orientation on mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-slider {
                min-height: 100vh;
            }

            .slide-content {
                padding: 20px 15px;
            }

            .slide-title {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .slide-subtitle {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }

            .slide-buttons {
                gap: 10px;
            }

            .btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .slider-nav {
                bottom: 15px;
            }
        }

        /* Print styles */
        @media print {
            .header,
            .mobile-menu-toggle,
            .mobile-menu,
            .mobile-menu-overlay,
            .scroll-to-top-btn,
            .slider-nav,
            .slider-arrow {
                display: none !important;
            }

            .hero-section {
                color: black;
                background: white;
            }

            .section-title {
                color: black;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .slide {
                transition: none !important;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .service-card:hover,
            .btn:hover,
            .social-link:hover {
                transform: none;
            }

            .btn,
            .submit-btn,
            .signup-btn {
                min-height: 44px;
            }

            .slider-dot {
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .slider-dot::before {
                content: '';
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.4);
            }

            .slider-dot.active::before {
                background: white;
            }
        }