<!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    
    <!-- Font Awesome Icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    
    <style>
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fffde7;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

   /* Hero Section */
.hero {
    background: #000;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding: 20px; /* Added padding for better spacing */
}
.hero h1 {
    color: #ffd700;
    font-size: 3.5rem; /* Adjusted for better scaling on smaller screens */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif; /* Ensures clean font rendering */
}

/* Navigation Menu */
nav {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #ffd700; /* Adds a clean transition from the hero section */
}

nav a {
    color: #ffd700;
    text-decoration: none;
    padding: 10px 20px; /* Reduced padding for better spacing on smaller screens */
    font-size: 1rem; /* Adjusted for readability */
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px; /* Slightly reduced gap for icon alignment */
    transition: all 0.3s ease;
    border-radius: 5px; /* Smooth button-like appearance */
}

nav a:hover {
    color: #fff;
    background: #ffd700; /* Highlight background on hover */
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3); /* Added a slight glow effect */
}

nav a i {
    font-size: 1.2rem;
}

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }
        .service {
            background: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #ffd700;
        }
        .service:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }
        .service-icon {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 15px;
        }
        .service h3 {
            color: #000;
            margin: 0 0 15px;
            font-size: 1.4rem;
        }
        .service p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Call to Action */
        .cta-section {
            background: #666;
            padding: 30px 10px;
            text-align: center;
            margin: 10px 0;
        }
        .cta-button {
            background: #ffd700;
            color: #000;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background: #fff;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #000;
            color: #ffd700;
            padding: 40px 20px;
            margin-top: 80px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h4 {
            color: #ffd700;
            margin-bottom: 20px;
        }
        .social-links a {
            color: #ffd700;
            margin-right: 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            nav {
                flex-wrap: wrap;
                gap: 10px;
            }
        }
        
        
           :root {
            --primary-color: #2A5CAA;
            --secondary-color: #e9f2fa;
            --accent-color: #FF6B6B;
        }

    

        section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 40px 0;
            padding: 40px;
            transition: transform 0.3s ease;
        }

        h2 {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 20px;
            margin: 30px 0;
            font-size: 32px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .service-card {
            background: var(--secondary-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(42, 92, 170, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(42, 92, 170, 0.1);
        }

        .card-icon {
            font-size: 45px;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: rgba(255,107,107,0.1);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 25px;
        }

        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-color), #1a4075);
            color: white!important;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 20px;
            transition: transform 0.3s ease;
        }

        .download-link:hover {
            transform: scale(1.05);
        }

        .software-item {
            position: relative;
            overflow: hidden;
            padding: 30px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e3eefe;
        }

        .software-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .software-item:hover::before {
            width: 100%;
            opacity: 0.1;
        }