*{
    margin: 0;
    padding: 0;
}
body{
    font-family: sans-serif;
}
.header{
    padding: 10px 40px;
	font-family: sans-serif;
    position: sticky;
    z-index: 999 !important;
    background-color: #4CAF50;
}


.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: red; */
}

.nav .img-div{
    height: 60px;
    width: 60px;
}

.nav .img-div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nav .logo{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: "Satisfy";
    gap: 10px;
}

.mobile-nav .cross-icon{
    display: none;
}

.mobile-nav-btn{
    display: none;
}

.header .nav ul{
    display: flex;
    gap: 20px;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
}

.header .nav a{
    text-decoration: none;
    color: black;
    position: relative;
}
.header .nav a::before{
    content: "";
    position: absolute;
    background-color: red;
    bottom: -5px;
    left: 0;
    height: 3px;
    border-radius: 13px;
    transition:all 0.5s ease;
    width: 0;
}

.header .nav a:hover::before {
    width: 100%; /* Expand to full width on hover */
}

.header .nav a.active::before {
    width: 100%; /* Full width underline for active class */
}

.social-medias a {
    color: white;  
}

/* footer section */
.footer-section{
    background-color: rgb(37, 37, 37);
    color: white;
    padding: 50px 80px;
}
.footer-section .container{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
    /* align-items: end; */
}

.footer-section .container .card .img-div{
    height: 100px;
    width: 100px;
}



.footer-section .first-section{
    font-size: 20px;
    font-family: "Satisfy";
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .container .card .img-div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-section .card ul a{
    text-decoration: none;
    color: white;
}
.footer-section .card ul{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section .card ul li{
    list-style: none;
}



.footer-section .social-media-section{
    display: flex;
    justify-content: end;
}

.footer-section .social-media-section .social-medias{
    margin-top: 10px;
    font-size: 25px;
    display: flex;
    gap: 15px;
}

.footer-section .social-media-section .social-medias i{
    cursor: pointer;
}


.bottom-footer{
    font-size: 10px;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.bottom-footer h2{
    text-align: center;
}


.footer-section a{
    text-decoration: none;
    color: black;
    position: relative;
}
.footer-section a::before{
    content: "";
    position: absolute;
    background-color: red;
    bottom: -5px;
    left: 0;
    height: 3px;
    border-radius: 13px;
    transition:all 0.5s ease;
    width: 0;
}
.footer-section a:hover::before {
    width: 100%; /* Expand to full width on hover */
}
/*end of footer section */



/* content */
.content{
    padding: 50px 50px;
}
/*end of content */

/* media query */
@media (max-width: 768px)
{

    .mobile-nav .cross-icon{
        display: block;
    }
    .mobile-nav-btn{
        width: 30px;
        height: 30px;
        display: block;
        background: transparent;
    }
    .mobile-nav-btn button{
        background: transparent;
        border: none;
    }
    .mobile-nav-btn img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
/* header section */
.header{
    padding: 50px 20px;
	font-family: "Montserrat-light";
    position: sticky;
}

.header .nav .logo .img-div{
    display: none;
}

.nav{
    display: flex;
    justify-content: space-between;
    /* background-color: red; */
}


.header .nav ul{
    display: flex;
    flex-direction:column ;
    align-items: center;
    list-style: none;
    color: black;
    font-size: 23px;
    font-weight: 600;
    gap: 10px;
}
.header .nav .mobile-nav{
    position: fixed;
    background-color: white;
    padding-top: 50px;
    width: 80%;
    height: 100vh;
    top: 0;
    left: -100%;
    transition: all 1s ease;
}
.header .nav .mobile-nav.active{
    left: 0;
}
.header .nav .mobile-nav .cross-icon {
    display: flex;
    justify-content: end;
    padding: 20px 50px;
    margin-bottom: 50px;
}

/*end of header section */

/* footer section */
.footer-section{
    padding: 10px;
}
.footer-section .container{
    gap: 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;

}
.footer-section .container .card .card-desc{
    gap: 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;

}
.footer-section .quick-links-section{
    margin-top: 20px;
}
.footer-section .social-media-section{
    margin-top: 20px;
    justify-content: start;
}
.bottom-footer h2{
    font-size: 16px !important;
}
/*end of footer section */
}
/*end of media query */
