/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    color: #ff9800;
    font-weight: bold;
}

a {
    color: #ff9800;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-link {
    color: #ffffff; /* White text for nav links */
    background-color: #ff9800;
    font-size: 18px;
    
}

.nav-link.active {
    color: white;
    font-weight: bold;
    color: #ff9800 !important;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-info h4 {
    color: #333;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    font-weight: bold;
    color: #333;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Input fields */
form .form-control {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
}

form .form-label {
    font-weight: bold;
    margin-bottom: 5px;
}

form button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
}

form button:hover {
    background-color: #e68a00;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 20px;
    font-size: 14px;
    color: white;
    padding: 20px 0;
    margin-top: 30px;
}

footer a {
    color: white;
}

footer a:hover {
    color: #ff9800;
}

/* Social Icons */
/* Contact Info Section */
.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-info h4, .contact-info h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.contact-info a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Icons */
.contact-info img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s, opacity 0.3s;
}

.contact-info img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Spacing for Social Icons */
.contact-info p a {
    margin-right: 10px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .contact-info {
        padding: 20px;
        text-align: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-info img {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }

    .contact-info h4, .contact-info h5 {
        margin-bottom: 10px;
    }
}
