/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 2px solid #ddd;
    height: 110px;
    position: fixed; /* Make navbar stick at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay above carousel */
}

.navbar-brand img {
    height: 90px;
    margin-top: -5px;
    width: 300px;
    margin-left: 25px;
}

.navbar-nav > li > a {
    margin-top: 30px;
    font-size: 18px;
    color: black !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.navbar-nav > li > a:hover {
    color: red !important;
}

.navbar-toggle {
    margin-top: 33px;
    margin-right: 25px;
}
.contact-container {
    background: linear-gradient(to right, #ffffff, #f9f9f9);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 170px;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

/* Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group label {
    font-weight: bold;
    color: #444;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 10px;
    color: #007bff;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.btn-custom {
    background: #007bff;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-custom:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-box p i {
    color: #007bff;
    margin-right: 8px;
    font-size: 20px;
}

.contact-box a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.contact-box a:hover {
    color: #0056b3;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
        width: auto;
        margin-top: 10px;
    }
    #navbar-menu{
        background-color: white;
    }
    .contact-container {
        padding: 30px;
    }
    .contact-box {
        margin-top: 20px;
    }
}


.footer {
    background-color: #1c1c1c;
    color: #e0e0e0; 
    padding: 50px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1); 
    font-family: 'Poppins', sans-serif;
}
.footer .container {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer .col-md-3 {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #c2c2c2;
}