     @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
       html {
            scroll-behavior: smooth;
            scroll-padding-top: 55px;
            font-sizez: 16px;
        }
		body{
			overflow-x: hidden;
			
		}
        .gradient-bg {
            background: linear-gradient(135deg, #5D5CDE 0%, #4F46E5 100%);
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .dark .glass-effect {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(93, 92, 222, 0.2);
        }
        
        .dark .card-hover:hover {
            box-shadow: 0 20px 40px rgba(93, 92, 222, 0.3);
        }
        
        .typing-animation {
            border-right: 2px solid #5D5CDE;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { border-color: transparent; }
            51%, 100% { border-color: #5D5CDE; }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .page-btn {
            transition: all 0.2s ease;
        }

        .page-btn.active {
            background: #5D5CDE;
            color: white;
            border-color: #5D5CDE;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-link.active {
            color: #5D5CDE !important;
            font-weight: 600;
        }

        .product-image {
            widthh: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            margin: 1rem;
            animation: modalSlideIn 0.3s ease;
        }

        .dark .modal-content {
            background: #1f2937;
        }

        @keyframes modalSlideIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: auto 100%;
            background-position: center;
            background-repeatt: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 0.98;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(93, 92, 222, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            min-width: 350px;
        }

        .dark .dropdown-menu {
            background: #1f2937;
            border: 1px solid #374151;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            display: block;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid #f3f4f6;
        }

        .dark .dropdown-item {
            color: #d1d5db;
            border-bottom-color: #374151;
        }

        .dropdown-item:hover {
            background-color: #f9fafb;
            color: #5D5CDE;
        }

        .dark .dropdown-item:hover {
            background-color: #374151;
            color: #5D5CDE;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item i {
            width: 16px;
            margin-right: 0.5rem;
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #5D5CDE;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .database-info {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 4px solid #2196f3;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0.5rem;
        }

        .dark .database-info {
            background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            border-left-color: #3f51b5;
        }

        /* Mobile dropdown styles */
        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .mobile-dropdown-content.show {
            max-height: 300px;
        }

        .mobile-dropdown-btn i {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-btn.active i {
            transform: rotate(180deg);
        }

        /* AOS Override for better performance */
        [data-aos] {
            opacity: 0;
            transition-property: opacity, transform;
        }

        [data-aos].aos-animate {
            opacity: 1;
        }
		.srv{
			background: rgba(255,255,255,0.5);
			padding: 10px;
			border-radius: 12px;
		}