@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.max-width{
    max-width: 1920px;
    padding: 0 80px;
    margin: auto;
    list-style: none;
}

/*Navbar styling*/
.navbar{
    position: fixed;
    width: 100%;
    padding: 30px 0;
    font-family: "Ubuntu", sans-serif;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar.sticky{
    padding: 15px 0;
    background: crimson;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span{
    color: crimson;
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span{
    color: #fff;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar .menu li a:hover{
    color: crimson;
}

.navbar.sticky .menu li a:hover{
    color: #fff;
}

.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
    padding: 10px;
}


/* Footer Styling */
.footer{
    background: #303036;
    color: #d3d3d3;
    padding: 40px 0;
    text-align: center;
    position: relative;
    height: 300px;
}

.footer .max-width{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.footer .footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer .footer-content .footer-section{
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Footer Logo */
.footer-logo{
    font-size: 1.8rem;
    color: white;
}

.footer-logo span{
    color: crimson;
}

.footer-section.footer-about p{
    text-align: justify;
    hyphens: auto;
    word-spacing: 1px; 
    padding-bottom: 10px;
}

/* Contact Info */
.footer-contact{
    list-style: none;
    padding: 0;
}

.footer-contact li{
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-contact a{
    color: #d3d3d3;
    text-decoration: none;
}

.footer-contact a:hover{
    color: crimson;
}

/* Social Icons */
.socials{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.socials a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid grey;
    font-size: 1.3rem;
    margin-right: 8px;
    transition: 0.3s;
    background: #444;
    color: white;
}

.socials a:hover{
    border-color: crimson;
    background: crimson;
}

/* Quick Links */
.footer-section.links ul{
    list-style: none;
    padding: 0;
}

.footer-section.links li{
    margin-bottom: 10px;
}

.footer-section.links a{
    color: #d3d3d3;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-section.links a:hover{
    color: crimson;
    padding-left: 10px;
}

/* Copyright */
.copyright{
    background: #343a40;
    color: #d3d3d3;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


/*Responsive media*/
@media (max-width: 1456px){
    .max-width{
        padding: 0 50px;
    }

    .footer{
        height: auto;
    }

    .socials{
        margin-bottom: 30px;
    }
}

@media (max-width: 991px){
    .max-width{
        padding: 0 50px;
    }
}

@media (max-width: 947px){
    .max-width{
        max-width: 800px;
    }
    
    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }

    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .menu li{
        display: block;
    }

    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .footer{
        height: auto;
    }

    .footer .footer-content{
        height: auto;
        flex-direction: column;
    }

    .socials{
        margin-bottom: 10px;
    }

    .footer .footer-content .footer-section .footer-contact{
        padding-bottom: 25px;
    }

    .footer .footer-content .footer-section.links{
        padding-top: 5px;
    }
}

@media (max-width: 690px){
    .max-width{
        padding: 0 23px;
    }

    .footer .copyright{
        height: 55px;
    }
}