: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;
}


/* 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;
    }
}
/* About us Container */
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


.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;
}
