:root{
    --color0:#0D6EFD;
    --color1:linear-gradient(to right,var(--bs-primary),violet);
    --color2:#AD8CCB;
    --color3:#6E4395;
    --color4:#E9F0FE;
    --color5:#8443d6;
}
.s-w-100{width: 100px !important;}
.brt-0{border-top-left-radius: 0 ;border-top-right-radius: 0;}
.brb-0{border-bottom-left-radius: 0 ;border-bottom-right-radius: 0;}
.nop{cursor: default;pointer-events: none;}
.rotate{
    animation: rotate .5s infinite;
    display: inline-block;
}
@keyframes rotate{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
body{
    margin: 0;
}
.header{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,.1);
    /* box-shadow: 0 0 10px rgba(0,0,0,.1); */
}
.header .logo{
    width: 200px;
    padding: 50px 10px;   
}
.nav{
    position: sticky;
    top: 0;
    background: var(--color4);
    box-shadow: 0 0 10px 1px rgba(0,0,0,.3);
    display: flex;
    z-index: 10;
}
.nav.active{}
.nav .logo{
    width: 150px;
    height: 0px;
    margin: 2px 0 2px 14px;
    transition: .2s;
}
.nav.active .logo{
    border: 2px solid var(--color2);
    padding: 1px;
    background: #fff;
    height: 56px;
}
.nav .logo img{
    width: 100%;
    height: 100%;
}
.nav .menu{
    margin-left: auto;
}
.nav .menu .btn{
    padding: 6px 20px;
    border-radius: 0;
    transition: .2s;
}
.nav.active .menu .btn{
    padding: 10px 20px;
    font-size: 26px;
}
.banner-box{
    position: relative;
    background-color: rgba(0,0,256,.6);
}
.banner-box .banner{
    height: 450px;
}
.banner-box .banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}
.banner-box .banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 255, 0.1); /* rgb with transparency */
  pointer-events: none; /* so it doesn’t block clicks */
}
.banner-box .details{
    background: rgba(255,255,255,.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-box .details .title{
    padding: 30px 20px 40px 20px;
    /* line-height: 0px; */
    text-align: center;
    background: rgba(255,255,255,.99);
    margin: 10px;
    position: relative;
    border: 1px solid rgba(0,0,0,.3);
}
.banner-box .details .title .highlight{
    color: var(--bs-primary);
}
.banner-box .details .title .sub{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.banner-box .details .title .sub .content{
    padding: 10px 40px;
    border-radius: 26px;
    background: var(--bs-primary);
    background: var(--color5);
    color: #fff;
    font-size: 28px;
    transform: translate(0,60%);
}
.banner-box .details .title .sub .content .heart-icon{
    color: #f00;
    position: absolute;
    bottom: 0;
    right: -20px;
    background: #fff;
    padding: 6px 6px 4px 6px;
    border-radius: 50%;
    font-size: 28px;
    border: 4px solid var(--color5);
}
.banner-box .details .title .sub .content .content2{
    background: #fff;
    color: var(--color5);
    border: 4px solid var(--color5);
    position: absolute;
    bottom: -46px;
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 10px;
}
.banner-box .details .btn{
    position: absolute;
    left: 50%;
    transform: translate(-50%,-10px);
}
.short-content .box{
    background: var(--bs-primary);
    padding: 50px 20px 10px 20px;
    position: relative;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 6px 6px 10px rgba(0,0,0,.5);
}
.short-content .box.special{
    background: var(--color5);
}
.short-content .box i{
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%);
    background: var(--bs-primary);
    border: 4px solid #fff;
    font-size: 48px;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
}
.short-content .box.special i{
    background: var(--color5);
}
.short-content .box .title{
    color: #fff;
    font-size: 26px;
    text-align: center;
}
 .coding-title{
    background: var(--color1);
    text-align: center;
    padding: 50px 0;
    color: #fff;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(0,0,0,.9);
 }
.codings{
    display: flex;
    justify-content: center;   /* Center items horizontally */
    align-items: center;       /* Center items vertically if needed */
    flex-wrap: wrap;           /* Allow items to wrap on smaller screens */
    gap: 40px;                 /* Space between items */
    align-items: stretch;
    text-align: center; 
    margin-top: 30px;
}
.codings .item{
    cursor: pointer;
    width: 100px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 10px;
}
.codings .item img{
    width: 100%;
    padding: 10px;
}
.codings .item .title{
    font-size: 14px;
    text-decoration: underline;
}
.short-heading{
    /* border: 1px solid var(--bs-primary); */
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    border-radius: 10px;
    background: linear-gradient(to left top,var(--color3) 50%,var(--bs-primary));
}
.short-heading h1{
    text-shadow: 0 0 10px #000;
    color: #fff;
    background: linear-gradient(to top right,rgba(0,0,0,.3) 0%,rgba(0,0,0,.8) 40%,rgba(0,0,0,.8) 60%,rgba(0,0,0,.3) 100%);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 22px;
    display: inline-block;
}
.users-box .box{
    /* border: 1px solid #aaa; */
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 16px;
}
.user-list-table td img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#prev-users.active i,#next-users.active i{
    display: inline-block;
    animation: arrow .5s infinite;
}
@keyframes arrow{
    0%{transform: scale(0.8);}
    50%{transform: scale(0.4);}
    100%{transform: scale(0.8);}
}
.users-box .box .card{
    border: 1px solid #444;
    width: 100px;
    padding: 10px;
}
.users-box .box .card .sno{
    background: #000;
    position: absolute;
    top: -8px;
    right: -2px;
    color: #fff;
    font-size: 12px;
    padding: 0 8px;
    border-radius: 12px;
}
.users-box .box .card .image-box{
    width: 80px;
    height: 80px;
}
.users-box .box .card .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.users-box .box .card h6,.users-box .box .card p{
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.users-box .box .card h6{
    margin: 6px 0 0 0;
}
.users-box .box .control-btn .btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    padding: 10px 10px;
}
.users-box .box .control-btn .btn-left{
    left: -10px;
}
.users-box .box .control-btn .btn-right{
    right: -10px;
}
.map-box{
    background: linear-gradient(to left top,var(--color3) 50%,var(--bs-primary));
    padding: 10px;
    margin-top: 40px;
}
.profile-box{
    margin: 50px 0;
    margin-top: 50px;
}
.profile-box-contact{
    margin-top: 100px;
}
.profile-box .profile-image{
    display: flex;
    justify-content: center;
    position: relative;
}
.profile-box .profile-image img{
    width: 150px;
    border-radius: 50%;
    position: relative;
}
.profile-box .profile-image::after{
    content: '';
    width: 150px;
    height: 150px;
    position: absolute;
    background: var(--color5);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
    border-radius: 50%;
    transform: translate(2px);
}
.btn-instagram{
    border-color: var(--color3);
    color: var(--color3);
}
.footer{
    background: var(--color4);
    padding: 20px 0 60px 0;
    margin: 40px 0 0 0;
}
.modal-header .modal-title{
    /* background: #faa; */
    width: 240px;
    height: 50px;
    overflow: hidden;
}
.modal-header .modal-title span{
    display: block;
    padding: 4px;
    transform: translateY(0);
    transition: .2s;
    font-size: 26px;
}
.form-inputs,.section-bar{
    max-height: 0px;
    transition: .2s;
    overflow: hidden;
}
.form-inputs.active,.section-bar.active{
    max-height: 600px;
    padding: 10px;
}
.modal-header .modal-title-active span{
    transform: translateY(-42px);
}
.modal-header .modal-title-active2 span{
    transform: translateY(-92px);
}
body.active{overflow: hidden;}
.menu-bar-back,.menu-bar{transition: .2s;}
.menu-bar-back.active,.menu-bar.active{right:0;}
.menu-bar-back{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 150%;
    background: rgba(0,0,0,.5);
    z-index: 18;
}
.menu-bar{
    background: #fff;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    z-index: 20;
}
.menu-bar ul{
    padding: 0;
    list-style: none;
}
.menu-bar ul li a{
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 20px 0;
    transition: .1s;
    color: #333;
}
.menu-bar ul li a.active{
    background: var(--color3);
    color: #fff;
}
.menu-bar ul li a:hover:not(.active){
    transform: scale(1.1);
    color: var(--color3);
}
#profileInput{
    display: none;
}
.profile-card{
    border: 1px solid #aaa;
    width: 140px;
    height: 140px;
    padding: 6px;
    border-radius: 50%;
    background: conic-gradient(var(--bs-primary) 0deg 0deg, #f8f8f8 0deg 360deg);
    /* background: conic-gradient(var(--bs-primary) 0deg 45deg, #f8f8f8 45deg 360deg); */
    position: relative;
    transition: background 1s;
}
.profile-image-waiting{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 32px;
    padding: 10px;
    border-radius: 50%;
}
.profile-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
}
.profile-card img:last-of-type{
    display: block;
}
.profile-card .btn-parent{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    z-index: 10;
}
.profile-card .btn-delete,.profile-card .btn-upload{
    position: absolute;
}
.profile-card .btn-upload{
    right: 0;
}
.input-search-sugg .search-sugg{
    position: absolute;
    top: 100%;
    z-index: 10;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
    padding: 10px;
    max-height: 200px;
    overflow-y: scroll;
}
.input-search-sugg .search-sugg p{
    padding: 4px;
    margin: 0;
    transition: .2s;
}
.input-search-sugg .search-sugg p:not(:last-child){
    border-bottom: 1px solid #ccc;
}
.input-search-sugg .search-sugg p:hover{
    background: #ddd;
    cursor: pointer;
}
.footer-contact{
    position: fixed;
    bottom: -50px;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    transition: .2s;
    padding: 6px 0;
}
.footer-contact.active{
    bottom: 0;
}
.footer-contact .content{
    width: 300px;
    padding: 4px 0;
}
@media (max-width: 768px){
    .banner-box .banner{
        height: 450px;
        margin-bottom: 40px;
    }
    .banner-box .banner::after {
        background-color: rgba(255, 0, 255, 0.0); /* rgb with transparency */
      }
      .banner-box .details{
        width: 90%;
        /* position: absolute;
        top: 50%;
        left: 50%; */
        transform: translate(-50%,0%);
    }
    .banner-box .details{
        
    }
    .banner-box .details .title{
        text-align: center;
        line-height: 40px;
        background: rgba(255,255,255,.99);
        font-size: 24px;
    }
    .banner-box .details .title .sub .content{
        padding: 6px 30px;
        border-radius: 26px;
        font-size: 18px;
    }
    .banner-box .details .title .sub .content .content2{
        position: absolute;
        bottom: -40px;
        padding: 2px 6px;
        font-size: 16px;
        border-radius: 10px;
    }
    .banner-box .details .btn{
        display: none;
    }
    .short-content .box .title{
        font-size: 18px;
    }
    .about{
        /* margin: 50px 0 0 0; */
    }
    .about .list{
        margin-top:10px;
    }
    .about .list li{
        font-size: 16px;
        padding: 8px 30px;
        margin: 18px 0;
        border-radius: 28px;
    }
    .about .list li i{
        padding: 10px;
        border-radius: 50%;
        margin: 0 10px 0 0;
        transform: scale(1.7) translate(-6px);
    }
    .short-content{
        margin-top: 40px !important;
    }
    .codings{
        display: flex;
        justify-content: center;
        align-items: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 14px;
        text-align: center; 
        margin-top: 30px;
    }
    .codings .item{
        width: 100px;
        display: inline-block;
    }
    .codings .item .title{
        text-decoration: underline;
    }
    .short-heading h1{
        font-size: 18px;
    }
    .users-box .box .card{
        border: 1px solid #444;
        width: 90px;
        padding: 10px;
    }
    .users-box .box .card .image-box{
        width: 70px;
        height: 70px;
    }
    .profile-box{
        margin: 30px 0 0 0;
    }
    .profile-box-contact{
        margin-top: 0px;
    }
}
/* @media (max-width: 768px){
    .codings .item{
        width: 80px;
    }
} */