@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* new */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --font-family:'Montserrat', sans-serif;
    --font-syne: "Syne", sans-serif;
    --font-lato: "Lato", sans-serif;
    --text-theme:#ff9142;
    --bg-body:#1A1A1A;
    --bg-dark-gray:#525252;
    --bg-banner:#1D1D1D;
    --bg-white: #ffffff;
    --bg-blur:rgba(255, 255, 255, 0.08);
    --text-white:#fff;
    --text-gray: #929292;
    --text-sm-lite:#EEE;
    --text-md-lite:#DDD;
    --text-sky-like:#BECBFB;
    --bg-theme:#ff9142;
    --border-gray: #BFBFBF;
    --border-white-60: rgba(255, 255, 255, 0.60);
    --text-change-14: 14px;
    --text-change-16: 16px;
    --text-change-18: 18px;
    --text-change-20: 20px;
    --text-change-22: 22px;
    --text-change-24: 24px;
}

*:focus-visible{
    outline: none;
}

body{
    background: var(--bg-body);
    font-family: var(--font-family);
    color: var(--text-white);
}

.white-space-pre-line{
    white-space: pre-line;

}
.word-break-break-all{
    word-break: break-all;
}
.bg-dark{
    background: var(--bg-body) !important;
}

.bg-dark-gray{
    background: var(--bg-dark-gray) !important;
}

.bg-blur{
    background: var(--bg-blur);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
}

.btn{
    font-size: 14px;
    font-family: var(--font-lato);
    border-radius: 45px;
    font-weight: 500;
    line-height: normal;
    padding: 10px 25px;
    outline: none;
}
.btn-primary{
    background: var(--bg-theme);
    border: 1px solid var(--text-theme);
    color: var(--text-white);

}


.btn-primary:hover, .btn-primary:not(.btn-check) + .btn-primary:active, .btn-primary:focus-visible, :not(.btn-check)+.btn:active{
    background: transparent;
    color: var(--text-theme);
    border: 1px solid var(--text-theme);
    box-shadow: none;
}

.btn-primary-outline{
    border: 1px solid var(--border-white-60);
    color: var(--text-theme);
}
.btn-primary-outline:hover, .btn-primary-outline:not(.btn-check) + .btn-primary-outline:active, .btn-primary-outline:focus-visible{
    border: 1px solid var(--border-white-60);
    color: var(--text-white);
    background: var(--bg-theme);
}


.btn.btn-primary-outline:hover .spinner-border.text-theme{
    color: white;
}
.btn.btn-primary-outline .spinner-border.text-theme{
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-right-arrow{
    padding: 0px;
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
}

.bg-primary{
    background: var(--bg-theme) !important;
    color: var(--text-white);
}

.text-gradient{
    background: var(--bg-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-card-body{
    background: var(--bg-card-body);
}

a.text-inherit{
    color: inherit !important;
}
.text-theme{
    color: var(--text-theme);
}
.text-sm-lite{
    color: var(--text-sm-lite);
}
.text-md-lite{
    color: var(--text-md-lite);
}
.text-sky-like{
    color: var(--text-sky-like);
}
.text-gray{
    color: var(--text-gray);
}

.border{
    border: 1px solid var(--border-gray) !important ;
}

.mb-n4{
    margin-bottom: -1.5rem !important;
}

.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}

.text-change-14{
    font-size: var(--text-change-14);
}
.text-change-16{
    font-size: var(--text-change-16);
}
.text-change-18{
    font-size: var(--text-change-18);
}
.text-change-20{
    font-size: var(--text-change-20);
}
.text-change-22{
    font-size: var(--text-change-22);
}
.text-change-24{
    font-size: var(--text-change-24);
}

.rounded-5{
    border-radius: 5px;
}
.rounded-10{
    border-radius: 10px;
}
.rounded-15{
    border-radius: 15px;
}
.rounded-20{
    border-radius: 20px;
}
.rounded-25{
    border-radius: 25px;
}

.card {
    --bs-card-border-color: #FFFFFF59;
}

a{
    color: var(--text-white);
    text-decoration: none;
}
a:hover{
    color: var(--text-white);
}

.object-fit-contain{
    object-fit: contain;
}
.object-fit-cover{
    object-fit: cover;
}

.ratio-16-9{
    aspect-ratio: 16 / 9;
}
.ratio-16-12{
    aspect-ratio: 16 / 12;
}
.ratio-16-13{
    aspect-ratio: 16 / 13;
}
.ratio-16-14{
    aspect-ratio: 16 / 14;
}

.line-clamp-1{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section{
    padding: 90px 0px;
}

.animation-left-right {
    /* bottom: 15%; */
    position: relative;
    -webkit-animation: linear infinite;
    -webkit-animation-name: animationLeftRight;
    -webkit-animation-duration: 20s;
}
@-webkit-keyframes animationLeftRight {
    0% {
        right: 0;
    }
    50% {
        right: calc(100% - 62px);
    }
    100% {
        right: 0;
    }
}

.sub-title{
    color: var(--title, #FFF);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}
.pera{
    color: var(--description, #DDD);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.index-1{
    z-index: 1;
}

.list-style-none{
    list-style-type: none;
    padding: 0px;
}



.text-ellipsis-2 {
    display: -webkit-box;
    max-height: 42px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/* Start Form Controller */
input::placeholder, textarea::placeholder  {
    color: rgba(255,255,255,.3)!important;
}
::-ms-input-placeholder { /* Edge 12-18 */
    color: rgba(255,255,255,.3)!important;
}
.form-control {
    display: block;
    width: 100%;
    padding: 15px 15px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #DDD;
    background-color: transparent;
    background-clip: padding-box;
    border: 2px solid #FFFFFF59;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #ffffff;
    background-color: #ffffff1a;
    border-color: #6a6a6a;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #5d5d5d40;
}
/* End Form Controller */



/* Start Header */
.sec-header{
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
.sec-header .navbar{
    padding: 10px 0px;
}

.sec-header.sec-header-sticky{
    backdrop-filter: blur(10px);
    /* transition: all 0.4s ease; */
    -webkit-backdrop-filter: blur(5.5px);
    background-color: #0000003b;
}
.sec-header::before{
    content: '';
    opacity: 0;
    background-color: #0000003b;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s;
}
.sec-header.sec-header-sticky::before{
    opacity: 1;
}
.sec-header .navbar-nav .nav-link{
    color: var(--text-white);
    font-family: var(--font-lato);
}
.sec-header .navbar-nav .nav-link.active{
    color: var(--text-theme);
}
.sec-header .navbar-nav .nav-link:hover{
    color: var(--text-theme);
}
.nav-logo{
    width: 60px;
    height: 60px;
}
.navbar-toggler{
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
/* End Header */


/* Start banner-sec */
.banner-sec{
    background-color: var(--bg-banner);
}
.banner-img{
    background-image: url(../images/banner-bg.png);
    width: 100%;
    height: 100%;
    display: inline-block;
    background-position: center ;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 80px 0px;
}
.banner-main-title{
    font-size: 65px;
    font-weight: 700;
    font-family: var(--font-syne);
}
.banner-sec .banner-list{
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.banner-sec .banner-list li:nth-child(1), .banner-sec .banner-list li:nth-child(2){
    border-right: 1px solid #FFFFFF59;
    /* padding: 10px; */
    padding-right: 35px;
    margin-bottom: 10px;
    margin-right: 35px;
}
.banner-sec .banner-list li p{
    font-size: var(--text-change-20);
}
.banner-sec .banner-list li a{
    font-size: var(--text-change-28);
    color: var(--text-md-lite);
}
/* End banner-sec */
/* Start About-me-sec */
.about-me-sec .text-content h2{
    font-family: var(--font-syne);
    font-size: 60px;
    font-weight: 600;
    max-width: 550px;

}
.about-me-sec .text-content p{
    font-size: 18px;
    max-width: 750px;
    line-height: 30px;
    letter-spacing: 1px;
}
.about-me-sec .image-content img{
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 20px;
    filter: brightness(0.8);
}
.about-me-sec::before{
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: 30px;
    left: -10px;
    border-radius: 100%;
    background: #ffffffbc;
    filter: blur(130px);
    /* background-image: url(../images/bg-light-round.png); */
}
.about-me-sec .image-content span::before{
    content: "";
    width: 80px;
    height: 25px;
    position: absolute;
    top: -15px;
    right: 30px;
    border-radius: 25px;
    border: 1px solid var(--bg-theme);
    z-index: 1;
}
.about-me-sec .image-content span::after{
    content: "";
    height: 180px;
    width: 35px;
    position: absolute;
    bottom: 35px;
    left: -25px;
    border-radius: 25px;
    border: 1px solid var(--bg-theme);
    z-index: 1;
}


/* End About-me-sec */
/* Start title-sec */
.title-img h3{
    font-family: var(--font-syne);
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* End title-sec */

/* Start projects-highlight-sec */
.project-card:before {
    content: '';
    background:  linear-gradient(179.24deg, rgb(22 22 22 / 18%) 39.1%, rgb(22 22 22 / 48%) 65.92%, #161616ab 96.84%);;
    /*background: #383838;*/
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 14px;
    z-index: 1;
    /* transition: 0.4s; */
}
.project-card .card-content {
    position: absolute;
    bottom: 0px;
    padding: 10px 10px 20px 10px;
    z-index: 2;
}
.project-card .card-content h5{
    font-family: var(--font-lato);
    font-size: 17px;
    font-weight: 600;
}
.project-card .card-content p{
    font-size: 14px;
    font-weight: 200;
}
.projects-sec::before{
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0px;
    right: 25%;
    border-radius: 100%;
    background: #ffffffbc;
    filter: blur(140px);
}
/* End projects-highlight-sec */
/* Start service-sec */
.service-card{
    background: linear-gradient(225deg, #181919 0%, #444444 100%);
}
.service-card h4{
     font-size: 24px;
}
.service-card p{
    font-size: 16px;
}
.service-card .service-icon{
    height: 80px;
    width: 80px;
}

/* End service-sec */
/* Start Testimonials-sec */

.testimonials-sec::before{
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 30%;
    left: -2%;
    border-radius: 100%;
    background: #ffffff;
    filter: blur(140px);
}
.testimonials-bg::before {
    content: "";
    background-image: url(../images/testimonial-bg-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -60px;
    right: 46px;
    width: 180px;
    height: 180px;
    opacity: 0.7;
    z-index: 0;
}
.testimonials-bg::after {
    content: "";
    background-image: url(../images/testimonial-bg-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 48px;
    bottom: -6px;
    width: 250px;
    height: 250px;
    opacity: 0.7;
    z-index: -1;
}
.swiper{
    overflow: unset;
}
.testimonials-card-body::before{
    content: "";
    background-image: url(../images/quot.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    bottom: -22px;
    width: 150px;
    height: 100px;
}
.swiper-button-next::after, .swiper-button-prev::after{
    font-family: remixicon;
    font-size: 22px;
    color: var(--text-theme);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.swiper-button-next, .swiper-button-prev{
    width: 50px;
    height: 50px;
}
.swiper-button-next::after {
    content: "\ea6c" !important;
}
.swiper-button-prev::after {
    content: "\ea60" !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: 0px;
    right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 0px;
    left: auto;
}

/* End Testimonials-sec */
/* Start footer-sec */
.footer{
    background-color: #131313;
}
.footer-title{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}
.footer-card p{
    font-size: 16px;
    max-width: 650px;
    color: var(--text-gray);
}
.btn-social{
    background-color: #000000;
    padding: 15px;
    color: #fff;
    box-shadow: 0px -5.630000114440918px 2.25px -3.375px #FFFFFF94 inset;
    transition: .6s;
}
.social-media{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.social-media a:hover{
    transform: translate(0, -10%);
}

.social-media a:nth-child(1):hover{
    background-color: #1DA1F2;
}
.social-media a:nth-child(2):hover{
    background-color: #25D366;
}
.social-media a:nth-child(3):hover{
    background-color: #0077b5;
}
.social-media a:nth-child(4):hover{
    background-color: #E4405F;
}
.social-media a:nth-child(5):hover{
    background-color: #3B5998;
}
.social-media a:nth-child(6):hover{
    background-color: rgb(255, 255, 255);
    color: #000000;
}


/* End footer-sec */

/* Start Projects List */
    .title-top .title-content{
        border-bottom: 1px solid #848484;
        padding: 40px 0px;
    }
    .title-top::before{
        content: "";
        width: 200px;
        height: 200px;
        position: absolute;
        top: 65px;
        left: -10px;
        border-radius: 100%;
        background: #ffffffbc;
        filter: blur(120px);
    }
    .title-top h2{
        font-family: var(--font-syne);
        font-size: 50px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    .spiner {
        animation: spiner 1s infinite linear;
    }
    @keyframes spiner {
        0% {
            transform: rotate(0);
        }

        100% {
            transform: rotate(360deg);
        }
    }

/* End Projects List*/
/* Start Projects Detail */
    .project-logo{
        height: 70px;
        width: 70px;
        object-fit: contain;
        background: #ffffff;
        padding: 10px;
    }
    .max-height-350px{
        height: 350px;
    }
/* End Projects Detail*/


.other-projects-sec .title{
    font-family: var(--font-syne);
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}


/* Start About Me Detail*/
.about-me-detail-title h2{
    font-family: var(--font-syne);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}


.animated-progress {
    position: relative
}
.animated-progress .progress-bar {
    position: relative;
    border-radius: 6px;
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0
    }
}
@keyframes animate-positive {
    0% {
        width: 0
    }
}
.custom-progress {
    height: 9px;
    padding: 2px;
    border-radius: 30px;
    background-color: #643d22;
}
.custom-progress .progress-bar {
    position: relative;
    border-radius: 30px
}
/* .custom-progress .progress-bar::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 7px;
    right: 3px;
    top: 50%;
    -webkit-transform: translateY(-56%);
    transform: translateY(-56%);
} */
.progress-label {
    overflow: visible
}
.progress-label .progress-bar {
    position: relative;
    overflow: visible
}

.progress-label .progress-bar .label {
    position: absolute;
    top: -25px;
    right: -14px;
    background-color: #643d22;
    color: #fff;
    display: inline-block;
    line-height: 18px;
    padding: 0 4px;
    border-radius: 4px;
}
.progress-label .progress-bar .label:after {
    content: "";
    position: absolute;
    border: 4px solid transparent;
    border-top-color: #643d22;
    bottom: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

/* skills */
.skills-sec .image-content img {
    max-width: 100%;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.8);
}

.skills-sec .image-content span::before{
    content: "";
    width: 80px;
    height: 25px;
    position: absolute;
    top: -15px;
    right: 30px;
    border-radius: 25px;
    border: 1px solid var(--bg-theme);
    z-index: 1;
}
.skills-sec .image-content span::after{
    content: "";
    height: 180px;
    width: 35px;
    position: absolute;
    bottom: 35px;
    left: -25px;
    border-radius: 25px;
    border: 1px solid var(--bg-theme);
    z-index: 1;
}

/* End About Me Detail*/

.navbar-toggler-icon{
    width: 25px;
    height: 25px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* shimmer  */
.shimmer-nl badge,
.shimmer-nl h2,
.shimmer-nl h3,
.shimmer-nl h4,
.shimmer-nl h5,
.shimmer-nl h6,
.shimmer-nl button,
.shimmer-nl input,
.shimmer-nl i,
.shimmer-nl del,
.shimmer-nl p,
.shimmer-nl li,
.shimmer-nl span{
    opacity: 0.3;
    border-radius: 5px;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: darkgray !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}
.shimmer-nl img{
    opacity: 0.3;
    border-radius: 0;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: darkgray !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}

/* shimmer  */

.shimmer-nl .project-card:before{
    background: #383838;
}

pre {
    font-family: var(--font-family);
}
