*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
@font-face {
    font-family: Amaranth-Regular;
    src: url(./font/Amaranth-Regular.ttf);
}
@font-face {
    font-family: Amaranth-bold;
    src: url(./font/Amaranth-Bold.ttf);
}
:root{
    --font-regular: Amaranth-Regular;
    --font-bold: Amaranth-bold;
    --bg-color: #101010;
    --bg-color-2: #1a1431;
    --text-color: #FF3B4D;
    --pra-color: #bdbdbd;
    --btn-color: #EE1B24;
    /* --text-hover: ; */
    --btn-hover: #B21419;
}
body{
    font-family: var(--font-regular) !important;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.80) 35%), url(./image/bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    max-width: 1600px;
}
p{
    font-size: 20px;
    color: var(--pra-color) !important;
    line-height: 30px;
}
h2{
    font-size: 42px !important;
    font-family: var(--font-bold);
    color: var(--text-color);
}
.section{
    width: 100%;
    padding: 50px 0;
}



/* =================== */
/* navigation section */
/* =================== */
.navigation_section{
    background: #221a3f; 
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar{
    padding: 3px 0 !important;
}
.navigation_section nav .nav-item .nav-link{
    color: #fff !important;
    font-size: 19px;
    padding: 0 12px;
    transition: all 0.4s ease;
}
.navigation_section nav .nav-item .nav-link:hover{
    color: var(--btn-color) !important;
}
.navbar-brand{
    width: 65px;
}
.navbar-brand img{
    width: 100%;
}
.hire_form a .btn{
    background: var(--btn-color);
    font-weight: 600;
    font-family: var(--font-bold);
    padding: 5px 15px;
    margin-left: 20px;
    transition: all 0.4s ease;
}
.hire_form a .btn:hover{
    background: var(--btn-hover);
}
button.navbar-toggler {
    color: var(--text-color) !important;
}
button.navbar-toggler span i{
    color: var(--text-color) !important;
}





/* =================== */
/* home section */
/* =================== */
.home_section{
    width: 100%;
    min-height: 90vh;
    background: linear-gradient(306deg, #221A3F 0%, #030207 50%, #221A3F 100%); 
}
.home_section .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    height: 90vh;
}
.home_left_colum .home_content h2{
    font-size: 42px;
}
.home_left_colum .home_content h3 {
    margin: 15px 0;
    background: linear-gradient(40deg, rgb(238 27 36) 0%, rgb(11 8 21) 90%);
    padding: 4px 0 4px 10px;
    color: #fff;
    font-size: 30px;
    border-radius: 8px 0 0 8px;
}
.button_box a .contact_btn{
    border: 1px solid var(--btn-color);
    font-size: 22px;
    padding: 5px 20px;
    border-radius: 25px;
    z-index: 1;
    position: relative;
    margin-right: 20px;
}
.button_box a .contact_btn::before{
    content: '';
    position: absolute;
    left: 0%;
    top: 0%;
    bottom: 0%;
    width: 0%;
    height: 100%;
    border-radius: 25px;
    background: var(--btn-color);
    z-index: -1;
    transition: all 0.4s ease;
}
.button_box a .btn:hover::before{
    width: 100%;
}
.home_hire_form a .btn{
    border: 1px solid var(--btn-color);
    font-size: 22px;
    padding: 5px 20px;
    border-radius: 25px;
    z-index: 1;
    transition: all 0.4s ease;
    position: relative;
}
.home_hire_form a .btn::before{
    content: '';
    position: absolute;
    left: 0%;
    top: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: var(--btn-color);
    z-index: -1;
    transition: all 0.4s ease;
}
.home_hire_form a .btn:hover::before{
    width: 0%;
}


/* home_right_colum */
.home_right_colum {
    text-align: center;
    position: relative;
    height: 100%;
}
.home_right_colum img {
    width: 65%;
    filter: drop-shadow(0px 0px 30px #0c0c0c);
    opacity: 0.8;
    position: absolute;
    right: 0%;
    bottom: 0;
    text-align: center;
    /* display: none; */
}







/* =================== */
/* services section */
/* =================== */
.services_section{
    background: var(--bg-color);
}
.services_head_content{
    margin-bottom: 50px;
}
.services_head_content h4{
    color: var(--pra-color);
}
.services_head_content p{
    width: 60%;
    margin: auto;
    text-align: center;
}
.services_box{
    padding: 30px;
    text-align: center;
    background: #1c1c1c;
    border-radius: 10px;
    min-height: 100%;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.services_box:hover{
    background: var(--btn-hover);
}
.services_box i{
    background: var(--text-color);
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 35px;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.services_box h3{
    color: #ddd;
    margin: 20px 0;
}
.services_box:hover i{
    background: #fff;
    color: var(--text-color);
}








/* =================== */
/* services section */
/* =================== */
.about_section{
    background: var(--bg-color-2);
}
.about_left .image img{
    width: 100%;
    border-radius: 10px 0 0 10px;
}
.about_content{
    background: #211940;
    padding: 30px;
    min-height: 100%;
    border-radius: 0px 10px 10px 0px;
}
.about_content h4{
    color: var(--text-color);
}
.about_content p span{
    color: var(--text-color);
}
.about_content .myskils{
    color: #fff;
}







/* =================== */
/* skils section */
/* =================== */
.skils_section {
    background: var(--bg-color);
    color: #fff;
}
.all_skils_box {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.skils_box{
    width: 46%;
}
.skils_name{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ddd;
}
.skils_ber{
    width: 100%;
    height: 14px;
    background: #aaaaaa;
    border-radius: 3px;
}
.skils_per{
    height: 14px;
    background: linear-gradient(90deg, rgb(130, 3, 215) 0%, rgb(187, 3, 219) 66%, rgb(220, 4, 166) 100%);
    border-radius: 3px;
    position: relative;
    animation: filebars 2.5s 1;
}
.skils_per::after {
    content: attr(per);
    position: absolute;
    /* width: 40px;
    height: 25px; */
    padding: 3px 7px;
    background: linear-gradient(90deg, rgba(153,0,255,1) 0%, rgba(216,0,255,1) 66%, rgba(255,0,191,1) 100%);
    top: -38px;
    right: 0;
    text-align: center;
    transform: translateX(50%);
}
.skils_per::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(90deg, rgba(153,0,255,1) 0%, rgba(216,0,255,1) 66%, rgba(255,0,191,1) 100%);
    top: -26px;
    right: 0;
    transform: rotate(45deg) translateX(50%);
}

@keyframes filebars{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}








/* =================== */
/* portfolio section */
/* =================== */
.portfolio_box img{
    width: 100%;
    border-radius: 5px;
    opacity: 0.9;
    transition: all 0.4s ease;
}
.portfolio_box img:hover{
    opacity: 1;
    transform: translateY(-10px);
}








/* =================== */
/* testimonial section */
/* =================== */
.testimonial_section{
    background: var(--bg-color-2);
    padding-bottom: 100px;
}
.carousel-inner{
    padding-top: 50px;
}
.carousel_items_all{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.carousel-item .carousel_item_box {
    width: 43% !important;
    margin: auto;
}
.carousel_box{
    padding: 60px 30px 20px;
    background: var(--bg-color);
    text-align: center;
    min-height: 350px;
    position: relative;
}
.carousel_box img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
}
.carousel_box h4{
    color: var(--text-color);
    font-family: var(--font-bold);
    margin-bottom: 12px;
    font-size: 25px;
}
.carousel_box h5{
    color: #ddd;
    font-size: 22px;
    margin-bottom: 15px;
}
.carousel_box .star_box i{
    color: rgb(213, 213, 16);
    font-size: 20px;
}
.carousel-indicators{
    bottom: -20% !important;
}
.carousel-indicators [data-bs-target] {
    width: 13px !important;
    height: 13px !important;
    background-color: var(--text-color) !important;
}









/* =================== */
/* contact section */
/* =================== */
.contact_section{
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%); 
}
.contact_left {
    background: #0000008c;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100%;
    color: #000;
    border-radius: 5px;
    box-shadow: 0px 0px 7px -1px var(--text-color);
}
.contact_left h1{
    font-size: 50px;
    font-family: var(--font-bold);
    color: #e4e4e4;
    margin-bottom: 15px;
}
.contact_left h3{
    color: var(--text-color);
    margin-bottom: 20px;
}
.contact_left .address, .name, .number, .email{
    color: var(--pra-color);
    font-size: 22px;
    margin-bottom: 10px;
}
.contact_left .address i, .name i, .number i, .email i{
    margin-right: 7px;
}
.contact_left .email span a{
    color: var(--pra-color);
    text-decoration: none;
}

/* contact_form */
.contact_form{
    box-shadow: 0px 0px 7px -1px var(--text-color);
    padding: 10px 20px;
}
.contact_form form input{
    background: none;
    border: none;
    border-bottom: 1px solid var(--text-color);
    color: var(--pra-color);
    font-size: 20px;
    width: 93%;
    outline: none;
    padding: 0.375rem 0.25rem;
    line-height: 1.5;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact_form form textarea{
    width: 97%;
    background: none;
    border: 1px solid var(--text-color);
    padding: 5px 10px;
    font-size: 20px;
    outline: none;
    color: var(--pra-color);
}
.contact_form form label{
    color: var(--text-color);
    font-family: var(--font-bold);
    font-size: 20px;
}
.contact_form form input::placeholder,
.contact_form form textarea::placeholder{
    color: var(--pra-color);
}
.contact_form form .col-lg-12.col-md-12 p.text_message{
    color: var(--btn-hover) !important;
}
.form_btn_box{
    display: flex;
    justify-content: flex-end;
}
.form_btn_box .btn{
    background: var(--btn-color);
    color: #fff;
    margin-left: 20px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
    transition: all 0.4s ease;
}
.form_btn_box .btn:hover{
    background: var(--btn-hover);
    color: #fff;
}






/* =================== */
/* footer section */
/* =================== */
.footer_section{
    background: #000;
    padding: 50px 0 10px;
}
.footer_content{
    padding-bottom: 30px;
    border-bottom: 1px solid var(--btn-hover);
}
.footer_content h2{
    position: relative;
    margin-bottom: 50px;
}
.footer_content h2::after{
    position: absolute;
    content: '';
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: var(--text-color);
}
.footer_content a .btn{
    background: var(--btn-color);
    color: #fff;
    font-family: var(--font-bold);
    font-size: 22px;
    padding: 5px 20px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.footer_content a .btn:hover{
    background: var(--btn-hover);
}
.footer_content p{
    width: 70%;
    margin: auto;
}
.footer_content .socail_link{
    margin-top: 30px;
}
.footer_content .socail_link a i{
    color: var(--text-color);
    background: var(--bg-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    margin: 0 5px;
    box-shadow: 0px 0px 2px 0px var(--text-color);
    transition: all 0.4s ease;
}
.footer_content .socail_link a i:hover{
    background: var(--text-color);
    color: #000;
    box-shadow: 0px 0px 5px 1px #fff;
}
.footer_section .copyright p{
    color: #919191 !important;
}
.footer_section .copyright p span{
    color: #b6151d;
}