        html {
            scroll-behavior: smooth;
        }

        /* Base styles and animations */
        @keyframes glowing-border {
            0% { box-shadow: 0 0 5px rgba(0, 162, 255, 0.5), 0 0 10px rgba(0, 162, 255, 0.3); }
            50% { box-shadow: 0 0 10px rgba(0, 162, 255, 0.8), 0 0 20px rgba(0, 162, 255, 0.5); }
            100% { box-shadow: 0 0 5px rgba(0, 162, 255, 0.5), 0 0 10px rgba(0, 162, 255, 0.3); }
        }
        @keyframes glowing-card-border {
            0% { border-color: rgba(0, 162, 255, 0.5); }
            50% { border-color: rgba(0, 162, 255, 1); }
            100% { border-color: rgba(0, 162, 255, 0.5); }
        }
        @keyframes glowing-cta-pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(0, 162, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0); }
        }
        @keyframes rotate-background {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* Keyframes for the simple fade-in effect */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0d1117;
            color: #e2e8f0;
            overflow-x: hidden;
        }


        /* Component Styles */
        .bg-primary { background-color: #00a2ff; }
        .text-primary { color: #00a2ff; }
        .border-glowing {
            border: 2px solid transparent;
            animation: glowing-border 2s ease-in-out infinite;
        }
        .btn {
            @apply px-6 py-3 font-semibold rounded-full transition-all duration-300 transform hover:scale-105;
        }
        .btn-primary {
            @apply bg-primary text-white shadow-lg hover:bg-cyan-600;
        }
        .btn-secondary {
            @apply bg-transparent text-primary border border-primary hover:bg-primary hover:text-white;
        }
        
        .feature-card {
            @apply p-8 rounded-xl shadow-lg hover:shadow-2xl transition-all duration-300 transform hover:translate-y-[-5px] text-center;
            background-color: #1f2937;
        }
        .feature-card svg {
            @apply mx-auto; /* Ensures the icon itself is centered */
        }

        .contact-info a {
            @apply text-gray-400 hover:text-primary transition-colors duration-300;
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .text-glow {
            text-shadow: 0 0 5px #00a2ff, 0 0 10px #00a2ff;
        }
        
        .hero-graphic {
            background-image: url(images/introxx.png);
            background-size: contain;
            background-repeat: no-repeat;
            
            background-position: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 162, 255, 0.7);
            min-height: 400px;
        }
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        .fade-in-2 {
            animation: fadeIn 2s ease-in-out;
        }
        .fade-in-3 {
            animation: fadeIn 4s ease-in-out;
        }

        .white-icon {
            filter: brightness(0) invert(1);
        }
        
        /* New styles for improved designs */
        .image-showcase .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            cursor: pointer;
        }
        .image-showcase .image-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2), 0 4px 6px -4px rgb(0 0 0 / 0.1), 0 0 20px rgba(0, 162, 255, 0.7);
        }
        .image-showcase .image-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-showcase .image-card .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .image-showcase .image-card:hover .image-overlay {
            opacity: 1;
        }
        .image-showcase .image-card .image-caption {
            font-size: 1rem;
            font-weight: 500;
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Redesigned CTA Section */
        .cta-professional {
            @apply bg-gray-800 rounded-3xl p-8 md:p-12 lg:p-16 text-center shadow-2xl;
            border: 2px solid transparent;
            animation: glowing-border 2s ease-in-out infinite;
        }
        .cta-professional h2 {
            @apply text-3xl md:text-5xl font-extrabold text-white leading-tight mb-4 text-glow;
        }
        .cta-professional p {
            @apply text-lg md:text-xl text-gray-300 max-w-3xl mx-auto mb-8;
        }

        /* Hover effect for nav links */

        .nav-link-hover {
            position: relative;
            display: inline-block;
            transition: color 0.25s ease-out, text-shadow 0.25s ease-out;
        }
        .nav-link-hover::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #00a2ff;
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }
        .nav-link-hover:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        /* New hover effect to make text glow */
        .nav-link-hover:hover {
            color: #fff;
            text-shadow: 0 0 5px rgba(0, 162, 255, 0.5), 0 0 10px rgba(0, 162, 255, 0.3);
        }

        /* Specific styles for the mobile menu */
        .mobile-menu {
            transition: max-height 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }

        .mobile-menu.active {
            max-height: 200px;
            margin-top: 1.25rem;
        }
        .image-hover-effect:hover {
            box-shadow: 0 0 20px rgba(0, 162, 255, 0.7);
        }

        /* Styles for the new video element and play button overlay */
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.5);
            cursor: pointer;
            transition: opacity 0.3s ease-in-out;
        }
        .video-overlay:hover {
            opacity: 0.8;
        }
        .play-button {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: rgba(0, 162, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease-in-out;
        }
        .play-button:hover {
            transform: scale(1.1);
        }
        .play-button svg {
            fill: #fff;
        }

        @media (min-width: 1024px) {
            .hero-graphic {
                min-height: 600px;
            }
        }

/* Style for the Modal (The background) */
.modal {
    display: none;
    position: fixed; 
    z-index: 1000;
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9);
}

/* Modal Content (The Image) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
}

/* Modal Content (The Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;         
    max-width: 900px;   
    max-height: 90vh;    
    object-fit: contain; 
}


/* The Close Button - No change needed here */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Other styles for .image-card remain the same... */
.image-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.image-card:hover {
    transform: scale(1.02);
}