:root {
    --theme-templates: #1B1B1B;
    --theme-bg1: #1F1F1F;
    --theme-text: #B4B4B4;
    --theme-hover: #969696;
    --theme-white: #ECECEC;
    --theme-box-shadow: #343434eb;
}

html {
    font-family: "Ubuntu", sans-serif;
}

body {

    background: var(--theme-bg1);
    color: var(--theme-white);
}


main {
    width: calc(100% - 300px);
    margin-left: auto
}

@media(max-width:1199px){
main{
    width: 100%;
}
}

.navigation {
    margin-left: 20px;
    transform: translateY(-50%);
    background-color: var(--theme-templates);
    border: 1px solid #ffffff2f;
    padding: 15px;
    border-radius: 20px;
    transition: all 0.2s ease-in;
    z-index: 999;
}

nav .nav-link {
    color: var(--theme-hover);
    transition: all 0.3s ease;
}

nav .nav-link:hover {
    color: var(--theme-white) !important;
}

nav .active {
    color: var(--theme-white) !important;
}

.social-links li i,
.social-links-2 li i {
    color: var(--theme-white);
    line-height: 40px;
    transition: all 0.5s ease;
}

.social-links li:hover i,
.social-links-2 li:hover i {
    color: var(--theme-bg1) !important;
}

.social-links li {
    border: 1px solid #ffffff0c !important;
    background: var(--theme-bg1);
    height: 40px !important;
    width: 40px !important;
    transition: all 0.5s ease;
}

.social-links li:hover {

    background: var(--theme-white);
    font-weight: bolder;
    color: var(--theme-bg1);


}

.social-links-2 li i {
    line-height: 50px;
}

.social-links-2 li {
    border: 1px solid #ffffff0c !important;
    background: var(--theme-templates);
    height: 50px !important;
    width: 50px !important;
    transition: all 0.5s ease;
}

.social-links-2 li:hover {
    background: var(--theme-white);
    font-weight: bolder;
    color: var(--theme-bg1);
    box-shadow: rgb(251, 250, 250) 0px 5px 50px -14px;
}


.navbar-toggler-icon{
    background: var(--theme-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    color: var(--theme-bg1);
}

.navbar-toggler:focus {
    border: none !important;
    box-shadow: none;
}

/* Custom CSS to handle the icon toggle */
.navbar-toggler[aria-expanded="false"] .close-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .open-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline-block;
}

.snap span,
.proffesion span {
    border-bottom: 2px solid var(--theme-white) !important;
}

.snap {
    font-size: 70px;
}
.button .btn-light,
.button .btn-outline-light {
    border-radius: 50px !important;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-white) !important;
}

.button .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: rgb(248, 244, 244) 0px 5px 40px -14px;
}

.button .btn-outline-light:hover {
    transform: translateY(-2px);

}

.hero {
    z-index: 999;
}

.hero-detail p {
    line-height: 1.5;
    color: var(--theme-text);
}

.hero-detail-img img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 30px;
}

.hero-detail-img {
    width: 400px;
    height: 400px;
    border-radius: 30px;
    box-shadow: #343434 15px 15px;
}

.circle {
    position: absolute;
    animation-delay: 2s;
    border-radius: 50%;
    background:  var(--theme-box-shadow);
    z-index: -1;
    animation-delay: 0s;
}

 .circle-2 {
    bottom: 50%;
    left: 20%;
    z-index: -1;
    width: 300px;
    height: 300px;
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    left: 10%;
    
    margin-top: 80px;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(4px);
    }
}

.divider{
    height: 100px;

}

.profile-img img , .profile-img{
    width: 180px;
    height: 180px;
    vertical-align: middle;
    object-fit: cover;
}
.profile-img img{
    border:3px solid var(--theme-white) !important;
}
.sm-circle{
    top: 60%;
    left: 80%;
    width: 30px;
    height: 30px;
    background: var(--theme-white);
    border:3px solid var(--theme-bg1) !important;
}
.sm-circle .bi-check-circle-fill{
     line-height: 25px;
    justify-content: center;
    color: var(--theme-bg1);
}
.proflie-card{
    width: 100%;
    height: 600px;
    background: var(--theme-white) !important;
    border: 2px solid var(--theme-text) !important;
}