body {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* background-color: #dd3f00;
    background-color: #f0a472; */
    background-image: url(../Images/ChatGPT\ Image\ Apr\ 28\,\ 2025\,\ 03_39_36\ PM.png);
    background-attachment: scroll; /* Makes background fixed during scroll */
    background-size: cover; /* Cover entire screen without zooming */
    background-repeat: no-repeat; /* Don't repeat the background */
    background-position: center center; /* Center the background */;
    zoom: 80%;
    overflow-y: auto;
    overflow-x: auto;
} 



.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    text-align: left;
    
}

.logo img {
    margin: 0;
}

nav {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color: #9e4c08d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

nav ul {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color : black;
    font-size: 20px;;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #f79a0f7c;
    transition: 0.3s;
    width:100% ;
    height: 10px;
    position: relative;
}
/* ====== Main Content ====== */
main {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    background: rgba(255, 235, 179, 0.043);
    
    border-radius: 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 32px 16px 32px;
}
main h1 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}
main p, main address {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    text-align: center;
}
main address {
    font-style: normal;
}
main iframe {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(184,116,34,0.10);
    margin-top: 10px;
}

/* ====== Info Boxes Section ====== */
.info-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin: 40px auto 30px auto;
    max-width: 1200px;
    
    flex-wrap: wrap;
}
.info-box {
    flex: 1 1 280px;
    background: rgba(249, 219, 171, 0.361);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(184,116,34,0.10);
    padding: 32px 24px;
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 2rem;
    color: #050505;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 240px;
    max-width: 350px;
    
    border: 2px solid #f7c9653f;
}
.info-box h3 {
    color: #000000;
    margin-bottom: 12px;
    font-size: 2rem;
}
.info-box p {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}
.info-box a {
    color: #e2610b;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
    font-size: 1.4rem;
}
.info-box a:hover {
    color: #6e2912;
}
.info-box iframe {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    border: none;
    margin-top: 10px;
}

/* ====== Aside & Contact Section ====== */
aside {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: rgba(175, 85, 44, 0.336);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 30px;
}

aside a {
    color: rgb(192, 53, 35);
    
}

.phone a:hover {
    color: #c56220 ;
    transition: 0.3s;
}

.Contact {
    text-align: center;
    margin: 20px 0;
}

.visit-us-content {
    display: flex; /* Enable Flexbox */
    justify-content: space-around; /* Space out the items evenly */
    align-items: center; /* Align items vertically in the center */
    gap: 25px; /* Add spacing between items */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.visit-us-content address,
.visit-us-content .phone,
.visit-us-content .maps {
    flex: 1; /* Make each item take up equal space */
    max-width: 400px; /* Optional: Limit the width of each item */
    text-align: center; /* Align text to the left */
}


.visit-us-content iframe {
    width: 350px;
    height: 400px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.visit-us-content iframe:hover {
    transform: scale(1.1); /* Scale up the map */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */
}
.social-media img {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.social-media img:hover {
    transform: scale(1.15);

}
/* ====== Responsive Design ====== */
@media (max-width: 900px) {
    main, aside {
        max-width: 98vw;
        padding: 16px 4vw;
    }
    .info-boxes {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .info-box {
        max-width: 98vw;
        min-width: unset;
        width: 98vw;
    }
    .visit-us-content {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .visit-us-content iframe {
        width: 98vw;
        max-width: 340px;
        height: 180px;
    }
}
@media (max-width: 700px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    nav ul {
        text-align: left;
        margin: 0 0 0 10px;
        padding: 0;
    }
    nav ul li {
        display: block;
        margin: 8px 0;
    }
    nav ul li a {
        font-size: 1.1rem;
    }
    .logo {
        margin: 10px 0 0 10px;
        width: 70px;
        height: 70px;
    }
    main h1, aside h2 {
        font-size: 1.2rem;
    }
    .info-box {
        padding: 18px 6px;
        font-size: 1rem;
    }
    .visit-us-content iframe {
        width: 96vw;
        max-width: 320px;
        height: 140px;
    }
}
@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
