*{
    font-family: 'Poppins', sans-serif;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;

}
html{
    scroll-behavior: smooth;
}
body{
    background-color:bisque;
    color: #fff;
}
.navbar{
    padding: 10px;
    display: flex;
    position: fixed; /* Keeps it fixed */
    top: 0; /* Sticks to the top */
    left: 0;
     width: 100%; /* Full width */
    z-index: 1000;
    grid-auto-columns: auto;
    justify-content: space-between;
    background-color: black;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.navbar h1{
    color: white;
    font-size: 30px;
}
.navbar ul{
    list-style: none;
    display: flex;
    padding: 0%;

}
.navbar  li{
    margin: 0 20px;
}
.navbar a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.navbar ul li a:hover{
    color: #f0a500;
}
.bg{
    position: relative;
    display: inline-block;
    width: 100vw;
    height: 100vh;

}
.hello{
    
    background-color: rgba(128, 128, 128, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    padding : 20px;
    color:black;
    font-size:18px;
    text-align: center;
}
#about{
    width: 100vw;
    height: max-content;
    background-color:bisque;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding : 50px;
    color:black;
    font-size:18px;
    text-align: center;

}
#about h3{
    padding: 25px;
}

#content {
    display: inline-block;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    width: 80%;
    height: 80%;
    text-align: center;
    
}
.cdpf{
    display: inline-block;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;

}
.cdpf img{
    width: 102px;
    height: 102px;
    margin: 20px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.footer{
    background-color:rgba(255, 255, 255, 0.5) ;
    color:black;
    padding: 50px;
    text-align: center;
}
.btn{
    background-color: rgb(43, 137, 226);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    position: relative;
}
.btn a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.btn:hover{
    background-color: #f0a500;
}
.sk{
    width: 100vw;
    height: max-content;
    background-color: rgba(255, 105, 180, 0.5) ;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 10px;
    padding :20px;
}
#s{
    text-align: center;
    padding: 20px;
    display: block;
    color: black;
    font-size: 30px;
    background-color: rgba(128, 128, 128, 0.3);
}
#p{
    text-align: center;
    padding: 20px;
    display: block;
    color: black;
    font-size: 30px;
    background-color: rgba(128, 128, 128, 0.3);
}

.sk img{
    width: 100px;
    height: 100px;
    margin: 20px;
    border-radius: 50%;
    display: inline-block;
    justify-content: space-between; /* Adjust spacing */
    
     /* Scale the image */
    /* Adds space between images */

    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.sk img:hover{
    transform: scale(1.2); /* Scale the image */
    transition: transform 0.3s ease; /* Smooth transition */
}
.con{
        text-align: left;
        padding: 20px;
        background-color:bisque;
        color:black;
        font-size: 20px;
        width: 100%;
        position: absolute;
       
}
.con a{
    color: black;
    width: 200px;
    height: 200px;

}


#c{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    color: black;
    font-size: 30px;
    background-color: rgba(128, 128, 128, 0.3);
}
#contact {
    height: max-content;
    width: 100%;
    color: black;
    background-color:rgba(255, 255, 255, 0.5);
    text-align : center;
}
#contact img{
    width: 500px;
    height: 200px;
    border-radius: 20px;
    display: inline-block;
    justify-content: space-between;
    text-align: right; /* Adjust spacing */
    
     /* Scale the image */
    /* Adds space between images */

    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.cu{
    padding: 20px;
}



/*media query*/
@media screen and (max-width: 768px) {
    .navbar h1 {
       display:none;
    }
     
     .navlinks{
        display:flex;
        flex-direction: row;
        gap:2px;
        align-items: center;
       }
      
    
    .bg {
        width: 100vw;
        height: 100vh;
    }
    
    

    .cdpf img{
       display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
        gap: 10px;
        }
        
    .about {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .sk {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        padding: 10px;
    }
    #contact img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
     .card-wrapper{
        margin: 0 10px 25px;
    }
    .card-wrapper .swiper-slide-button{
        display: none;
    }
}
.card-wrapper {

    max-width: 100%;
    overflow: hidden;
    padding: 38px;
    padding-right: 0%;
}

#pr{
    font-weight: 300;
    
}

.list .item {
    list-style: none;
}
.list .item .link{
    user-select: none;
    display: block;
    width: 400px;
    height: 450px;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    border:  2px solid transparent;
    transition: 0.2s ease;
}
.list .item .link:hover{
   border-color: #5372F0;
}
.list .link .image{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
}
.list .link .badge{
    color: #5372F0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #DDE4FF;
    width: fit-content;
    border-radius: 50px;
}

.list .link .title{
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}
.card-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(135, 206, 235, 0.8);
    width: 100wv;


}

.list .link .card-button{
    height: 35px;
    width: 35px;
    color: #5372F0;
    border-radius: 50%;
    margin: 30px 0 50px;
    background: none;
    cursor: pointer;
    border: 2px solid #5372F0;
    transform: rotate(-45deg);
    padding: 5px;
}
.list .link:hover .card-button{
    color: #fff;
    background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: .5;
    background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}
.card-wrapper .swiper-slide-button{
    color: #5372F0;
    margin-top: -35px;
}

    
