* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}


a {
    text-decoration: none;
}

input {
    outline: none;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
    --gold-color: #fe5722;
    --paira-color: #666666;
    --black-color: #1d1d1d;
}

.paira {
    font-size: 15px;
    color: var(--paira-color);
    line-height: 27px;
}

.main_header ul .main_btn_header a {
    padding: 15px 40px;
    position: relative;
}

.mt-100 {
    margin-top: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-50 {
    margin-top: 50px;
}


.top_header {
    background: var(--black-color);
    padding: 10px 0px;
    border-radius: 15px 15px 0px 0px;
}

.top_detail ul {
    display: flex;
    gap: 30px;
}

.nav-link.active {
  color: #fe5722;
  font-weight: bold;
}

.top_detail ul li,
.prosanal-details li {
    display: flex;
    gap: 14px;
    align-items: center;
}

.top_detail ul li h4,
.prosanal-details li h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

.top_detail ul li i,
.prosanal-details li i {
    color: var(--gold-color);
}

.social_media {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.social_media li a {
    color: var(--gold-color);
    width: 35px;
    height: 35px;
    display: flex;
    background: #fe572230;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 50%;
}

.social_media li a:hover {
    background: var(--gold-color);
    color: #fff;
}

header {
    padding: 10px 0px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    border-bottom: 1px solid #80808029;
}

header .logo img {
    width: 100%;
    max-width: 110px;
}

.main_header ul {
    display: flex;
    gap: 55px;
    align-items: center;
}

.main_header ul li a {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
}

.main_header ul li a:hover{
    color: var(--gold-color);
}

/* sidebar section start */
.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000ad;
    z-index: 1001;
}


nav {
    overflow-y: auto;
    position: fixed;
    top: 0px;
    right: -350px;
    width: 350px;
    height: 100%;
    color: #fff;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 1002;
    padding-bottom: 25px;
    padding: 30px 30px;
}

nav.open {
    right: 0px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.275);
    opacity: 1;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-header img {
    width: 100%;
    max-width: 150px;
}

.close_sider {
    width: 40px;
    height: 40px;
    background: var(--black-color);
    flex-flow: wrap;
    align-content: space-evenly;
    -webkit-box-pack: end;
    display: flex;
    justify-content: center;
    position: relative;
    cursor: pointer;

}

.close_sider span {
    width: 25px;;
    height: 2px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.close_sider span:nth-child(1) {
    transform: rotate(45deg);
}

.close_sider span:nth-child(2) {
    transform: rotate(-45deg);
}

.hero_section {
    background: linear-gradient(45deg, #000000d1, #000000cc), url(../images/hero-banner.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px 0px;
}


.hero_content h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

.hero_content h5 span {
    color: var(--gold-color);
}

.hero_content h1 {
    font-size: 55px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.hero_content h1 span{
    color: var(--gold-color);
}

.hero_content p {
    color: #b9b7b7;
    margin: 0;
}

.app_download {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.app_download a img {
    width: 100%;
    max-width: 150px;
}

.hero_img img {
    width: 100%;
    animation: upDown 2s infinite ease-in-out;
    max-width: 350px;
}
@keyframes upDown {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}


.headerBar_buttonBox__CV\+Fx {
    align-items: center;
    background-color: #fe572257;
    border-radius: 36px;
    display: flex;
    height: 50px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: background-color .3s ease,transform .3s ease;
    width: 160px;
}
.headerBar_rotatingBorder__9XxpS {
    animation: headerBar_rotate__ipvXe 3s infinite;
    animation-timing-function: linear;
    background: #fe5722;
    height: 10px;
    width: 240px;
}


.buttonBox:hover {
  background-color: #2bc7c9;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Keyframes for the rotate animation */
@keyframes headerBar_rotate__ipvXe {
 0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(1turn);
}
}

.css-o5r1fg {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: #fe5722;
    width: 153px;
    border-radius: 36px;
    transition: 0.5s;
}

.css-o5r1fg button {
    border: 0;
    background: transparent;
    width: 100%;
    height: 44px;
    font-size: 15px;
    color: #fff;
    transition: 0.5s;
}

.css-o5r1fg button a {
    color: #fff;
}

.main_header {
    display: flex;
    justify-content: space-between;
}


.about_img {
    position: relative;
}

.about_img > img {
    width: 100%;
    border-radius: 20px;
    border: 1px dashed var(--gold-color);
    padding: 10px;
}

.expricene {
    position: absolute;
    left: 25px;
    top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expricene img {
    width: 100%;
    max-width: 55px;
}

.expricene .ex_imge {
    width: 80px;
    height: 80px;
    background: var(--gold-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.expricene h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0px 5px 4px #494949a6;
}

.expricene p {
    margin: 0;
    font-size: 14px;
    color: var(--gold-color);
}


.about_content h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.about_content h2 {
    font-size: 35px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.about_content h2 span {
    color: var(--gold-color);
}

.about_content .paira {
    font-size: 14px;
    margin-bottom: 10px;
}

.about_content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0px;
    font-size: 15px;
}

.about_content ul li i {
    color: var(--gold-color);
}

.about_content .paira span {
    font-weight: 800;
    color: var(--gold-color);
}

.css-o5r1fg:hover {
    background: #fff;
}

.css-o5r1fg:hover button a{
    color: #000;
}

.css-o5r1fg:hover button{
    color: #000;
}

.about_content h3 {
    font-size: 23px;
    font-weight: 800;
    color: #000;
}

.feature_section {
    background: linear-gradient(2deg, #000000c4, #000000d9), url(../images/feature-bg.jpg);
    background-size: cover;
}

.main_heading {
    text-align: center;
}

.main_heading h5 {
    font-size: 23px;
    font-weight: 700;
    color: var(--gold-color);
}

.main_heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: auto;
}

.main_heading h2:before {
    bottom: 0px;
    width: 90%;
    position: absolute;
    height: 10px;
    background: var(--gold-color);
    content: '';
    transform: skewX(50deg);
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

.feature_box {
    background: #fff;
    padding: 40px 20px 30px 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.feature_img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gold-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
}

.feature_img img {
    width: 100%;
    max-width: 53px;
}

.feature_box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
}

.feature_box .paira {
    font-size: 14px;
    line-height: 22px;
}

.feature_img:before {
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    width: 105px;
    height: 105px;
    border: 1px dashed var(--gold-color);
    content: '';
    border-radius: 50%;
    right: 0px;
    margin: auto;
    animation: rotate 5s infinite linear;
}

@keyframes rotate {
    0%{
        transform: rotate(360deg);
    }
    
}


.services_box {
    border: 1px solid #8080804f;
    padding: 15px 14px;
    border-radius: 15px;
    overflow: hidden;
}

.services_box a {
    background: var(--gold-color);
    display: flex;
    justify-content: center;
    padding: 6px 0px;
    border-radius: 50px;
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
    border: 1px solid var(--gold-color);
    transition: 0.5s;
}

.services_box a:hover {
    background: transparent;
    color: var(--gold-color);
}

.service_img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service_img:before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0%;
    height: 0%;
    content:'';
    background: #ffffff8a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.service_img:hover:before {
    width: 1000px;
    height: 1000px;
    transition: all 600ms linear;
    background: transparent;
}

.service_img  a {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
}

.service_img img {
    width: 100%;
    border-radius: 15px;
    transition: 0.5s;
}

.service_img:hover img {
    transform: scale(1.3);
}

.services_box h4 {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    display: none;
}

.download_img img {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    display: block;
}

.app_section .container {
    background: #80808026;
    padding: 0px;
    border-radius: 20px;
    overflow: hidden;
}

.app_section .about_content {
    padding: 40px;
}

.accourding_content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.accourding_content .accordion-header button {
    display: flex;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
}

.accourding_content .accordion-header button span {
    color: #fff;
    width: 40px;
    height: 40px;
    background: var(--gold-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
}

.accourding_content .accordion-header button:not(.collapsed) {
    background: #fe57222b;
    color: var(--gold-color);
}

.accourding_content .accordion-item {
    border-color: #fe57222e;
}

.accourding_content .accordion-header button:focus {
    box-shadow: 0 0 0 0.25rem #fe572254;
}

.footer_logo img {
    width: 100%;
    max-width: 180px;
}

footer {
    background: linear-gradient(45deg, #000000e3, #000000de), url(../images/hero-banner.jpg);
    background-size: cover;
    background-position: bottom;
    padding: 75px 0px 0px 0px;
}


.footer_logo p {
    color: #bebebe;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    margin-top: 15px;
}

.footer_logo ul li a {
    display: flex;
    gap: 10px;
    color: #bebebe;
    font-size: 13px;
    font-weight: 300;
}

.footer_logo ul li a i {
    color: var(--gold-color);
    padding-top: 5px;
}

.footer_logo ul li {
    margin-top: 11px;
}

.footer_links h4, .news_latter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
    width: fit-content;
}

.footer_links ul li a {
    color: gainsboro;
    font-size: 15px;
    font-weight: 400;
}

.footer_links ul li {
    margin: 7px 0px;
}

.footer_links h4:before, .news_latter h4:before {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    background: #393939;
    content: '';
    height: 2px;
}

.footer_links h4:after, .news_latter h4:after {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50%;
    background: var(--gold-color);
    content:'';
    height: 2px;
}

.news_latter p {
    color: #bebebe;
    font-size: 15px;
}

.news_latter input {
    width: 100%;
    padding: 14px 15px;
    font-size: 15px;
    border-radius: 30px;
    border: 0;
    outline: none;
    font-weight: 500;
}

.news_latter .headerBar_buttonBox__CV\+Fx {
    width: 100%;
}

.news_latter .headerBar_rotatingBorder__9XxpS {
    width: 100%;
}

.news_latter .css-o5r1fg {
    width: 98.3%;
}

.footer_logo ul {
    margin-top: 25px;
}

.copy_right {
    background: var(--gold-color);
    padding: 10px 0px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.copy_right:before {
    position: absolute;
    left: -31px;
    background: #030301;
    content: '';
    width: 55%;
    height: 92%;
    top: 0;
    transform: skewX(-40deg);
    z-index: -1;
}


.text_copy p {
    color: #bebebe;
    font-size: 14px;
    font-weight: 500;
}

.text_copy p a {
    color: var(--gold-color);
}


.footer_social a {
    background: #000000 !important;
    color: #ffffff !important;
}


.hamburger-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    flex-flow: wrap;
    align-content: space-evenly;
    -webkit-box-pack: end;
    justify-content: flex-end;
    cursor: pointer;
    background: var(--gold-color);
    padding: 7px;
    border-radius: 2px;
    display: none;
}

.hamburger-icon span {
    width: 90%;
    height: 2px;
    border-radius: 1px;
    background-color: #ffffff;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.hamburger-icon:hover span:nth-child(2) {
    width: 90%;
}
.hamburger-icon span:nth-child(2) {
    width: 16px;
}

.mobile_menu_main li a {
    color: #101010;
    font-size: 14px;
    display: flex;
    width: 100%;
    font-weight: 500;
}

.mobile_menu_main li {
    padding: 7px 0;
    border-bottom: 1px solid #80808045;
}

.mobile_menu_main li:last-child {
    border: 0;
}

.sidebar .prosanal-details li h4 {
    color: #000;
    font-weight: 500;
}

.sidebar .prosanal-details li {
    margin-top: 15px;
}

.news_update h4 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.news_update input {
    border: 1px solid #80808075;
    width: 100%;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.news_update button {
    background: var(--gold-color);
    border: 0;
    padding: 10px;
    color: #fff;
    font-size: 15px;
}

.why_choose_cotnent h5 {
    font-size: 18px;
    color: #000;
}

.why_choose-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    border: 1px solid #8080805c;
    padding: 20px;
    border-radius: 0px 40px;
}

.why_first_img img {
    width: 100%;
    max-width: 280px;
    margin: auto;
    display: block;
    border-radius: 0px 30px;
    border: 1px solid #80808054;
}

.why_first_img {
    margin: auto;
}

.up_bottom {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    position: fixed;
    background: #fe5722;
    bottom: 25px;
    right: 25px;
    color: #fff;
    font-size: 18px;
    z-index: 100;
}

.up_bottom:before {
    position: absolute;
    left: -7px;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    content: '';
    border: 1px dashed #fe5722;
    border-radius: 50%;
    right: 0;
    margin: auto;
    animation: slideDas 5s infinite linear;
}
@keyframes slideDas {
    100%{
    transform: rotate(360deg);
} 
    
}