/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e6b800;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e6b800;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    border-radius: 50%;
    padding: 1px 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    padding: 60px 10%;
    justify-content: center;
    background-color: #f9f9f9;
}

.contact-left,
.contact-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-left p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px 24px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background-color: #444;
}

.contact-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-right ul {
    list-style: none;
    padding: 0;
    margin-top: 70px;
}

.contact-right li {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.contact-right i {
    color: #000;
    margin-right: 10px;
}


/* Footer */

footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 1rem;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e6b800;
}

.footer-column p,
.footer-column li {
    margin-bottom: 0.6rem;
    list-style: none;
    font-size: 0.95rem;
}

footer a {
    text-decoration: none;
    color: #fafafa;
}

footer a:hover {
    text-decoration: underline;
    color: #e6b800;
}

.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    header {
        display: none;
        /* ✅ Hides header on mobile */
    }
    /* Hide scrollbar but allow scroll */
     ::-webkit-scrollbar {
        display: none;
    }
    .bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #111;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000;
        border-top: 1px solid #333;
    }
    .bottom-nav a {
        color: #eee;
        font-size: 13px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: 0.3s ease;
    }
    /* Active Nav Styling */
    .bottom-nav a.active-nav {
        background-color: #fff;
        color: #000;
        padding: 6px 12px;
        border-radius: 20px;
        transform: translateY(-8px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .contact-container {
        flex-direction: column;
        padding: 20px 15px;
    }
    .contact-left,
    .contact-right {
        min-width: 100%;
    }
    footer {
        background: linear-gradient(to right, #111, #222);
        color: #eee;
        padding: 40px 6% 20px 6%;
        font-family: 'Segoe UI', sans-serif;
        display: flex;
        flex-direction: column;
        gap: 25px;
        border-top: 1px solid #444;
    }
    .footer-column {
        width: 100%;
    }
    .footer-column h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #e6b800;
        border-bottom: 1px solid #444;
        padding-bottom: 4px;
    }
    .footer-column p,
    .footer-column li {
        font-size: 12.5px;
        line-height: 1.6;
        color: #ccc;
        margin: 6px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer-column ul {
        padding-left: 0;
        list-style: none;
    }
    .footer-column i {
        color: #e6b800;
        font-size: 13px;
    }
    footer .footer-column:last-child p {
        margin-top: 6px;
    }
}