@import url('https://fonts.googleapis.com/css2?family=Proppins:wgth@100;200;300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* background Color */
    --primary-color: #FD4766;
    --secondary-color: #0e1525;
    --bg-dark-blue: #091020;
    --bg-white: #fff;
    --bg-danger: #f63440;
    --bg-light-white: #f5f5f5;
    --gray-color: #c6c9d8bf;
    --gradient-color: linear-gradient(-224deg, var(--primary-color) 0, #337dff 100%);
    --gradient-text: linear-gradient(120deg, #1C99FE 20.69%, #7644ff 50.19% var(--primary-color) 79.69%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-color)', endColorstr='var(--secondary-color)', GradientType=1);
    /* text color */
    --primary-font: 'Poppins', sans-serif;
    --primary-text: #FD4766;
    --text-gray: #c6c9d8bf;
    --text-white: #fff;
}

body {
    font-family: var(--primary-font);
    /* background-color: var(--secondary-color); */
    /* background-image: linear-gradient(to right, rgb(179, 143, 143),rgb(231, 205, 157),rgb(248, 248, 203),rgb(176, 218, 176),rgb(179, 143, 143),rgb(235, 187, 194),rgb(179, 143, 143)); */
    background: #212428;
}

a {
    text-decoration: none;
}


/* custom CSS */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-dark-blue);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

section {
    padding: 30px 0;
}

.main-btn {
    display: inline-block;
    border-radius: 5px;
    transition: all .4s ease-in-out;
    padding: 10px 27px;
    background-color: transparent;
    border: 2px solid var(--gray-color);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.main-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

h1 {
    font-size: 54px;
    line-height: 68px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 19px;
}

h6 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text-gray);
    display: block;
    margin-bottom: 10px;
}

p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 400;
}

.subtitle {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 18px;
    font-size: 16px;
    margin-bottom: 12px;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input:hover,
input:focus,
textarea:focus,
textarea:hover,
button {
    outline: none !important;
    box-shadow: none !important;
}


/* Navbar style */

.header_wrapper .navbar {
    padding: 15px 0;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.header_wrapper .navbar-brand img {
    max-width: 120px;
    height: auto;
}

.header_wrapper .navbar-toggler {
    border: 0;
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
    box-shadow: none;
}

.header_wrapper .nav-item {
    margin: 0 10px;
}

.header_wrapper .nav-item .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    display: inline-block;
}

.header_wrapper .nav-item .nav-link::after {
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
    bottom: 0;
}

.header_wrapper .nav-item .nav-link.active::after,
.header_wrapper .nav-item .nav-link:hover::after {
    width: 100%;
}

.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
    color: var(--text-white);
}

.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #091020;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, .05);
    -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, .05);
    border-bottom: 2px solid #6805a1;
}

.header-scrolled .nav-item .nav-link.active,
.header-scrolled .nav-item .nav-link:hover {
    color: var(--primary-text);
}


/* Banner style */

.banner_wrapper {
    width: 100%;
    height: auto;
    min-height: 650px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 200px 0 100px 0;
}
.banner_wrapper h1 {
    background-image: linear-gradient(-225deg,#231557 0%,#44107a 29%,#ff1361 67%,#fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* .banner_wrapper h1 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(255deg, rgb(230, 101, 101), rgb(218, 132, 3), rgb(238, 65, 65));
    background-repeat: no-repeat;
    background-size: 70%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(138, 30, 30, 0);
}

@keyframes animate {
    0% {
      background-position: -300%;
    }
    100% {
      background-position: 300%;
    }
} */


.animate{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

.banner{
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

@-webkit-keyframes fadeLeft{
    from{
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeLeft{
    from{
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeLeft{
    animation-name: fadeLeft;
    -webkit-animation-name: fadeLeft;
}


/* About style */

.about_wrapper ul.nav-pills {
    background: #29323C;
    padding: 5px;
}

.about_wrapper ul li .nav-link {
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
    display: inline-block;
    color: var(--text-gray);
    border: 0;
    border: 1px solid #B45B9E;
}

.about_wrapper ul li .nav-link.active {
    background-image: linear-gradient(to right, #B65A9B ,#676FD7);
}

.about_wrapper .single-progress {
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}

.about_wrapper .single-progress .progress {
    height: 10px;
    border-radius: 4px;
    box-shadow: none;
    background-color: var(--bg-white);
    overflow: visible;
}

.about_wrapper .single-progress .progress-bar {
    background-image: var(--gradient-color);
}

.about_wrapper .single-progress h6 {
    text-align: left;
}

.about_wrapper .single-progress .label {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-gray);
    font-size: 15px;
}

.about_wrapper .tab-pane li {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 300;
    list-style: none;
}

.about_wrapper .tab-pane li a {
    font-weight: 500;
    display: block;
    color: var(--text-gray);
}
.card-experiance {  
    /* background-color: #061e42; */
    background: #29323c;
    color: #fff;
    padding: 12px 0;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 2px solid #FD4766;
    border-right: 2px solid #FD4766;
}
.card-experiance .media-body span {  
    font-size: 12px;
    
}
.card-education {  
    background: #29323c;
    color: #fff;
    padding: 12px 0;
    border-radius: 5px;
    margin-bottom: 10px;
    border-top: 2px solid #FD4766;
    height: 140px;
    overflow: hidden;
}
.card-education p { 
    font-size: 12px; 
    padding: 5px;
    line-height: 20px;
    margin-bottom: 0;
}
.card-education .media-body span {  
    font-size: 12px;
    
}

.reveal{
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}
  
.reveal.active{
transform: translateY(0);
opacity: 1;
}

.experiance{
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

@-webkit-keyframes fadeRight{
    from{
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeRight{
    from{
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeRight{
    -webkit-animation-name: fadeRight;
    animation-name: fadeRight;
}

.education{
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
}

@-webkit-keyframes fadeUp{
    from{
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeUp{
    from{
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to{
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeUp{
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
}

/* Service style */

.services_wrapper .card {
    background-color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
    box-shadow: 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}

.services_wrapper .card:hover {
    box-shadow: 0px 2px 70px 0px rgb(253 71 102 / 5%);
    transform: translateY(-5px);
    background-color: #0e1525;
}

.reveal1{
    transform: translateX(100px);
    opacity: 0;
    transition: 1s all ease;
}
  
.reveal1.active{
transform: translateX(0);
opacity: 1;
}


/* Portfolio style */

.portfolio_wrapper .card {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border: 1px solid var(--bg-white);
    cursor: pointer;
    box-shadow: 0 0 16px 4px var(--bg-dark-blue);
}

.portfolio_wrapper .card span {
    transition: background-position 4s ease-in-out 0s;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-size: cover;
}

.portfolio_wrapper .card:hover span {
    background-position: bottom center;
}

/* Testimonial Section Here */
/* .testimonial {
    padding: 5rem 0 8rem;
} */

.testimonial .testimonial-wrapper {
    box-shadow: 0 0 0.563rem 0 rgb(0 0 0 / 5%);
    background: #29323c;
    margin: auto;
    padding: 1rem 1rem;
    border: 0.063rem solid #8e354a;
    border-radius: 0.625rem;
}

.testimonial .testimonial-wrapper .testimonial-img {
    box-shadow: 0 0px 3px #000;
}
.testimonial .testimonial-wrapper .username {
    box-shadow: 0 0px 3px #000;
    height: 301px;
}
.testimonial .testimonial-wrapper .testimonial-img img {
    border-radius: 10px;
    width: 250px;
    height: 200px;
    object-fit: cover;
}
.testimonial .testimonial-wrapper .testimonial-img h4 {
    background: var(--gradient-color);
    font-size: 20px;
    padding: 5px 0;
    color: #fff;
}

.testimonial .testimonial-wrapper span {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    margin: 1rem 0;
    display: block;
}

.testimonial .testimonial-wrapper p {
    color: var(--text-gray);
    font-size: 0.875;
    font-weight: 300;
}

.testimonial .carousel-indicators [data-bs-target] {
    background-color: #f10a29;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
    background: transparent;
}

.testimonial .carousel-indicators {
    bottom: -3rem;
}

.testimonial .slider-icon {
    font-size: 3rem;
    font-weight: 600;
    color: #f80415;
}

.testimonial .carousel-control-prev {
    left: -8.75rem;
}

.testimonial .carousel-control-next {
    right: -8.75rem;
}

/* Happy Client Section here */

.client_wrapper .main-content {
    padding: 0 15px;
}
.client_wrapper .main-content .inner {
    background: linear-gradient(145deg, #111318, #1e2a36);
    /* box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e; */
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.client_wrapper .main-content .inner:hover {
    background: linear-gradient(90deg, #071530, #16212c);
}
.client_wrapper .main-content .inner::after {
    content: "";
    position: absolute;
    transition: 0.4s;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    top: 0;
    left: 0;
    background: linear-gradient(to right bottom, #212428, #16181c);
    opacity: 0;
    z-index: -1;
    border-radius: 8px;
}
.client_wrapper .main-content .thumbnail {
    height: 150px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 30px;
}
.client_wrapper .main-content .thumbnail {
    display: block;
}
.client_wrapper .main-content .seperator {
    position: relative;
    z-index: 2;
}
.client_wrapper .main-content .seperator::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1d23;
    z-index: -1;
}

.client_wrapper .main-content .client-name {
    padding-bottom: 1px;
    padding-top: 16px;
    margin: 0;
    color: #7c838e;
}
.client_wrapper .main-content .client-name a {
    transition: 0.4s;
    color: #7c838e;
    font-size: 18px;
}
.client_wrapper .main-content .client-name a:hover {
    color: #f10a29;
}

/* Conatct style */

.contact_wrapper .form-control,
.contact_wrapper textarea {
    background-color: transparent;
    border-color: var(--gray-color);
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 10px;
}

.contact_wrapper .form-control:hover,
.contact_wrapper textarea:hover,
.contact_wrapper .form-control:focus,
.contact_wrapper textarea:focus {
    border-color: var(--primary-color);
    color: var(--text-white);
}

.contact_wrapper .call_details {
    color: var(--text-gray);
}

.contact_wrapper .call_details a {
    font-weight: 700;
    color: var(--text-gray);
}


/* Footer style */

.footer_wrapper {
    background-color: var(--bg-dark-blue);
    padding: 20px 0;
}

.footer_wrapper .footer-logo img {
    width: 100px;
}

.footer_wrapper .social-icon li {
    margin: 6px;
}

.footer_wrapper .social-icon a {
    width: 35px;
    height: 35px;
    line-height: 30px;
    font-size: 14px;
    display: inline-block;
    border: 2px solid var(--text-gray);
    text-align: center;
    border-radius: 100%;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-icon a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 10px 15px 0 rgb(0 0 0 / 100%);
    transform: translateY(-3px);
}

.footer_wrapper .copyright-text p {
    font-size: 11px;
    line-height: 20px;
}

.footer_wrapper .copyright-text a {
    color: var(--primary-color);
}

/* CV PDF Style */
