        /* CSS Reset & Base Styles */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-blue: #2c3e50;
            --light-blue: #3498db;
            --red: #e74c3c;
            --white: #ffffff;
            --light-gray: #ecf0f1;
            --dark-gray: #34495e;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--dark-blue);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
       .utils {
        display: inline-block;
        padding: 10px 15px;
        background-color: #28a745;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
      }



        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--red);
            color: var(--white);
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10000;
            border-radius: 0 0 4px 0;
            font-weight: 600;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--light-blue);
            outline-offset: 2px;
        }

        /* Logo */
        .logo {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 180px;
            height: auto;
            transition: var(--transition);
        }

        .logo img {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        }

        /* Navigation - Desktop (Vertical Right) */
        .nav-container {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .nav-container a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 20px;
            background: rgba(52, 152, 219, 0.9);
            border-radius: 8px;
            transition: var(--transition);
            text-align: center;
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
        }

        .nav-container a:hover,
        .nav-container a:focus {
            background: var(--red);
            transform: translateX(-5px);
            border-color: var(--white);
            outline: none;
        }

        .nav-container a:focus {
            outline: 3px solid var(--light-blue);
            outline-offset: 3px;
        }

        /* Navigation - Mobile (Bottom Horizontal) */
        @media (max-width: 768px) {
            .logo {
                width: 120px;
                top: 10px;
            }

            .nav-container {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                top: auto;
                transform: none;
                flex-direction: row;
                justify-content: space-around;
                background: rgba(44, 62, 80, 0.98);
                padding: 10px 5px;
                gap: 5px;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            }

            .nav-container a {
                font-size: 0.75rem;
                padding: 10px 8px;
                flex: 1;
                border-radius: 6px;
            }

            .nav-container a:hover,
            .nav-container a:focus {
                transform: translateY(-3px);
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-blue) 0%, #1a252f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
        }

        /* Animated SVG Grid Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            margin-bottom: 40px;
            font-weight: 300;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            border: 3px solid transparent;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            }
            50% {
                box-shadow: 0 8px 35px rgba(231, 76, 60, 0.7);
            }
        }

        .cta-button:hover,
        .cta-button:focus {
            background: var(--light-blue);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
            border-color: var(--white);
            outline: none;
        }

        .cta-button:focus {
            outline: 3px solid var(--white);
            outline-offset: 4px;
        }

        /* Pulsing Lights Animation */
        .pulsing-light {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .light-1 {
            width: 300px;
            height: 300px;
            background: var(--light-blue);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .light-2 {
            width: 250px;
            height: 250px;
            background: var(--red);
            bottom: 15%;
            right: 15%;
            animation-delay: 2s;
        }

        .light-3 {
            width: 200px;
            height: 200px;
            background: var(--light-blue);
            top: 60%;
            left: 70%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(30px, -30px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* Section Styles */
        section {
            padding: 100px 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-blue);
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--red));
            border-radius: 2px;
        }

        /* Services Section */
        #services {
            background: var(--light-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border: 3px solid transparent;
            text-align: center;
        }

        .service-card:hover,
        .service-card:focus-within {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(52, 152, 219, 0.3);
            border-color: var(--light-blue);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .service-card p {
            color: var(--dark-gray);
            line-height: 1.8;
        }

        /* Tools Section */
        #tools {
            background: var(--white);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .tool-card {
            background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
            padding: 35px 25px;
            border-radius: 16px;
            color: var(--white);
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            text-align: center;
            border: 3px solid transparent;
        }

        .tool-card:hover,
        .tool-card:focus-within {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(231, 76, 60, 0.4);
            border-color: var(--red);
        }

        .tool-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .tool-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .tool-card p {
            opacity: 0.95;
            line-height: 1.7;
        }

        /* Tutorials Section */
        #tutorials {
            background: var(--light-gray);
        }

        .tutorials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .tutorial-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border: 3px solid transparent;
        }

        .tutorial-card:hover,
        .tutorial-card:focus-within {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
            border-color: var(--red);
        }

        .tutorial-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
        }

        .tutorial-content {
            padding: 30px;
        }

        .tutorial-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .tutorial-content p {
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .tutorial-link {
            display: inline-block;
            color: var(--light-blue);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .tutorial-link:hover,
        .tutorial-link:focus {
            color: var(--red);
            border-bottom-color: var(--red);
            outline: none;
        }

        .tutorial-link:focus {
            outline: 2px solid var(--light-blue);
            outline-offset: 4px;
        }

        /* Contact Section */
        #contact {
            background: var(--dark-blue);
            color: var(--white);
        }

        #contact .section-title {
            color: var(--white);
        }

        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .contact-button {
            display: inline-block;
            padding: 16px 40px;
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            border: 3px solid transparent;
        }

        .contact-button:hover,
        .contact-button:focus {
            background: var(--light-blue);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
            border-color: var(--white);
            outline: none;
        }

        .contact-button:focus {
            outline: 3px solid var(--white);
            outline-offset: 4px;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: var(--white);
            padding: 50px 20px 30px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            color: var(--light-blue);
            border-bottom-color: var(--light-blue);
            outline: none;
        }

        .footer-links a:focus {
            outline: 2px solid var(--light-blue);
            outline-offset: 4px;
        }

        .footer-text {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            section {
                padding: 60px 20px 80px;
            }

            .services-grid,
            .tools-grid,
            .tutorials-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }
        }

        /* Focus Styles for Accessibility */
        *:focus {
            outline: 3px solid var(--light-blue);
            outline-offset: 2px;
        }

        a:focus,
        button:focus {
            outline: 3px solid var(--red);
            outline-offset: 3px;
        }
