/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    overflow-x: hidden;
    background-image: url(images/frame8.png);
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #333;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
    top: 0;
}

.navbar .logo img {
    width: 100px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, background-color 0.3s ease, border-radius 0.3s ease;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #b8860b;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-links a:hover {
    background-color: #b8860b;
    color: #fff;
    text-shadow: 0 0 10px #b8860b, 0 0 20px #b8860b, 0 0 30px #b8860b, 0 0 40px #b8860b;
}

.navbar .nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar:hover {
    border-bottom: 2px solid #b8860b;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Show class for mobile menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .navbar .nav-links a {
        padding: 15px;
        text-align: center;
        width: 100%;
    }
}

/* Contact Section */
.contact-us {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 80px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info ul li a {
    color: #f39c12;
    text-decoration: none;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #f39c12;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Styling */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    margin: 5px 0;
}

/* Tiny PNG Images */
.vector-image-1 {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-image: url(images/frame9.png);
    background-size: cover;
    background-position: center;
}

.vector-image-2 {
    position: absolute;
    top: 400px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-image: url(images/logo.png);
    background-size: cover;
    background-position: center;
}

.vector-image-3 {
    position: absolute;
    top: 600px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-image: url(images/frame6.png);
    background-size: cover;
    background-position: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .navbar .nav-links a {
        padding: 12px 20px;
        text-align: center;
        border-radius: 0;
    }

    .menu-toggle {
        display: block;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }

    .contact-form h3 {
        font-size: 1.8rem;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar .nav-links {
        font-size: 0.8rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 10px 15px;
    }

    .about-us {
        padding: 30px 10px;
    }

    .text-section h2 {
        font-size: 2rem;
    }

    .text-section p {
        font-size: 1rem;
    }

    .photo-frame {
        width: 80%;
        height: auto;
    }
}

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px;
}

.navbar .logo img {
    width: 100px;
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.open-menu {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Mobile Side Menu */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.side-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    background-color: #575757;
}

.side-menu .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .open-menu {
        display: block;
    }

    .navbar {
        position: relative;
    }

}
/* Style for the dropdown container */
.contact-form select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #007BFF; /* Blue border */
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #333;
    outline: none;
    transition: all 0.3s ease-in-out;
    appearance: none; /* Removes default dropdown arrow */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="%23007BFF"><path d="M7 10l5 5 5-5H7z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    cursor: pointer;
}

/* Style when dropdown is focused */
.contact-form select:focus {
    border-color: #0056b3;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.3);
}

/* Optional: Style for dropdown options */
.contact-form select option {
    background: white;
    color: #333;
    font-size: 16px;
    padding: 10px;
}
