/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: black;
    color: #fff;
    overflow-x: hidden;
}

/* Header Section */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #222;
    color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

header img {
    height: 60px;
    margin-right: 20px;
}

header .name {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f39c12;
}

.back-to-home {
    text-align: center;
    margin: 20px 0;
}

.back-to-home button {
    padding: 10px 20px;
    background-color: #f39c12; /* Red Button Color */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.back-to-home button:hover {
    background-color: #ff9800; /* Dark Red Hover Color */
}


#menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    #nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #222;
        position: absolute;
        top: 80px;
        right: 20px;
        padding: 20px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    #nav-menu.show {
        display: flex;
    }
}




body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #222;
    color: white;
    text-align: center;
}

.gallery-heading {
    font-size: 32px;
    text-transform: uppercase;
    color: #f39c12;
    margin: 40px 0;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.gallery-grid img {
    width: 100%;
    height: 300px; /* Fixed height for better alignment */
    object-fit: cover; /* Crop image without distortion */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(40%);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: grayscale(0%);
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}












footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
}

.follow, .contact, .add h3 {
    font-size: 1.7em;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 40px;
    font-family: 'Dancing Script', cursive;
    position: relative;
    z-index: 1;
}

.branches {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.branch {
    width: 300px;
    text-align: left;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.branch iframe {
    margin-top: 10px;
    width: 100%;
    height: 150px;
    border-radius: 10px;
}

.follow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social_icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social_icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.social_icons a:hover {
    color: #ff9800;
}

.footer2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 500px;
}

.contact input, .contact textarea, .contact button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact button {
    background: #f5a623;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact button:hover {
    background: #f8b400;
}

.logo img {
    width: 250px;
    height: auto;
    margin-bottom: 10px;
    margin-top: 50px;
}

.call-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f5a623;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease-in-out;
    height: 30px;
}

.call-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.call-button:hover {
    background: #f8b400;
}

.logo p {
    margin-top: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer1 {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer2 {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .contact form {
        width: 400px;
    }

    .call-button {
        padding: 8px 14px;
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    .footer1 {
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer2 {
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact {
        width: 350px;
    }

    .contact form {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
   

    .logo img {
        width: 180px;
        margin-bottom: 20px;
    }

    .call-button {
        padding: 8px 16px;
        font-size: 1em;
        border-radius: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer1 {
        gap: 10px;
        text-align: center;
    }

    .footer2 {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .contact form {
        width: 100%;
        max-width: 100%;
    }

    .branch {
        width: 100%;
    }

    .logo img {
        width: 180px;
    }

    .call-button {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}
