
        :root {
            --primary-color: #4a6bff;
            --secondary-color: #6c5ce7;
            --accent-color: #00cec9;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #00b894;
            --warning-color: #fdcb6e;
            --danger-color: #d63031;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7ff;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
        }

        .logo i {
            margin-right: 10px;
            font-size: 2rem;
            color: var(--accent-color);
        }

        .logo span {
            color: var(--accent-color);
        }

        .header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
            z-index: 1;
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
           
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin-right: 30px;
            
        }

        .nav-links li {
            position: relative;
            margin-left: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links i {
            margin-right: 5px;
        }

        /* Dropdown Menu */
   /* Dropdown Menu - Fixed Version */
.dropdown {
    position: relative;
    z-index: 1000; /* Increased from 1 to ensure it stays above other content */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001; /* Higher than parent */
    transform: translateZ(0); /* Force hardware acceleration */
    will-change: transform, opacity; /* Optimize for animations */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    position: relative; /* Ensure links stay within dropdown */
    z-index: 1002; /* Higher than dropdown */
}

.dropdown-content a:hover {
    background-color: #f5f7ff;
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-content i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Additional fixes for header to ensure dropdown visibility */
header {
    position: relative;
    z-index: 999; /* Lower than dropdown */
    overflow: visible !important; /* Override any overflow */
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Ensure no parent containers are clipping the dropdown */
.container, .header-content, nav {
    overflow: visible !important;
}

/* For right-edge clipping prevention */
@media (min-width: 992px) {
    .dropdown-content {
        right: auto;
        left: 0;
    }
    
    /* If dropdown goes off-screen on right */
    .dropdown.right-align .dropdown-content {
        right: 0;
        left: auto;
    }
}

        /* Contact Button */
        .contact-btn {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.2);
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: 500;
        }

        .contact-btn:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        .contact-btn i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* Marquee Styles */
        .marquee-container {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .marquee {
            display: inline-block;
            animation: marquee 20s linear infinite;
            font-weight: 600;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            font-size: 1.05rem;
        }

        .marquee i {
            margin: 0 15px;
            color: var(--accent-color);
            vertical-align: middle;
        }

        .marquee-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 2px 8px;
            border-radius: 4px;
            margin: 0 10px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Hero Section */
        .hero {
            padding: 40px 0 60px;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(74, 107, 255, 0.1) 0%, transparent 70%);
            z-index: -1;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #666;
        }

        /* Tools Grid - Now at the top */
        .tools-section {
            background-color: white;
            padding: 40px 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: -20px;
            position: relative;
            z-index: 10;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 3px;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .tool-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #eaeaea;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        .tool-icon {
            padding: 25px;
            text-align: center;
            background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
            transition: all 0.3s ease;
        }

        .tool-card:hover .tool-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .tool-card:hover .tool-icon i {
            color: white;
            transform: scale(1.1);
        }

        .tool-icon i {
            font-size: 3.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .tool-content {
            padding: 20px;
        }

        .tool-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .tool-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(74, 107, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 107, 255, 0.4);
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Features Section */
        .features {
            padding: 60px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9IjgwIiBmaWxsPSJub25lIiBzdHJva2U9IiM0YTZiZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWRhc2hhcnJheT0iNSw1Ii8+PC9zdmc+');
            opacity: 0.3;
        }

        .features::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cG9seWdvbiBwb2ludHM9IjEwMCwxMCA0MCwxOTggMTkwLDc4IDEwLDU4IDE2MCwxOTggMTAwLDEwIiBmaWxsPSJub25lIiBzdHJva2U9IiM2YzVjZTciIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==');
            opacity: 0.3;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: rotate(10deg) scale(1.1);
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        }

        .feature-item h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .feature-item p {
            color: #666;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Floating Elements */
        .floating {
            position: absolute;
            border-radius: 50%;
            background: rgba(74, 107, 255, 0.1);
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-1 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 5%;
        }

        .floating-2 {
            width: 100px;
            height: 100px;
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }

        .floating-3 {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 30%;
            animation-delay: 2s;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        /* Breadcrumb for SEO */
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .tool-card {
                margin-bottom: 20px;
            }
            
            .marquee {
                font-size: 0.9rem;
            }
            
            .contact-btn span {
                display: none;
            }
            
            .contact-btn i {
                margin-right: 0;
                font-size: 1.3rem;
            }
        }
