/* General reset */

:root{
    --primary-color: #12c2b9;
    --secondary: #dbfffe;
    --black: #141414;
    --white: #fff;
    --box-shadow: 0.5rem 1rem rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

/* Navigation Bar */
nav{
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav-background{
    background: rgb(17, 17, 33);
}

nav img{
    width: 75px;
}
#vertical{
    border-left: 2px solid white;
    height: 50px;
    position: relative;
    display: inline-block;
    bottom: 14px;
    right: 1px;
}
.foundation{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 8px;
    font-size: 16.5px;
    text-align: center;
}

.nav-name{
    list-style: none;
    display: inline-block;
    position: relative;
    bottom: 20px;
    align-items: center;
    text-align: left;
    text-decoration: none;
    color: white;
    font-size:24px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size:15px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #e8ab26;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
    color: white;
    background-color: rgb(17, 17, 33);
}

.text-box p{
    margin: 10px 0 40px ;
    font-size: 14px;
    color: white;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #e8ab26;
    border: 1px solid #e8ab26;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #e8ab26;
    background: #e8ab26;
    transition: 1s;
    color: white;
}

nav .fa{
    display: none;
}


@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    
    .nav-links ul li{
        display: block;
        border-bottom: 1px solid white;
    }

    .nav-links{
        position: fixed;
        background: #e8ab26;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
        border: 1px solid white;

    }
    .nav-name{
        font-size: 18px;
    }

    .foundation{
        font-size: 7.5px;
    }
}
/* Contact Container */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%; /* Take full width of the page */
    margin-top: 100px; /* Adjusted for navbar height */
    padding: 20px;
    animation: slideIn 0.6s ease-out;
}
section{
    padding: 5rem 7%;
}

.contact .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;

}

.contact .row .image{
    flex: 1 1 40rem;
}

.contact .row .image img{
    width: 100%;
    
}
.contact .row form{
    flex: 1 1 40rem;
    border: 0.1rem solid #e8ab26;
    padding: 2rem;
}

.contact .row form h3{
    font-size: 2.5rem;
    color: #444;
    padding-bottom: 1rem;
}

.contact .row form .box{
    width: 100%;
    font-size: 1.6rem;
    padding: 1.2rem 1.4rem;
    border: .1rem solid #e8ab26;
    margin: .7rem 0;
}

.contact .row form .box:focus{
    color: #e8ab26;
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
}





/* Enhanced Map Styling */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px; /* Map height increased */
}

.map-container iframe {
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.map-container iframe:hover {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .contact-container {
        margin-top: 100px;
    }

    .map-container {
        height: 300px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.footer {
    background: #282c34;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-logo h1 {
    font-size: 2rem;
    margin: 0;
    color: #eae6e6;
}

.footer-links,
.footer-socials {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-links h3,
.footer-socials h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #eae6e6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: #ddd;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #61dafb;
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}
