*{
    margin: 0;
    padding: 0;
}

body{
    font-family: sans-serif;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.25rem 0.5rem;

  }
  
  .logo-link:hover {
    text-decoration: none;
  }
  

  .logo-img {
    height: 2.5rem; /* 40px */
    width: 2.5rem;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
  }

  .logo-img:hover {
    text-decoration: none;
  }
  
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3A59D1; /* Tailwind's blue-900 */
    letter-spacing: 1px;
  }
  
  .nav-link {
    position: relative;
    display: inline-block;
    color:  #3A59D1; /* Tailwind's blue-400 */
    font-weight: 800;
    font-size: 1.150rem; /* text-sm */
    line-height: 1.5rem;  /* /6 */
    text-decoration: none;
  }
  
  .nav-link:hover {
    text-decoration: none; /* <-- prevent default underline */
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #fcd5b5; /* underline color */
    transition: width 0.3s ease-in-out;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  

.social-medias a {
    color: white;  
}

/* footer section */
.footer-section{
    background-color: #AFDDFF;
    color: black;
    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: black;
}
.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 */
