 :root {
            --primary-red: #e74c3c;
            --dark-bg: #2c3e50;
            --light-blue: #d4edda;           
            --dark-gray: #666666;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: bold;
            color: var(--primary-red) !important;
            font-size: 1.5rem;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        
        .footer {
            background-color: #11579d;
            color: white;
            padding: 60px 0 20px 0;
            border-top: 3px solid var(--primary-red);
        }

        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer p,
        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            margin-bottom: 8px;
        }

        .footer a:hover {
            color: white;
        }

        .social-links a {
            color: #bdc3c7;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: white;
        }

        .inquiry-form {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 8px;
        }

        .inquiry-form input {
            background-color: white;
            border: none;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 4px;
        }

        .inquiry-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 4px;
            font-weight: bold;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .inquiry-btn:hover {
            background-color: #c0392b;
        }

        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #7f8c8d;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .company-text {
                padding: 20px;
            }
        }
        
        
        
         
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
}


@media (max-width: 768px) {
    .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }
}