@import url("https://fonts.googleapis.com");
:root {
    --primary-color: #076eb5;
    --secondary-color: #ff0052;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
}

/* 
====================================
    Navigation Bar styling
====================================
*/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 9%;
    background-color: aliceblue;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav #nav-logo {
    width: 150px;
}
nav .nav-links {
    list-style-type: none;
    display: flex;
    gap: 40px;
    align-items: center;
}
nav .nav-links li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.02rem;
    font-weight: 500;
    display: inline-block;
    padding: 8px 15px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}
nav .nav-links a:hover {
    background-color: rgb(0, 92, 150);
    color: white;
    border-radius: 4px;
}
nav .contact-btn {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid rgb(223, 0, 59);
    font-size: 19px;
    font-weight: 500;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

nav .nav-links #close-nav {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 25px;
    right: 30px;
}
nav #nav-toogle {
    display: none;
    background: none;
    border: none;
    width: 80px;
}
nav #nav-toogle img {
    width: 100%;
    height: 50px;
}

/* 
==============================================
    Social Icons Styling Start
==============================================
*/
.icons {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.social-icons {
    width: 80%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}
.social-icons .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.social-icons a {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition:
        transform 0.3s,
        color 0.3s;
}
.social-icons a:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* 
==============================================
    Footer Section styling Start
==============================================
*/
.footer {
    padding: 80px 20px;
}

.footer .social-icons {
    width: 100%;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.logo-section,
.social-icons-footer {
    justify-items: center;
    text-align: center;
}

.logo-section > .logo {
    width: 14rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.footer-links h4 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.footer-links li:hover {
    cursor: pointer;
    color: #555;
    transform: translateX(5px);
}
.footer-links li a {
    text-decoration: none;
    color: #000000;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #303030;
    border-radius: 20px;
    padding: 20px 8px;
    box-shadow: 0 0 2px black;
    margin-top: 50px;
}

@media (max-width: 768px) {
    html {
        font-size: 75%;
    }
    nav .nav-links {
        position: absolute;
        top: 6px;
        left: 0;
        margin-left: -1000px;
        flex-direction: column;
        /* height: 100vh; */
        width: 60%;
        padding-top: 160px;
        background-color: aliceblue;
        transition: margin-left 0.5s ease;
    }
    nav .nav-links.active {
        margin-left: 10px;
        flex-direction: column;
        background-color: aliceblue;
        padding: 20px;
        border-radius: 8px;
    }
    nav .nav-links #close-nav {
        display: block;
    }
    nav #nav-toogle {
        display: block;
    }
    main{
        padding: 20px 15px;
    }
}
