/* 1 General */
/* font awesome import link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    
}

:root {
    /* background color */

    --primary-color: #FD4766;
    --secondary-color: #0e1525;
    --bg-dark-blue: #091020;
    --bg-white: #fff;
    --text-white: #fff(255, 255, 255);
    --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%, #337DFF 100% 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;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    position: relative;

}

.navbar-nav {
    /* color: white; */

}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-dark-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* .nav-link{
   color: blue !important;
   font-size:17px ;
   font-family: sans-serif;
   letter-spacing: 1px;
    text-decoration:none;
} */
.section {
    padding: 50px 0px;
}

.main-btn {
    display: inline-block;
    border-radius: 50px;
    transition: all .4s ease-in-out;
    padding: 10px 27px;
    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: white;
}

h1 {
    font-size: 54px;
    line-height: 68px;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

h3 {
    font-size: 20px;
    margin-bottom: 19px;
    font-weight: 600;
    color: white;
}

h6 {
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    color: white;
}

p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 400;
}

.subtitle {
    display: inline-block;
    font-weight: 800;
    color: white;
    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;

}


/*  header styling start  */

.header_wrapper .navbar {
    padding: 15px 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.header_wrapper .navbar img {
    max-width: 120px;
    height: auto;
}

.header_wrapper .navbar-toggler {
    border: 0;
    color: white;
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
    box-shadow: none;
}

.header_wrapper .nav-item {
    margin: 0 18px;
}

.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 {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s ease-in-out;
    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:hover {
    color: white;
}

.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--bg-dark-blue);
    -webkit-box-shadow: 0 2px 6px 0 rgba(12, 0, 46.05);
}


/* header style end here */

.banner_wrapper {
    width: 100%;
    height: auto;
    min-height: 650px;
    background-image: url('../images/header/banner-image.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* background-attachment: fixed; */
    padding: 200px 0 100px 0;
    box-shadow: #091020;
}

/* about-nav start */
.about_wrapper {
    padding-top:80px;

}

.about_wrapper .nav-pills .nav-link.about-nav {
    background-color: transparent !important;
    color: var(--text-gray) !important;
    border: none !important;
}

/* about-nav end*/
/*About_wrapper .nav.navpills start  */

.about_wrapper .nav.nav-pills {
    border: 2px solid gray;
    border-radius: 47px;
    outline: none;
}

.about_wrapper .nav.nav-pills .nav-link.active {
    border-radius: 47px;
    background-color: var(--primary-color) !important;
    color: var(--text-gray);
}

.about_wrapper .single-progress .progress-content {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 15px;

}

.about_wrapper .progress {
    height: 5px;

}

.about_wrapper .progress .progress-bar {
    height: 5px;
    background: var(--gradient-color) !important;

}

.about_wrapper .tab-pane li a {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
}

.about_wrapper .tab-pane li {
    font-size: 16px;
    margin-top: 5px;
    list-style: none;
    color: var(--gray-color);
    font-weight: 300;

}

/*About_wrapper .nav.navpills start  */

.about_wrapper .image {
    background: url(../images/about-images/shubham1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 550px;
    min-width: 400px;
    border-radius: 5px;
}


/* service style start */
.services_wrapper{
    padding-top: 80px;
}

.services_wrapper .card {
    background-color: var(--bg-dark-blue);
    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 76px 0px rgb(253 71 102 /5%);
    transform: translateY(-5px);
}

/* service style end */


/* portfolio section style  start */
.portfolio_wrapper{
    padding-top: 80px;
}

.portfolio_wrapper .card{
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--bg-white);
    box-shadow: 0 0 16px 4px var(--bg-dark-blue);

}
.portfolio_wrapper .card span{
    transition: background-position 6s ease-in-out 0s;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-size: cover;
}
.portfolio_wrapper .card:hover span{

    background-position:bottom center;
}
/* portfolio section style  End */

/* contact section start */
/* .contact_wrapper {
    padding-top: 80px;
} */

.contact_wrapper .form-control,
.contact_wrapper textarea{
    background-color: transparent;
    color: var(--text-gray);
    border-color: var(--gray-color);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
}
.contact_wrapper img{
    border: 2px solid white;
    border-radius: 5px;
    height: auto;
    margin-top: 120px;
}

.contact_wrapper .form-control:hover,
.contact_wrapper textarea:hover,
.contact_wrapper .form-control:focus,
.contact_wrapper textarea:focus{
    border-color: var(--primary-color);
    color: white;
}

.contact_wrapper .col_details{
    color: var(--text-gray);
}
.contact_wrapper .col_details a{
    color: var(--text-gray);
    font-weight: 700;

}

/* contact section start */

/* pop up form style start */

.popup_wrapper_show {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}

.popup_wrapper .form-area{
    position: relative;
    padding: 15px;
}
.popup_wrapper .close{
background-color: black;
color: white;
font-size: 64px;
font-weight: 200;
border: none;
position: absolute;
top:10px;
right: 20px;
line-height: 1;
}

/* pop up form style End */