body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #8B0000; /* Dark red background */
}


.nav-link {
    color: white;
}

.navbar-brand {
    color: #FFFFFF; /* White text for brand name */
}

.navbar-nav .nav-link {
    color: #FFFFFF; /* White text for nav links */
}


/* Footer */
.footer {
    margin-top: auto; /* Pushes footer to the bottom */
    background-color: #f8f9fa; /* Adjust as needed */
    padding: 1rem 0;
}

.social-taskbar a {
    text-decoration: none;
    color: #343a40; /* Adjust as needed */
}

.social-taskbar i {
    font-size: 1.5rem; /* Adjust icon size as needed */
}
/* Footer */




.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f1f1f1; /* Light gray background on hover and focus */
    color: #800000; /* Maroon text color on hover and focus */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    background-color: #fff; /* White background for the dropdown menu */
    border: none;
}

.dropdown-item {
    color: black; /* Black text color for dropdown items */
}

.dropdown-menu .dropdown-item {
    color: #000000; /* Black text for dropdown items */
}

.btn-success {
    background-color: #32CD32; /* Green background for button */
    border: none;
}

.btn-success:hover {
    background-color: #28a745; /* Darker green on hover */
}


 /* Footer Styling */
        .footer {
            margin-top: auto;
            width: 100%;
            background-color: #343a40;
            color: #fff;
            padding: 10px 0;
            text-align: center;
        }

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-taskbar {
    margin-top: 10px;
}

.social-taskbar i {
    font-size: 24px; /* Icon size */
    color: #FFFFFF; /* Icon color */
}

.social-taskbar i:hover {
    color: #32CD32; /* Icon hover color */
}


        .contact-btn {
            padding: 5px 10px;
            font-size: 12px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 69px;
            cursor: pointer;
            position:left;
        }
        
        .content {
            margin-top: 60px;
            text-align: center;
            font-size: 2em;
            color: #333;
        }
        
        .popup form {
         display: flex;
         flex-direction: column;
        }

        
        
                
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 10px;
        }
        .popup.active {
            display: block;
        }
        .popup h2 {
            margin-top: 0;
        }
        .popup input, .popup textarea {
            width: 100%;
            margin-bottom: 10px;
            padding: 10px;
            box-sizing: border-box;
        }
        .popup button {
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .overlay.active {
            display: block;
        }
        
        .dlclr{
            color:black;
        }
        
        ul {
          list-style-type: none;
          margin: 0;
          padding: 0;
          overflow: hidden;
          background-color: #333;
        }
                    
        li {
          float: left;
        }
        
        li a, .servicedropbtn {
          display: inline-block;
          color: white;
          text-align: center;
          padding: 0px 5px;;
          text-decoration: none;
        }
        
        
        
        li.servicedropdown {
          display: inline-block;
        }
        
        .servicedropdown-content {
          display: none;
          position: absolute;
          background-color: #f9f9f9;
          min-width: 160px;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 1;
        }
        
        .servicedropdown-content a {
          color: black;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          text-align: left;
        }
        
        .servicedropdown-content a:hover {background-color: red;}
        
        .servicedropdown:hover .servicedropdown-content {
          display: block;
        }