@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: var(--font-1);
}
:root{
    --theme-color-1: #301E52;
    --color-dark: #000;
    --color-light: #fff;
    --text-color: #4e4e4e;
    --title-color: #000;
    --font-1: 'Sora';
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-1);
}
p,span{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.2em;
}
.section_title {
    font-size: 43px;
    line-height: 1.1em;
    font-weight: 500;
    margin-bottom: 20px;
}
img{width: 100%;}
a.theme_btn {
    font-size: 16px;
    color: white;
    text-decoration: none;
    background: var(--theme-color-1);
    padding: 12px 25px;
    border-radius: 10px;
}
a{
    text-decoration: none !important;
}
.subtitle {
    width: fit-content;
    margin: auto;
    background: #f1f1f1;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
}

/* ======== Header Css Start ======== */
.mobile_toggle {
    display:none;
    font-size:28px;
    cursor:pointer;
}
header {
    position: absolute;
    width: 100%;
    top: 20px;
    z-index: 50;
}

.logo{
    width: 100px;
    background: var(--color-light);
    padding: 10px;
    border-radius: 10px;
}
.menubar {
    background: #ffffff33;
    padding: 10px;
    border-radius: 7px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(2px);
}
.googlereview .jiVDyb {
    color: #fff;
}
.menubar .menu_item {
    color: var(--color-light);
    font-size: 18px;
    /* font-weight: 500; */
    margin-right: 25px;
}
.menurow {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    align-items: center;
}
.menurow>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
.logoarea {
    flex: 0 0 auto;
    width: 43%;
}
.menuarea {
    flex: 0 0 auto;
    width: 57%;
}
.mobile_toggle {
    color: #fff;
}
/* ======== Header Css End ======== */

/* ======== Hero Css Start ======== */
.hero {
    padding: 200px 0 80px;
    /* background: linear-gradient(180deg,#301e52 24%,#fff 100%); */
    background-image: url(../images/banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 780px;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(86deg, #301e52d6 32%, #00000040 72%);
    z-index: -1;
}
.hero .col-md-12{
    text-align: center;
}
.hero_content h1{
    font-size: 48px;
    color: var(--color-light);
}
.hero_content p {
    color: var(--color-light);
    margin: 30px 0 40px;
}
.hero_image {
    width: 60%;
    margin: 80px auto 0;
}
.hero .theme_btn {
    background: white;
    padding: 19px 25px 19px 61px;
    border-radius: 30px;
    color: white !important;
    display: flex;
    width: fit-content;
    align-items: center;
    position: relative;
    transition: 0.3s ease;
}
.hero .theme_btn span{
    color: var(--color-dark);
    font-weight: 600;
}
.hero .btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-color-1);
    border-radius: 50%;
    margin-left: 11px;
    position: absolute;
    left: 0;
    padding: 10px;
    transition: 0.5s ease;
    transform: rotate(-43deg);
}
.hero .theme_btn:hover .btn_icon {
    right: 0;
    left: 77%;
    transition: 0.5s;
    margin: 0;
    transform: rotate(325deg);
}
.hero .theme_btn:hover {
    padding: 19px 61px 19px 25px;
}
.hero_right_col {
    display: flex;
    align-items: end;
    justify-content: end;
    /* text-align: end; */
}
.achievement {
    transform: translateY(100px);
}
.achievement > h6 {
    font-size: 25px;
    color: white;
}
.achievement_grid {
    display: flex;
    gap: 20px;
    justify-content: end;
    /* background: #301e52b8; */
    /* padding: 16px; */
    /* border-radius: 8px; */
}
.achevement_item {
    /* display: flex; */
    /* align-items: center; */
    text-align: center;
    gap: 12px;
    color: var(--color-light);
    background: #301e52b8;
    padding: 20px 0 0;
    border-radius: 8px;
    overflow: hidden;
}
.achevement_item .icon_box {
    /* width: 40px; */
    margin: 0;
}
.achevement_item h5 {
    font-size: 57px;
    line-height: 1;
}
.achevement_item h6{
    font-weight: 400;
    font-size: 14px;
    margin: 0;
}
.achevement_item span {
    padding: 4px 20px;
    font-size: 14px;
    background: #fccd05;
    margin-top: 15px;
    display: inline-block;
    color: black;
    width: 165px;
}
span.hilight_text {
    padding: 20px;
    color: white;
    background: #301e52b8;
    padding: 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    /* border: 2px solid white; */
}
/* ======== Hero Css End ======== */

/* ======== Awards Css Start ======== */
.awards {
    padding: 80px 0;
}
.awards .row{
    align-items: center;
}
.awards_logos {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.logo_item {
    background: var(--color-light);
    padding: 10px;
    /* box-shadow: 0 0 15px -6px #87878733; */
    position: relative;
    padding: 20px;
    transition: 0.3s;
}
.logo_item:hover{
    background: #66666612;
}
.logo_item::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    width: 1px;
    height: 91%;
    background: #efefef;
    transform: translateY(-50%);
}
.row-1 .logo_item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 94%;
    height: 1px;
    background: #efefef;
    transform: translateX(-50%);
    z-index: 1;
}
.logo_item:last-child::after{
    display: none;
}
.logo_item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ======== Awards Css End ======== */

/* ======== Offer Css Start ======== */

.offer_section {
    padding: 80px 0;
}
.offer_box {
    overflow: hidden;
    display: flex;
    align-items: center;
    /* background: #FDFFF3; */
    border: 1px solid #f1f1f1;
    /* box-shadow: 0 31px 35px 0 #8080801f; */
    border-radius: 10px;
}

.offer_img {
    width: 40%;
    height: 302px;
}
.offer_img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.offer_content {
    padding: 30px;
    width: 60%;
    text-align: center;
}
.brand_logo {
    width: 119px;
    margin-bottom: 20px;
}
.time_title {
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
}
/* .offer_content p{
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 600;
} */
.offer_content span {
    color: #f51010;
    /* font-size: 18px; */
}
a.offer_btn {
    display: block;
    background: var(--theme-color-1);
    color: var(--color-light);
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    border-radius: 30px;
}
.sc-ezbkAF{
    color: var(--color-light);
}
/* ======== Offer Css End ======== */

/* ======== price Css Start ======== */
.price_section {
    padding: 80px 0;
    /* background: #fbf8ff; */
}
.top-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    /* border-radius: 20px; */
    /* box-shadow: 0 14px 22px -12px #80808069; */
    height: 196px;
}
.price_box {
    background: var(--color-light);
    padding: 0px;
    box-shadow: 0 0 16px 0 #80808012;
    /* border: 2px solid #967cc7; */
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #80808026;
    margin-bottom: 30px;
    height: 100%;
    background-color: #efefef;
}
.brand_name {
    width: fit-content;
    padding: 5px 15px;
    font-size: 14px;
    color: var(--color-light);
    font-weight: 500;
    margin-bottom: 0px;
    background: linear-gradient(78deg, #8035a5 24%, #a9219e 100%);
    border-radius: 30px;
}
.product_name {
    font-size: 22px;
    color: var(--color-dark);
}
.top-content .ac_brandImg {
    width: 80%;
}
span.model {
    font-size: 15px;
}
.include_item_box {
    padding: 20px;
}
.price_system {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.include_items {
    border-bottom: 1px solid #f1f1f1;
    margin-top: 22px;
    padding-bottom: 10px;
}
.include_items:last-child {
    border: none;
}
/* .item_price {
    display: flex;
    align-items: center;
    gap: 10px;
} */
/* .item_price {
    background: #f4f4f4;
    padding: 6px 10px;
    border-radius: 30px;
    border: 1px solid #e9e9e9;
} */
.system {
    margin: 0;
    font-size: 16px;
    color: black;
    margin-right: 10px;
}
.regular_price {
    color: var(--color-dark);
    position: relative;
}
.regular_price::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--color-dark);
    top: 50%;
}
.sale_price {
    color: #0097e0;
    /* background: #f5f3f9; */
    /* padding: 4px 13px; */
    font-size: 18px;
    /* border-radius: 30px; */
    /* margin-left: 10px; */
    font-weight: 500;
}
.item_name {
    display: flex;
    justify-content: space-between;
}
.cu {
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 0px;
}
.cu span {
    /* color: #0097e0; */
    font-size: 14px;
    margin-left: 6px;
}
.price_btn {
    display: block;
    text-align: center;
    padding: 10px;
    color: white;
    /* background: linear-gradient(78deg, #301e52 24%, #a9219e 100%); */
    background: #25D366;
    border-radius: 30px;
    margin-top: 28px;
    width: 74%;
    margin: 20px auto 0;
}
.price_btn img {
    width: 23px;
    transform: translateY(-2px);
    margin-right: 10px;
}
.price_btn:hover{
    background: #1ea04d;
}
/* ======== price Css End ======== */

/* ======== Service Css Start ======== */
.service_section {
    background: #f9f6e6;
    padding: 80px 0;
}
.service_section .section_title{
    margin-bottom: 80px;
}
.service_box {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dadada;
    background: white;
    margin-bottom: 68px;
}
.service_box.service_box04, .service_box.service_box05, .service_box.service_box06{
    margin-bottom: 0;
}
.service_img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-top: -46px;
}
.service_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.service_content {
    padding: 10px 10px;
}
.service_title {
    margin-top: 14px;
}
.service_content p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.button_box {
    border-top: 1px solid #dadada;
    margin-top: 29px;
    padding-top: 10px;
}

/* ======== Service Css End ======== */

/* ======== Review Css Start ======== */
.review_section {
    padding: 80px 0;
    background: linear-gradient(78deg, #301e52 24%, #2e052b 100%);
}
.review_section .subtitle {
    background: #f1f1f11f;
    color: var(--color-light);
}
.review_section .section_title {
    color: var(--color-light);
}
.top_box{
    margin-bottom: 50px;
}
.reviewer_info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.reviewer_name h6{
    font-size: 20px;
    color: var(--color-light);
}
.reviewer_name .date{
    font-size: 15px;
    color: #c7c2d1;
}

.reviewer_img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

}

p.review_text {
    font-size: 20px;
    text-align: center;
    color: #c7c2d1;
    line-height: 32px;
}
.rating {
    width: 92px;
    margin: auto;
}
 .my-slider-progress {
    background: #ccc;
}
  .my-slider-progress-bar {
    background: greenyellow;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
}
/* ======== Review Css End ======== */

/* ======== FAQ Css Start ======== */
.faq_section {
    padding: 80px 0;
}
.faq_section .accordion-item {
    border: none;
    margin-bottom: 10px;
}
.faq_section .accordion-button{
    background: #F9F6E6  !important;
}
.faq_section .accordion-button:focus{
    box-shadow: none;
}
.faq_section .accordion-button:not(.collapsed){
    box-shadow: none;
}
.faq_img img{
    width: 450px;
}
/* ======== FAQ Css End ======== */

/* ======== Contact Css Start ======== */
.contact_section{
    padding: 80px 0;
    background: linear-gradient(78deg, #301e52 24%, #2e052b 100%);
    position: relative;
    isolation: isolate;
    /* background: #fbf8ff; */
}
/* .contact_section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(78deg, #301e52 24%, #2e052b 100%);
    z-index: -1;
    width: 38%;
} */
.contact_section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/white_gridLines_Vector.svg);
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
}
.contact_form_row{
    /* background: var(--color-light); */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact_infoBox {
    /* background: linear-gradient(78deg, #301e52 24%, #2e052b 100%); */
    padding: 30px;
    border-radius: 20px;
    /* background-image: url(../images/banner.webp); */
    width: 32% !important;
}
.contact_infoBox .top_box h6 {
    font-size: 45px;
    color: var(--color-light);
}
.contact_infoBox .top_box p{
    color: #c7c2d1;
}
.detail_box {
    margin: 120px 0px 40px;
    background: #ffffff12;
    padding: 17px;
    border-radius: 20px;
}
.detail_box .icon_box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}
.icon_box a{
    color: var(--color-light);
}
.icon_box .svg-inline--fa{
    color: var(--color-light);
}
.icon_box .icon{
    color: var(--color-light);
    /* font-size: 20px; */
    background: #a9219e;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social_links img{
    width: 32px;
}
.contact_formBox {
    width: 52% !important;
    padding: 40px 40px;
    background: white;
    border-radius: 20px;
}
.contact_formBox h6 {
    font-size: 27px;
}
.contact_formBox input, .contact_formBox textarea, .contact_formBox select {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    /* margin-top: 10px; */
    /* border-radius: 30px; */
}
.contact_formBox input:focus-visible, .contact_formBox textarea:focus-visible, .contact_formBox select:focus-visible{
    outline: none;
    border-bottom: 1px solid #a9219e;
}
.form_row {
    display: flex;
    gap: 20px;
}
.form-group {
    width: 100%;
    margin-bottom: 24px;
}
.contact_formBox label{
    display: none;
}
.submit-btn {
    background: var(--theme-color-1);
    border: var(--theme-color-1);
    padding: 10px 20px;
}
/* ======== Contact Css End ======== */
footer {
    background: var(--color-dark);
    padding: 20px;
}
footer p{
    text-align: center;
    color: var(--color-light);
    margin: 0;
    font-size: 15px;
}
footer a{
    color: var(--color-light);
}