
    /* CRITICAL MOBILE-FIRST CSS FIXES */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
        line-height: 1.6;
        /* PREVENT HORIZONTAL SCROLL */
        overflow-x: hidden;
        /* Performance optimizations */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #0f172a;
        background-color: #ffffff;
        /* PREVENT HORIZONTAL SCROLL */
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* CONVERSION OPTIMIZATION STYLES */
    .emergency-cta {
        background: linear-gradient(45deg, #ff0000, #ff4444) !important;
        animation: pulse-glow 2s infinite;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
    }

    @keyframes pulse-glow {
        0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
        50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 0, 0, 0.6); }
    }

    .urgency-banner {
        background: linear-gradient(90deg, #ffd700, #ffed4e);
        padding: 12px 20px;
        margin-top: 30px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        animation: slide-in 3s ease-out;
    }

    .urgency-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .urgency-content i {
        color: #ff6b35;
        animation: spin 2s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .urgency-btn {
        background: #ff0000;
        color: white;
        padding: 8px 16px;
        border-radius: 15px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        animation: bounce 1s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-5px); }
        60% { transform: translateY(-3px); }
    }

    @keyframes slide-in {
        0% { opacity: 0; transform: translateY(50px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* CONTAINER FIX - CRITICAL */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        /* ENSURE NO OVERFLOW */
        overflow-x: hidden;
    }

    /* HEADER FIXES */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #e2e8f0;
        z-index: 1030;
        transition: all 0.3s ease;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 12px 16px;
        /* PREVENT OVERFLOW */
        overflow: hidden;
    }

    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .logo-image {
        height: 50px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    /* MOBILE NAVIGATION */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 16px;
        transition: left 0.3s ease;
        list-style: none;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 8px 0;
    }

    .nav-link {
        color: #0f172a;
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .nav-phone span {
        display: none;
    }

    .nav-cta {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1001;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: #0f172a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* HERO SECTION - MOBILE FIRST */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 80px 0 0 0;
        /* PREVENT OVERFLOW */
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
        padding: 32px 16px;
        text-align: center;
        color: white;
        /* PREVENT OVERFLOW */
        overflow: hidden;
    }

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

    .hero-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(2rem, 8vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 24px;
        /* PREVENT OVERFLOW */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gradient-text {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
        opacity: 0.9;
        /* PREVENT OVERFLOW */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* STATS - MOBILE OPTIMIZED */
    .hero-stats {
        display: flex;
        justify-content: space-around;
        gap: 16px;
        margin: 32px 0;
        flex-wrap: wrap;
    }

    

    .stat-number {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #fbbf24;
        line-height: 1;
    }

    .stat-label {
        font-size: 12px;
        opacity: 0.8;
        margin-top: 4px;
    }

    /* BUTTONS - MOBILE OPTIMIZED */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
        align-items: center;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 32px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        /* MOBILE FULL WIDTH */
        width: 100%;
        max-width: 280px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #1e293b;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    /* FEATURES BADGES */
    .hero-features {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .feature-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 6px 12px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 12px;
        font-weight: 500;
    }

    /* SECTIONS */
    section {
        padding: 60px 0;
        width: 100%;
        /* PREVENT OVERFLOW */
        overflow-x: hidden;
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        color: #0f172a;
        /* PREVENT OVERFLOW */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-subtitle {
        font-size: 16px;
        color: #64748b;
        line-height: 1.6;
        /* PREVENT OVERFLOW */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* ABOUT SECTION */
    .about {
        background: #f8fafc;
    }

    .about-content {
        text-align: center;
        padding: 0 16px;
    }

    .about-image-container {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto 32px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .about-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .feature-item {
        background: white;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
        text-align: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin: 0 auto 16px;
    }

    .feature-content h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #0f172a;
    }

    .feature-content p {
        color: #64748b;
        line-height: 1.6;
        font-size: 14px;
    }

    /* SERVICES SECTION */
    .services {
        background: white;
    }

    .tab-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .tab-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border: 2px solid #e2e8f0;
        background: white;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #0f172a;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .tab-btn:hover,
    .tab-btn.active {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        border-color: #3b82f6;
    }

    .service-showcase {
        padding: 0 16px;
        text-align: center;
    }

    .service-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-details h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #0f172a;
    }

    .service-details p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .feature-card {
        padding: 20px 16px;
        background: #f8fafc;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .feature-card:hover {
        background: white;
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .feature-card i {
        font-size: 24px;
        color: #3b82f6;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        font-weight: 600;
        margin-bottom: 8px;
        color: #0f172a;
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
        color: #64748b;
        margin: 0;
    }

    /* PROJECTS SECTION */
    .projects {
        background: #f8fafc;
    }

    .project-filters {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .filter-btn {
        padding: 12px 24px;
        border: 2px solid #e2e8f0;
        background: white;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #0f172a;
        width: 100%;
        max-width: 200px;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        border-color: #3b82f6;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .project-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .project-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-info {
        padding: 20px 16px;
    }

    .project-info h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #0f172a;
    }

    .project-info p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 16px;
    }

    .project-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .tag {
        padding: 4px 12px;
        background: #f1f5f9;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        color: #3b82f6;
    }

    /* TESTIMONIALS SECTION */
    .testimonials {
        background: white;
    }

    .testimonials-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .testimonial-card {
        background: #f8fafc;
        padding: 32px 24px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.6s ease;
        display: none;
    }

    .testimonial-card.active {
        display: block;
    }

    .testimonial-card:hover {
        background: white;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: translateY(-8px);
    }

    .testimonial-rating {
        margin-bottom: 24px;
    }

    .testimonial-rating i {
        color: #fbbf24;
        font-size: 20px;
        margin: 0 2px;
    }

    .testimonial-text {
        font-size: 16px;
        font-style: italic;
        line-height: 1.6;
        color: #64748b;
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-author {
        display: flex;
        justify-content: center;
    }

    .author-info {
        text-align: center;
    }

    .author-info h4 {
        font-weight: 600;
        margin-bottom: 8px;
        color: #0f172a;
        font-size: 18px;
    }

    .author-info p {
        color: #64748b;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .author-location {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #3b82f6;
        font-size: 14px;
    }

    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 32px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
        border: none;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-dot.active {
        background: #3b82f6;
        transform: scale(1.2);
    }

    .nav-dot:hover {
        background: #94a3b8;
        transform: scale(1.1);
    }

    /* MAP SECTION */
    .map-section {
        margin-top: 48px;
    }

    .map-container {
        position: relative;
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 16px;
    }

    .map-overlay {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .map-info h4 {
        font-weight: 600;
        margin-bottom: 8px;
        color: #0f172a;
        font-size: 16px;
    }

    .map-info p {
        color: #64748b;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .map-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .map-link:hover {
        color: #1e40af;
        transform: translateX(5px);
    }

    .info-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

    .info-link:hover {
        color: #1e40af;
        transform: translateX(5px);
    }

    /* GALLERY MODAL */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 10000;
        animation: modalFadeIn 0.3s ease-out;
    }

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        animation: modalSlideIn 0.3s ease-out;
    }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-close:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: scale(1.1);
    }

    .modal-body {
        display: flex;
        flex-direction: column;
    }

    .modal-body img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 70vh;
        object-fit: contain;
    }

    .modal-info {
        padding: 24px;
        text-align: center;
    }

    .modal-info h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .modal-info p {
        color: #64748b;
        margin: 0;
        font-size: 14px;
    }

    @keyframes modalFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes modalSlideIn {
        from { 
            opacity: 0; 
            transform: scale(0.8) translateY(20px); 
        }
        to { 
            opacity: 1; 
            transform: scale(1) translateY(0); 
        }
    }

    /* PROJECT CARD GALLERY FUNCTIONALITY */
    .project-card {
        cursor: pointer;
    }

    .project-image {
        position: relative;
        overflow: hidden;
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
        color: white;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-overlay .project-info {
        padding: 0;
        color: white;
    }

    .project-overlay .project-info h4 {
        color: white;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .project-overlay .project-info p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        margin-bottom: 16px;
    }

    .project-overlay .project-tags .tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }

    .project-actions {
        text-align: center;
    }

    .btn-view {
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        background: #fbbf24;
        color: #1e293b;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .btn-view:hover {
        transform: scale(1.1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* RESPONSIVE UPDATES FOR NEW SECTIONS */
    @media (min-width: 768px) {
        .testimonials-container {
            padding: 0 32px;
        }

        .testimonial-card {
            padding: 40px 32px;
        }

        .testimonial-text {
            font-size: 18px;
        }

        .author-info {
            text-align: left;
        }

        .author-location {
            justify-content: flex-start;
        }

        .map-container {
            height: 400px;
        }

        .map-overlay {
            top: 24px;
            left: 24px;
            padding: 20px;
        }
    }

    @media (min-width: 1024px) {
        .map-container {
            height: 450px;
        }
    }

    .contact-content {
        padding: 0 16px;
    }

    .info-card {
        background: white;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
        text-align: center;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin: 0 auto 16px;
    }

    .info-content h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .info-content p {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .info-content a {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 500;
    }

    /* CONTACT FORM */
    .contact-form-section {
        background: white;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-top: 32px;
    }

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

    .form-header h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .form-header p {
        color: #64748b;
        font-size: 14px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #0f172a;
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #ffffff;
        color: #0f172a;
        width: 100%;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-submit {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* FOOTER */
    .footer {
        background: #0f172a;
        color: white;
        padding: 48px 0 24px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
        text-align: center;
    }

    .footer-section h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
        color: white;
    }

    .footer-logo-image {
        height: 60px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
        margin-bottom: 16px;
    }

    .company-description {
        color: #cbd5e1;
        line-height: 1.6;
        margin-bottom: 16px;
        font-size: 14px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: #1e293b;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

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

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid #1e293b;
        padding: 24px 16px;
        text-align: center;
        margin-top: 32px;
    }

    .copyright p {
        color: #94a3b8;
        margin: 0;
        font-size: 14px;
    }

    /* WHATSAPP FLOATING BUTTON CONTAINER */
    .whatsapp-container {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1001;
    }

    /* WHATSAPP FLOATING BUTTON */
    .whatsapp-float {
        position: relative;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 28px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        animation: whatsappBounce 10s infinite;
        overflow: hidden;
    }

    .whatsapp-float:hover {
        transform: translateY(-8px) scale(1.15);
        box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
        animation: none;
    }

    .whatsapp-float:active {
        transform: translateY(-5px) scale(1.05);
    }

    /* RIPPLE EFFECT */
    .whatsapp-ripple {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid rgba(37, 211, 102, 0.6);
        border-radius: 50%;
        animation: whatsappRipple 8s infinite;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .whatsapp-ripple.ripple-delay {
        animation-delay: 1s;
        border-color: rgba(37, 211, 102, 0.4);
    }

    /* WHATSAPP POPUP */
    .whatsapp-popup {
        position: absolute;
        bottom: 70px;
        right: 0;
        background: white;
        border-radius: 16px;
        padding: 16px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.8);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(37, 211, 102, 0.2);
        animation: popupShow 4s infinite 2s;
    }

    .whatsapp-container:hover .whatsapp-popup {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        animation: none;
    }

    .popup-content {
        position: relative;
    }

    .popup-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        color: #25d366;
        font-weight: 600;
        font-size: 16px;
    }

    .popup-header i {
        font-size: 20px;
        animation: popupIconBounce 2s infinite;
    }

    .whatsapp-popup p {
        color: #666;
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
    }

    .popup-arrow {
        position: absolute;
        bottom: -8px;
        right: 25px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
    }

    .popup-arrow::before {
        content: '';
        position: absolute;
        bottom: 1px;
        left: -9px;
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 9px solid rgba(37, 211, 102, 0.2);
    }

    /* ANIMATIONS */
    @keyframes whatsappBounce {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-5px) scale(1.05);
        }
    }

    @keyframes whatsappRipple {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

    @keyframes popupShow {
        0%, 85% {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.8);
        }
        90%, 95% {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        100% {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.8);
        }
    }

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

    /* BACK TO TOP */
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* UTILITY CLASSES */
    .hidden {
        display: none;
    }

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

    .mb-0 { margin-bottom: 0; }
    .mb-1 { margin-bottom: 8px; }
    .mb-2 { margin-bottom: 16px; }
    .mb-3 { margin-bottom: 24px; }
    .mb-4 { margin-bottom: 32px; }

    .mt-0 { margin-top: 0; }
    .mt-1 { margin-top: 8px; }
    .mt-2 { margin-top: 16px; }
    .mt-3 { margin-top: 24px; }
    .mt-4 { margin-top: 32px; }

    /* RESPONSIVE BREAKPOINTS */
    @media (min-width: 480px) {
        .container {
            padding: 0 24px;
        }

        .hero-container {
            padding: 40px 24px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 3.5rem);
        }

        .hero-buttons {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            width: auto;
            min-width: 200px;
        }

        .hero-stats {
            justify-content: center;
            max-width: 400px;
            margin: 32px auto;
        }

        .stat-number {
            font-size: 32px;
        }

        .stat-label {
            font-size: 14px;
        }
    }

    @media (min-width: 768px) {
        .container {
            padding: 0 32px;
            max-width: 1200px;
        }

        .nav-container {
            padding: 16px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-menu {
            position: static;
            height: auto;
            width: auto;
            left: auto;
            top: auto;
            background: transparent;
            flex-direction: row;
            padding: 0;
            gap: 40px;
            display: flex;
            align-items: center;
            margin: 0 auto;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-link {
            font-size: 16px;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: none;
            position: relative;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #3b82f6;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 8px;
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-phone:hover {
            background: rgba(59, 130, 246, 0.15);
            transform: translateY(-1px);
        }

        .nav-phone span {
            display: inline;
            font-size: 14px;
        }

        .nav-cta {
            padding: 12px 24px;
            font-weight: 600;
            box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.4);
        }

        .nav-actions {
            gap: 16px;
        }

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

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            text-align: left;
            padding: 60px 32px;
        }

        .hero-visual {
            order: 2;
        }

        .hero-content {
            order: 1;
        }

        .hero-stats {
            justify-content: flex-start;
            margin: 40px 0;
        }

        .hero-buttons {
            flex-direction: row;
            justify-content: flex-start;
        }

        .hero-features {
            justify-content: flex-start;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            text-align: left;
        }

        .about-image-container {
            max-width: none;
            height: 400px;
            margin-bottom: 0;
        }

        .service-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            text-align: left;
        }

        .service-image {
            height: 300px;
        }

        .tab-buttons {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab-btn {
            width: auto;
            min-width: 180px;
        }

        .feature-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .project-filters {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            width: auto;
            min-width: 150px;
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-form-section {
            margin-top: 0;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            text-align: left;
        }
    }

    @media (min-width: 1024px) {
        .container {
            max-width: 1400px;
            padding: 0 40px;
        }

        .nav-container {
            padding: 18px 40px;
            max-width: 1400px;
        }

        .nav-menu {
            gap: 48px;
        }

        .nav-link {
            font-size: 16px;
            font-weight: 500;
        }

        .nav-phone {
            padding: 12px 20px;
            font-size: 15px;
        }

        .nav-cta {
            padding: 14px 28px;
            font-size: 15px;
        }

        .logo-image {
            height: 50px;
        }

        .hero-title {
            font-size: clamp(3rem, 5vw, 4rem);
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .section-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
        }

        .feature-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .projects-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .footer-content {
            grid-template-columns: 2fr 1fr 1fr 1fr;
        }
    }

    /* ANIMATION KEYFRAMES */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    /* MODERN ANIMATIONS */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes slideUp {
        from { 
            opacity: 0; 
            transform: translateY(50px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }

    @keyframes fadeInScale {
        from { 
            opacity: 0; 
            transform: scale(0.9); 
        }
        to { 
            opacity: 1; 
            transform: scale(1); 
        }
    }

    @keyframes bounceIn {
        0% { 
            opacity: 0; 
            transform: scale(0.3); 
        }
        50% { 
            opacity: 1; 
            transform: scale(1.05); 
        }
        70% { transform: scale(0.9); }
        100% { transform: scale(1); }
    }

    @keyframes shine {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    @keyframes glowing {
        0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
        50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6); }
    }

    @keyframes tilt {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(1deg); }
        75% { transform: rotate(-1deg); }
    }

    @keyframes particleFloat {
        0% { 
            transform: translateY(100vh) translateX(0px); 
            opacity: 0; 
        }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { 
            transform: translateY(-100px) translateX(50px); 
            opacity: 0; 
        }
    }

    /* MODERN HERO STYLES */
    .hero {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Ensure Font Awesome icons display correctly */
    .fa, .fas, .far, .fal, .fad, .fab {
        font-family: 'Font Awesome 6 Free'; /* Default for solid/regular */
        font-weight: 900; /* Default for solid */
    }

    .far {
        font-weight: 400; /* For regular icons */
    }

    .fab {
        font-family: 'Font Awesome 6 Brands'; /* For brand icons */
        font-weight: 400; /* Brand icons typically use 400 */
    }

    .hero-container {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

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

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: particleFloat linear infinite;
    }

    /* GLASS MORPHISM EFFECTS */
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .glass-badge {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        padding: 8px 16px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 4px;
    }

    .glass-badge span {
        color: white;
        font-weight: 500;
        font-size: 14px;
    }

    .glass-badge i {
        color: #10b981;
        font-size: 16px;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 32px;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin: 40px 0;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 32px 0;
    }

    /* MODERN BUTTON STYLES */
    .btn-modern {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        border: none;
        border-radius: 12px;
        padding: 16px 32px;
        font-weight: 600;
        text-transform: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }

    .btn-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    }

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

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

    .btn-glass {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
    }

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* ANIMATION CLASSES */
    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

    .animate-slide-up {
        animation: slideUp 0.8s ease-out;
    }

    .animate-fade-in {
        animation: fadeInScale 1s ease-out 0.3s both;
    }

    .animate-bounce-in {
        animation: bounceIn 0.8s ease-out 0.6s both;
    }

    .animate-slide-in {
        animation: slideUp 0.8s ease-out 0.8s both;
    }

    .animate-counter {
        animation: fadeInScale 1s ease-out 0.4s both;
    }

    .animate-float-up {
        animation: slideUp 1s ease-out 0.5s both;
    }

    .animate-bounce {
        animation: float 2s ease-in-out infinite;
    }

    /* HOVER EFFECTS */
    .hover-lift:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }

    .hover-tilt {
        transition: transform 0.3s ease;
    }

    .hover-tilt:hover {
        transform: rotate(2deg) scale(1.05);
    }

    .hover-glow:hover {
        animation: glowing 2s ease-in-out infinite;
    }

    .pulse-icon {
        animation: pulse 2s ease-in-out infinite;
    }

    /* MODERN STAT CARDS */
    .hero-stats .stat-item {
        position: relative;
        text-align: center;
        padding: 24px 20px;
        margin: 8px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
        font-size: 24px;
        color: #0ea5e9;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 32px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
        color: #475569;
        font-weight: 500;
    }

    /* FLOATING IMAGES */
    .floating-images {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .floating-img {
        position: absolute;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .floating-img.img-1 {
        width: 200px;
        height: 150px;
        top: 20px;
        left: 20px;
        animation: float 4s ease-in-out infinite;
    }

    .floating-img.img-2 {
        width: 180px;
        height: 120px;
        top: 80px;
        right: 40px;
        animation: float 4s ease-in-out infinite 1s;
    }

    .floating-img.img-3 {
        width: 160px;
        height: 120px;
        bottom: 40px;
        left: 60px;
        animation: float 4s ease-in-out infinite 2s;
    }

    /* SERVICE CARDS */
    .service-cards {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .service-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        color: #1f2937;
        transition: all 0.3s ease;
        pointer-events: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .service-card .card-icon {
        font-size: 28px;
        color: #3b82f6;
        margin-bottom: 12px;
    }

    .service-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 600;
        color: #1f2937;
    }

    .service-card p {
        font-size: 12px;
        color: #6b7280;
        margin: 0;
    }

    .card-1 {
        top: 40px;
        right: 20px;
        width: 140px;
    }

    .card-2 {
        top: 160px;
        left: 10px;
        width: 140px;
    }

    .card-3 {
        bottom: 20px;
        right: 80px;
        width: 140px;
    }

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

    .service-card:hover .card-shine {
        left: 100%;
    }

    /* SLIDE CONTROLS */
    .slide-controls {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 10;
    }

    .slide-btn {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f2937;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .slide-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.5);
        transform: scale(1.1);
    }

    .slide-indicators {
        display: flex;
        gap: 8px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(59, 130, 246, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #3b82f6;
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    }

    /* GRADIENT TEXT */
    .gradient-text {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .highlight-text {
        color: #f59e0b;
        text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    }

    /* HERO TEXT COLORS */
    .hero-title {
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        font-size: clamp(2.5rem, 6vw, 4rem);
        line-height: 1.1;
        margin-bottom: 24px;
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 600px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        padding: 8px 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge span {
        color: white;
        font-weight: 500;
        font-size: 14px;
    }

    .hero-badge i {
        color: #f59e0b;
    }

    /* MODERN PROJECT CARDS */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .project-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(59, 130, 246, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
        border-color: rgba(59, 130, 246, 0.5);
    }

    .project-image {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.1);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .btn-view {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        padding: 12px 24px;
        color: white;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-view:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .project-info {
        padding: 24px;
        color: #1f2937;
    }

    .project-info h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1f2937;
    }

    .project-info p {
        color: #6b7280;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .project-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .project-tags .tag {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 12px;
        color: #06b6d4;
        font-weight: 500;
    }

    /* MODERN FILTER BUTTONS */
    .project-filters {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .filter-btn {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 25px;
        padding: 12px 24px;
        color: #4b5563;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .filter-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.5);
        color: #1f2937;
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        border-color: transparent;
        color: white;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }

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

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

    /* SECTION STYLING */
    .projects {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        position: relative;
        overflow: hidden;
    }

    .projects::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

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

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 25px;
        padding: 8px 16px;
        color: #3b82f6;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .section-subtitle {
        color: #6b7280;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* MOBILE RESPONSIVE STYLES */
    @media (max-width: 768px) {
        /* Mobile Header Fixes */
        .nav-container {
            padding: 12px 16px;
        }

        .nav-phone span {
            display: none !important;
        }

        .nav-cta {
            padding: 8px 12px;
            font-size: 12px;
        }

        /* Hero Section Mobile - Centered */
        .hero {
            min-height: 100vh;
            padding: 0;
        }

        .hero-container {
            flex-direction: column;
            text-align: center;
            padding: 100px 16px 60px;
            gap: 20px;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 70px);
        }

        .hero-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Hero Stats Mobile - Improved */
        .hero-stats {
            flex-direction: column;
            gap: 12px;
            margin: 24px 0;
            padding: 0 16px;
        }

        .hero-stats .stat-item {
            margin: 0;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 24px !important;
            color: #0f172a !important;
        }

        .stat-label {
            font-size: 13px !important;
            color: #475569 !important;
        }

        .stat-icon {
            font-size: 20px !important;
            margin-bottom: 8px !important;
        }

        /* Hero Buttons Mobile - Improved */
        .hero-buttons {
            flex-direction: column;
            gap: 12px;
            width: 100%;
            padding: 0 16px;
        }

        .btn-modern, .btn-glass {
            width: 100%;
            justify-content: center;
            padding: 14px 24px !important;
            font-size: 16px !important;
        }

        /* Hero Features Mobile - Improved */
        .hero-features {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
            padding: 0 16px;
        }

        .glass-badge {
            padding: 6px 12px !important;
            margin: 2px !important;
            font-size: 12px !important;
        }

        .glass-badge span {
            font-size: 12px !important;
        }

        .glass-badge i {
            font-size: 14px !important;
        }

        /* Projects Section Mobile */
        .projects-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .project-card {
            max-width: 100%;
        }

        .project-image {
            height: 200px;
        }

        .project-filters {
            gap: 8px;
            margin-top: 30px;
        }

        .filter-btn {
            padding: 10px 16px;
            font-size: 14px;
        }

        /* Slide Controls Mobile */
        .slide-controls {
            bottom: 20px;
            gap: 15px;
        }

        .slide-btn {
            width: 40px;
            height: 40px;
        }

        /* Text Scaling Mobile */
        .hero-title {
            font-size: clamp(2rem, 8vw, 2.5rem) !important;
            line-height: 1.2 !important;
            text-align: center !important;
            margin-bottom: 16px !important;
        }

        .hero-subtitle {
            font-size: 16px !important;
            line-height: 1.5 !important;
            text-align: center !important;
            margin-bottom: 20px !important;
            padding: 0 8px !important;
        }

        .hero-badge {
            margin-bottom: 16px !important;
            align-self: center !important;
        }

        .section-title {
            font-size: clamp(1.8rem, 6vw, 2.2rem);
        }

        .section-subtitle {
            font-size: 16px;
        }

        /* Particles Mobile */
        .hero-particles {
            display: none; /* Hide on mobile for performance */
        }

        /* AOS OVERRIDES */
        [data-aos] {
            pointer-events: none;
        }
        
        [data-aos].aos-animate {
            pointer-events: auto;
        }

        /* Disable complex animations on mobile */
        .animate-float,
        .animate-slide-up,
        .animate-bounce-in,
        .animate-slide-in,
        .animate-counter,
        .animate-float-up,
        .animate-bounce {
            animation: none !important;
        }

        /* Simplify text animations for mobile */
        .animate-fade-in {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }

        /* Fix overlapping text issues */
        .hero-title {
            margin-bottom: 20px;
            text-shadow: none;
        }

        .hero-subtitle {
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-badge {
            margin-bottom: 20px;
            animation: none !important;
        }

        /* Fix slide overlay for better text readability */
        .slide-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        /* Ensure all text is readable on mobile */
        .hero-title,
        .hero-subtitle,
        .hero-badge span {
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Fix scroll indicator on mobile */
        .scroll-indicator span {
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .scroll-mouse {
            border-color: white !important;
        }

        .scroll-wheel {
            background: white !important;
        }

        /* Mobile WhatsApp and Back to Top positioning */
        .whatsapp-container {
            bottom: 70px;
            right: 16px;
        }

        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }

        .whatsapp-popup {
            min-width: 200px;
            bottom: 60px;
            right: -10px;
            padding: 12px 16px;
        }

        .popup-header {
            font-size: 14px;
        }

        .whatsapp-popup p {
            font-size: 13px;
        }

        .popup-arrow {
            right: 20px;
        }

        .back-to-top {
            bottom: 16px;
            right: 16px;
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
    }

    /* TABLET RESPONSIVE STYLES */
    @media (min-width: 769px) and (max-width: 1024px) {
        .hero-container {
            gap: 40px;
        }

        .floating-images {
            height: 350px;
        }

        .floating-img.img-1 {
            width: 180px;
            height: 135px;
        }

        .floating-img.img-2 {
            width: 160px;
            height: 100px;
        }

        .floating-img.img-3 {
            width: 140px;
            height: 100px;
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .hero-stats {
            gap: 20px;
        }

        .stat-item {
            padding: 20px 16px;
        }
    }

    /* CRITICAL: PREVENT ALL HORIZONTAL OVERFLOW */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img, video, iframe, object, embed {
        max-width: 100%;
        height: auto;
    }

    /* ENSURE TEXT DOESN'T OVERFLOW */
    p, h1, h2, h3, h4, h5, h6, span, div, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }