/* General Navbar Styling */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #95103B, #95103B); /* Gradient background */
    font-family: "Poppins", sans-serif;
    border: none;
    color: white;
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: white !important; /* Ensure white color */
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    margin-left: 70px;
}

.navbar-brand:hover {
    color: #cfe2ff !important;
}

.nav-link {
    color: white !important; /* Ensure white color */
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    margin-left: 40px;
}

.nav-link:hover {
    color: #333 !important;
    background-color: white;
    text-decoration: none;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.5);
    color: #333 !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        padding: 12px 20px;
    }

    .dropdown-item {
        text-align: center;
    }

    .three_quarter{
        display: none;
    }
}


.custom-heading {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
    margin: auto;
}
.btn-custom {
    background: #25d366;
    color: #fff;
    font-weight: bold;
    border: none;
}
.btn-custom:hover {
    background: #22b957;
}

