@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

:root {
    --theme-color: #ff6b00;
    --theme-color2: #026ccd;
    /* --theme-color: #58b036; */
    --white-color: #fff;
    --black-color: #000;
    --black-color2: #222222;
    --black-color3: #2C2C2C;
    --black-color4: #3D3D3D;
    --gray-color: #E5E4E2;
    --gray-color2: #f5f5f5;
    --gray-color3: #f7f7f7;
    --gray-color4: #8d8787;
    --facebook-color: #3b5998;
    --instagram-color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --youtube-color: #c4302b;
    --background-color: #f9f6f0;
    --rating-color: #FDCC0D;
    --rating-color2: #FF9529;
}



img {
    max-width: 100% !important;
}


body {
    font-family: "Bai Jamjuree", sans-serif !important;
    /* font-family: "Fredoka", sans-serif; */
    overflow-x: hidden !important
}

body,
html {
    font-family: "Bai Jamjuree", sans-serif !important;
    scroll-behavior: smooth;
    /* font-family: "Fredoka", sans-serif; */
}

a {
    text-decoration: none !important;
}

a:focus {
    outline: none;
    text-decoration: none;
}


textarea {
    resize: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Signika Negative", sans-serif;
}

.split-heading,
.split-heading *,
.split-heading .char {
    text-transform: none !important;
    display: inline-block !important;

}




/*Hero section*/


.desktop_banner_section {
    display: block;
}

.mobile_banner_section {
    display: none;
}

/* button */

.hero-btn {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-enquiry-btn a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    background: var(--theme-color);
    border-radius: 10px;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-view-pro-btn a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--black-color4);
    border-radius: 10px;
    color: var(--black-color4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn a i {
    transition: .3s;
}

.hero-btn a:hover i {
    transform: translateX(5px);
}

/* hero bottom features */

.hero-bottom-features {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 92%;
    padding: 22px 0px;
    z-index: 50;
    display: flex;
    background-color: #ffffffa2;
    gap: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-item i {
    width: 52px;
    height: 52px;
    border-radius: 15%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .3s;
    background-color: var(--theme-color);
}

/* .hero-feature-item:hover i{
    background:var(--theme-color);
    color:#fff;
} */

.hero-feature-item h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color2);
}

.hero-feature-item p {
    margin: 0;
    color: var(--black-color2);
    font-size: 14px;
    font-weight: 500;
}

/* divider */

.hero-bottom-features .col:not(:last-child) {
    border-right: 1px solid #ececec;
}

/*right slider*/

.hero-slide-div {
    position: relative;
    /* height: 560px; */
}

.heroRightSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.heroRightSlider .swiper-wrapper {
    height: 100%;
}

.heroRightSlider .swiper-slide {
    height: 100%;
}

.hero-slide-img {
    position: relative;
    width: 100%;
    /* margin-top: 15px; */
}

.hero-slide-img img {
    width: 100%;
    /* height:100%; */
    object-fit: cover;
}

/* .heroRightSlider .swiper-slide-active img {
    transform: scale(1.08);
} */

/* right fixed card */

.hero-fixed-card {
    position: absolute;
    top: 69%;
    right: 17px;
    transform: translateY(-50%);
    width: 220px;
    background: #ffffffb5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    z-index: 99;
}

.hero-fixed-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-fixed-item:not(:last-child) {
    margin-bottom: 22px;
}

.hero-fixed-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff3eb;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.hero-fixed-item:hover i {
    background: var(--theme-color);
    color: #fff;
}

.hero-fixed-item h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
}

.hero-fixed-item p {
    margin: 0;
    font-size: 13px;
    color: var(--black-color2);
    font-weight: 500;
}

/* end hero section */


/*about section*/

.about-us-section {
    padding: 50px 0;
    background: var(--white-color);
}

.about-us-section .about-image-wrapper {
    position: relative;
}

.about-us-section .about-image-wrapper img {
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

/* Experience Card */

.about-us-section .experience-card {
    position: absolute;
    left: -20px;
    bottom: -19px;
    width: 170px;
    background: #fffffff2;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-us-section .experience-card h2 {
    font-size: 58px;
    font-weight: 800;
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 10px;
}

.about-us-section .experience-card p {
    margin: 0;
    color: var(--black-color2);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.about-us-section span {
    display: inline-block;
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    /* margin-top: 0px; */
}

/* Counter Number */
.counter-box h3{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-yellow); /* apna theme color */
    letter-spacing: 1px;
}

/* Animated Number */
.counter-box .counter{
    display: inline-block;
    /* min-width: 60px; */
    text-align: center;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* + and % */
.counter-box h3::after{
    font-size: 28px;
    font-weight: 700;
    color: inherit;
}

/* .about-us-section .about-content{
    margin-top: -33px;
} */

.about-us-section .about-content h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    color: var(--black-color2);
    margin-bottom: 8px;
}

.about-us-section .about-content p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Counter */

.about-us-section .about-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.about-us-section .counter-box {
    padding-right: 20px;
    border-right: 1px solid #ececec;
}

.about-us-section .counter-box:last-child {
    border: none;
}

.about-us-section .counter-box i {
    width: 46px;
    height: 46px;
    color: var(--white-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 12px;
    margin: 0 auto 18px; /* Center */
    transition: 0.3s;
}

.about-us-section .counter-box h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 6px;
}

.about-us-section .counter-box p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    color: var(--black-color2);
    font-weight: 500
}

/* Button */

.about-us-section .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .4s;
}

.about-us-section .about-btn:hover {
    background: var(--black-color2);
    color: var(--white-color);
}

.about-us-section .about-btn i {
    transition: .4s;
}

.about-us-section .about-btn:hover i {
    transform: translateX(6px);
}


/* products start */

.our-products-section {
    padding: 40px 0px 15px 0px;
    background-color: #f7f7f7;

}

.product-title {
    text-align: center;
    margin-bottom: 45px;
}

/* .product-title span{
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
} */

.product-title h3 {
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 18px;
    padding-bottom: 18px;
    line-height: 1.2;
}

.product-title h3::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--theme-color);
    border-radius: 30px;
}

.product-title h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 18px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 50px;
}

.product-title p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
}

.products-card {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #9fcee685;
}

/* Glass Layer */
.products-card .card-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    z-index: 1;
}

/* Content */
.products-card .product-card-img,
.products-card .product-card-title {
    position: relative;
    z-index: 2;
}

.products-card .product-card-img {
    padding: 20px 20px 0;
}

.products-card .product-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;

}

.products-card .product-card-title {
    padding: 20px;
}

.products-card .product-card-title h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--theme-color);
    text-transform: capitalize;
}

.products-card .product-card-title p {
    margin: 0 !important;
    color: var(--black-color2) !important;
    line-height: 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

/* Animation */
@keyframes move-up6 {
    to {
        transform: translateY(-10px);
    }
}

@keyframes move-down1 {
    to {
        transform: translateY(10px);
    }
}

/*button*/

.product-read-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 25px;
    background: transparent;
    border: 2px solid var(--theme-color);
    color: #222;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: .5s;
    z-index: 1;
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-read-btn:hover {
    color: var(--white-color);
}

.product-read-btn i {
    transition: .4s;
}

.product-read-btn:hover i {
    transform: translateX(6px);
}

.product-read-btn span {
    position: absolute;
    width: 100%;
    height: 15px;
    background: var(--theme-color);
    transition: .5s;
    z-index: -1;
}

.product-read-btn span:nth-child(1) {
    top: -100%;
    left: 0;
}

.product-read-btn:hover span:nth-child(1) {
    top: 0;
}

.product-read-btn span:nth-child(2) {
    top: 15px;
    right: 100%;
}

.product-read-btn:hover span:nth-child(2) {
    right: 0;
}

.product-read-btn span:nth-child(3) {
    top: 30px;
    left: 100%;
}

.product-read-btn:hover span:nth-child(3) {
    left: 0;
}

.product-read-btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
}

.product-read-btn:hover span:nth-child(4) {
    bottom: 0;
}

/* products end */


/*  */

/*==============================
WHY CHOOSE US
==============================*/

.why-choose-us{
    background:var(--white-color);
    padding: 10px 0px;
}

/* .why-choose-us .section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:12px;
} */


.why-choose-us .section-title{
    text-align:center;
    /* margin-bottom:50px; */
}

.why-choose-us .section-title h2{
    position:relative;
    display:inline-block;
    font-size:38px;
    font-weight:700;
    color:var(--black-color2);
    line-height:1.2;
    padding:0 30px 18px;
    text-transform:capitalize;
    letter-spacing:.5px;
}

/* Main Underline */
.why-choose-us .section-title h2::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:110px;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    border-radius:50px;
}

/* Center Circle */
.why-choose-us .section-title h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%);
    width:16px;
    height:16px;
    background:#fff;
    border:4px solid var(--theme-color);
    border-radius:50%;
}

.why-choose-us .section-title p{
    max-width:700px;
    margin:auto;
    color:var(--black-color2);
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
}

/* Images */

.why-choose-us .image-wrapper{
    position:relative;
    width:430px;
    margin:auto;
    height:380px;
}

.why-choose-us .img-large{
    width:280px;
    height:320px;
    border:4px solid var(--theme-color);
    border-radius:30px;
    overflow:hidden;
    position:absolute;
    right:0;
    top:0;
}

.why-choose-us .img-small{
    width:220px;
    height:220px;
    border:4px solid var(--theme-color);
    border-radius:30px;
    overflow:hidden;
    position:absolute;
    left:0;
    bottom:0;
    z-index:5;
    background:var(--white-color);
}

.why-choose-us .image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Decorative Stars */

.why-choose-us .star{
    position:absolute;
    width:18px;
    height:18px;
    background:var(--theme-color);
    clip-path:polygon(50% 0%,61% 39%,100% 50%,61% 61%,50% 100%,39% 61%,0% 50%,39% 39%);
}

.why-choose-us .star1{
    top:-8px;
    left:35px;
}

.why-choose-us .star2{
    bottom:-8px;
    right:65px;
}

/* Timeline */

.why-choose-us .timeline-item{
    display:flex;
    align-items:flex-start;
    position:relative;
    margin-bottom:45px;
}

.why-choose-us .timeline-number{
    width:60px;
    height:60px;
    border:3px solid var(--theme-color);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--white-color);
    color:var(--theme-color);
    font-weight:700;
    font-size:18px;
    position:relative;
    flex-shrink:0;
}

.why-choose-us .timeline-number::after{
    content:"";
    position:absolute;
    top:60px;
    left:50%;
    /* transform:translateX(-50%); */
    width:3px;
    height:70px;
    background:var(--theme-color);
}

.why-choose-us .timeline-item.last .timeline-number::after{
    display:none;
}

.why-choose-us .timeline-content{
    padding-left:25px;
}

.why-choose-us .timeline-content h4{
    font-size:22px;
    font-weight:700;
    color:var(--theme-color);
    margin-bottom:8px;
}

.why-choose-us .timeline-content p{
    color:var(--black-color2);
    line-height:28px;
    margin:0;
    font-size: 15px;
    font-weight: 500;
}

/*==============================
Responsive
==============================*/

@media (max-width:991px){

    .why-choose-us .image-wrapper{
        width:340px;
        height:320px;
    }

    .why-choose-us .img-large{
        width:220px;
        height:260px;
    }

    .why-choose-us .img-small{
        width:170px;
        height:170px;
    }

    .why-choose-us .timeline-content h4{
        font-size:20px;
    }

    .why-choose-us .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 16px;
}

}

@media (max-width:576px){

    .why-choose-us .image-wrapper{
        width:280px;
        height:260px;
    }

    .why-choose-us .img-large{
        width:180px;
        height:220px;
    }

    .why-choose-us .img-small{
        width:140px;
        height:140px;
    }

    .why-choose-us .timeline-number{
        width:50px;
        height:50px;
        font-size:16px;
    }

    .why-choose-us .timeline-number::after{
        top:50px;
        height:60px;
    }

    .why-choose-us .timeline-content{
        padding-left:18px;
    }

    .why-choose-us .section-title h2{
        font-size:30px;
    }

    .why-choose-us .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 16px;
}

    .why-choose-us .timeline-number::after {
        top: 50px;
        height: 130px;
    }

}

/*  */

/* testimonials start */

.testimonials-section {
    width: 100%;
    padding: 40px 0px 0px 0px;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 45px;
}

.testimonials-title span {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.testimonials-title{
    text-align:center;
    margin-bottom:50px;
}

.testimonials-title h4{
    position:relative;
    display:inline-block;
    font-size:38px;
    font-weight:700;
    color:var(--black-color2);
    line-height:1.2;
    padding:0 30px 18px;
    text-transform:capitalize;
    letter-spacing:.5px;
}

/* Main underline */
.testimonials-title h4::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:110px;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    border-radius:50px;
}

/* Center Circle */
.testimonials-title h4::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%);
    width:16px;
    height:16px;
    background:#fff;
    border:4px solid var(--theme-color);
    border-radius:50%;
}
.testimonials-title p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
    margin-top: 10px;
}

.testimonials-section .testimonials-main-div-slider {
    position: relative;
}

.testimonials-section .swiper {
    padding: 10px 5px 40px;
}

.testimonials-section .swiper-slide {
    height: auto;
}

.testimonials-section .testimonials-main-div {
    background: #c4e3f341;
    border: 1px solid #0085c741;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    transition: .4s;
    box-shadow: rgba(212, 60, 0, 0.1) 0px 4px 12px;
}

.testimonials-section .testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.testimonials-section .rating {
    display: flex;
    gap: 4px;
}

.testimonials-section .rating i {
    color: #ff9f00;
    font-size: 16px;
}

/* Review */

.testimonials-section .testimonial-review {
    font-size: 15px;
    color: var(--black-color2);
    line-height: 24px;
    min-height: 95px;
    font-weight: 500;
    margin: 0px 10px 0px 10px;
}

/* Bottom */

.testimonials-section .testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0px;
}

.testimonials-section .testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 15%;
    object-fit: cover;
    border: 1px solid #0085c741;
    padding: 5px;
    background-color: #e3f3fc41;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.testimonials-section .testimonial-user h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
}

.testimonials-section .testimonial-user p {
    margin: 0;
    color: var(--black-color2);
    font-size: 15px;
    font-weight: 500;
}

/* Navigation */

.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    color: var(--theme-color);
}

.testimonials-section .swiper-button-next:after,
.testimonials-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

/* Pagination */

.testimonials-section .swiper-pagination {
    bottom: 0 !important;
}

/* testimonials end */

/* need-custom start */
.need-custom-main-div {
    padding: 10px 0 40px 0px;
    position: relative;
    margin-top: -36px;
}

.need-custom-main-div .need-custom-div {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 22px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.need-custom-main-div .need-custom-div-title h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black-color2);
}

.need-custom-main-div .need-custom-div-title p {
    margin: 0;
    color: var(--black-color2);
    font-size: 15px;
    font-weight: 500;
}

/* Call & WhatsApp */
.need-custom-main-div .need-custom-call-main-div {

    background-color: var(--theme-color);
}

.need-custom-main-div .need-custom-whatsapp-main-div {

    background-color: #25D366;
}

.need-custom-main-div .need-custom-call-main-div,
.need-custom-main-div .need-custom-whatsapp-main-div {
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 15px;
    padding: 14px 18px;
}

.need-custom-main-div .need-custom-call-icon,
.need-custom-main-div .need-custom-whatsapp-icon {
    width: 51px;
    height: 51px;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
}

.need-custom-main-div .need-custom-call-icon {
    background: var(--white-color);
    font-size: 22px;
    color: var(--theme-color);
}

.need-custom-main-div .need-custom-whatsapp-icon {
    background: var(--white-color);
    font-size: 30px;
    color: #25d366;
}

.need-custom-main-div .need-custom-call-title h5,
.need-custom-main-div .need-custom-whatsapp-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
}

.need-custom-main-div .need-custom-call-title a,
.need-custom-main-div .need-custom-whatsapp-title a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
}

.need-custom-main-div .need-custom-call-title a:hover,
.need-custom-main-div .need-custom-whatsapp-title a:hover {
    color: var(--white-color);
}

.need-custom-div-title {
    width: 31%;
}

.need-custom-image {
    width: 30%;
    position: absolute;
    right: -21px;
}

.whatsapp-desktop {
    display: block !important;
}

.whatsapp-mobile {
    display: none !important;
}


@media (max-width: 991px) {

    .need-custom-main-div .need-custom-div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .need-custom-div-title {
        width: 100%;
        text-align: center;
    }

    .need-custom-main-div .need-custom-call-main-div,
    .need-custom-main-div .need-custom-whatsapp-main-div {
        width: 48%;
        justify-content: center;
    }

    .need-custom-image {
        display: none;
    }

}

@media (max-width: 767px) {

    .need-custom-main-div {
        padding: 30px 0;
    }

    .need-custom-main-div .need-custom-div {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 15px;
    }

    .need-custom-div-title {
        width: 100%;
        text-align: center;
    }

    .need-custom-main-div .need-custom-div-title h4 {
        font-size: 22px;
    }

    .need-custom-main-div .need-custom-div-title p {
        font-size: 14px;
    }

    .need-custom-main-div .need-custom-call-main-div,
    .need-custom-main-div .need-custom-whatsapp-main-div {
        width: 100%;
        justify-content: flex-start;
    }

}

@media (max-width: 575px) {

    .need-custom-main-div .need-custom-div {
        padding: 18px 15px;
    }

    .need-custom-main-div .need-custom-call-main-div,
    .need-custom-main-div .need-custom-whatsapp-main-div {
        padding: 12px 15px;
        gap: 12px;
    }

    .need-custom-main-div .need-custom-call-icon,
    .need-custom-main-div .need-custom-whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .need-custom-main-div .need-custom-whatsapp-icon {
        font-size: 30px;
    }

    .need-custom-main-div .need-custom-call-title h5,
    .need-custom-main-div .need-custom-whatsapp-title h5 {
        font-size: 16px;
    }

    .need-custom-main-div .need-custom-call-title a,
    .need-custom-main-div .need-custom-whatsapp-title a {
        font-size: 14px;
    }

}


/* footer start */

.footer-section {
    background-image: linear-gradient(rgb(255 255 255 / 85%), rgb(115 224 251 / 36%)), url(../images/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
}

/* Footer Box */

.footer-section .footer-title-desc-div {
    margin-bottom: 35px;
}

/* Logo */

.footer-section .footer-title-img-div {
    margin-bottom: 20px;
}

.footer-section .footer-title-img-div img {
    width: 180px;
}

.footer-section .footer-title-desc-div p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 25px;
    font-weight: 500;

}

/* Social */
.footer-section .footer-social-title-div h5{
    font-size: 17px;
    font-weight: 600;
    color: var(--black-color2);
    margin-top: 13px;
}

.footer-section .footer-social-div {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-section .footer-social-div a {
    width: 42px;
    height: 42px;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--white-color);
    transition: .4s;
    font-size: 16px;
}

.footer-section .footer-social-div a:hover {
    background: var(--theme-color);
    transform: translateY(-5px);
}

/* Heading */

.footer-section .footer-title-main-div {
    margin-bottom: 10px;
}

.footer-section .footer-title-main-div h5 {
    color: var(--black-color2);
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

/* Links */

.footer-section .footer-title-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section .footer-title-div a {
    color: var(--black-color2);
    font-size: 15px;
    margin-bottom: 14px;
    transition: .4s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-section .footer-title-div a i {
    color: var(--theme-color);
    font-size: 12px;
}

.footer-section .footer-title-div a:hover {
    color: var(--theme-color);
    padding-left: 1px;
}

/* Contact */

.footer-section .footer_contactus_information_div_main {
    margin-top: 15px;
}

.footer-section .footer_media_main_div {
    margin-bottom: 22px;
}

.footer-section .footer_media_main_div:last-child {
    margin-bottom: 0;
}

.footer-section .footer_media_main_div .flex-shrink-0 {
    width: 50px;
    height: 50px;
    border-radius: 15%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section .footer_media_main_div .flex-shrink-0 i {
    color: #fff;
    font-size: 22px;
}

.footer-section .footer_contactus_content_div h6 {
    color: var(--black-color2);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-section .footer_contactus_content_div a {
    color: var(--black-color2);
    transition: .4s;
    word-break: break-word;
    font-weight: 500;
    font-size: 15px;
}

.footer-section .footer_contactus_content_div a:hover {
    color: var(--theme-color);
}

.footer-section .footer_contactus_content_div p {
    color: var(--black-color2);
    margin: 0;
    line-height: 26px;
    font-size: 15px;
    font-weight: 500;
}

/* Copyright */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #cfcfcf;
    margin: 0;
    font-size: 15px;
}

.footer-map-div iframe {
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .footer-section {
        padding: 60px 0 15px;
    }

    .footer-section .footer-title-main-div {
        margin-top: 10px;
    }


    .footer-section .footer-title-img-div img {
        width: 170px;
    }


}

@media(max-width:767px) {

    .footer-section {
        padding: 50px 0 10px;
    }

    .footer-section .footer-title-main-div h5 {
        font-size: 22px;
    }

    .footer-section .footer-title-desc-div {
        margin-bottom: 30px;
    }

    .footer-section .footer_media_main_div .flex-shrink-0 {
        width: 45px;
        height: 45px;
    }

    .footer-section .footer_media_main_div .flex-shrink-0 i {
        font-size: 20px;
    }

    .footer-section .footer_contactus_content_div h6 {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 14px;
        line-height: 24px;
    }

}
/* footer end */

/* copyright start */


.copy_right_section {
    background-color: #0084c7de;
    text-align: center;
    padding: 7px 1px;
}

.copyright_content_div>p {
    margin-bottom: 0px !important;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.copyright_content_div>p>a {
    color: #d6f3ff;
    text-decoration: underline !important;
    margin-left: 5px;
}

/* copyright end */


/* blogs sction start */

.blogs-section {
    padding: 40px 0px;
}

.blogs-title {
    text-align: center;
    margin-bottom: 45px;
}

.blogs-title span {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.blogs-title{
    text-align:center;
    margin-bottom:50px;
}

.blogs-title h3{
    position:relative;
    display:inline-block;
    font-size:38px;
    font-weight:700;
    color:var(--black-color2);
    line-height:1.2;
    padding:0 30px 18px;
    text-transform:capitalize;
    letter-spacing:.5px;
}

/* Main underline */
.blogs-title h3::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:110px;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--theme-color),
        transparent
    );
    border-radius:50px;
}

/* Center Circle */
.blogs-title h3::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%);
    width:16px;
    height:16px;
    background:#fff;
    border:4px solid var(--theme-color);
    border-radius:50%;
}

.blogs-title p {
    max-width: 785px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
    margin-top: 10px;
}




.blogs_box_main_div {
    position: relative;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(12px);

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.3);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition: 0.4s ease-in-out;

    margin-bottom: 25px;

    height: 100%;

    display: flex;
    flex-direction: column;
}

/* TOP BORDER */

/* .blogs_box_main_div::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--theme-color),
        #c07639
    );
} */

/* HOVER */

.blogs_box_main_div:hover {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.blogs_box_img_div {
    position: relative;
    overflow: hidden;
}

.blogs_box_img_div>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px 28px 0 0;
}



/* CONTENT */

.content_blogs_div {
    padding: 28px 24px;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}

/* TITLE */

.content_blogs_div>h4 {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    transition: 0.3s;
}

.blogs_box_main_div:hover .content_blogs_div>h4 {
    color: var(--theme-color);
}

/* PARAGRAPH */

.content_blogs_div>p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px !important;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================
   BLOGS READ BUTTON
========================== */

.blogs-read-btn {
    position: relative;
    display: inline-block !important;
    width: fit-content !important;
    max-width: fit-content !important;
    flex: unset !important;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    background: var(--theme-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, .25);
    transition: .3s;
    overflow: hidden;
}

.blogs-read-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg,
            #222 0%,
            #222 50%,
            #33d6ff 50%,
            var(--theme-color) 60%);
    border-radius: 0 0 8px 0;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .25);
    transition: .3s;
}

.blogs-read-btn:hover::before {
    width: 28px;
    height: 28px;
}

.blogs-read-btn:hover {
    color: var(--white-color);
}

.blogs-read-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .25);
}

.blogs-read-btn:focus {
    outline: none;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, .25);
}

/* blog section end */



/* faq section */



.faq-section {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 40px 0px 40px 0px;
    background-color: #f5f5f5;
}

.faq-section.style-vision-mission {
    background-position: left;
    margin-bottom: -160px;
}

.faq-section .common-title {
    max-width: 430px;
    width: 100%;
    margin-bottom: 15px;
}

.faq-section .common-title h5 {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black-color2);
}

.faq-section .common-title span {
    color: var(--theme-color);
}

.faq-section .text {
    max-width: 550px;
    width: 100%;
    margin-bottom: 30px;
}

.faq-section .blog-btn {
    margin-bottom: 50px;
}

.faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 18px;
    background-color: var(--white-color);
    padding-bottom: 10px;
    border-radius: 40px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button {
    border: 0;
    box-shadow: none;
    padding: 22px 20px 12px 22px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black-color2);
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    font-weight: 700;
    background-color: var(--white-color);
    gap: 10px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .accordion-title {
    color: var(--theme-color);
    margin-right: 5px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--theme-color);
    border-radius: 15%;
    margin-left: auto;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus,
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
    position: absolute;
    background-color: var(--white-color);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus {
    width: 12px;
    height: 2px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
    width: 2px;
    height: 12px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-plus {
    opacity: 1;
}

.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-minus {
    opacity: 1;
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    background-color: var(--theme-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-plus {
    opacity: 1;
    background-color: var(--white-color);
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-minus {
    opacity: 0;
    background-color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:after {
    display: none;
}

.faq-accordion .accordion-item .accordion-body {
    padding: 0 50px 12px 35px;
    font-size: 15px;
    font-weight: 500;
}

.faq-section .faq-right-main {
    padding: 20px 0px;
    margin-top: 10px;
}

.faq-section .common-subtitle {
    margin-bottom: 10px;
}

.faq-section .common-subtitle i {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
}

.faq-section .common-subtitle span {
    font-weight: 700;
    font-size: 16px;
    color: var(--theme-color);
}

.faq_right_txt>p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    margin: 0;
}

.faq_btn_div {
    margin-top: 30px;
}

.faq_btn_div>a {
    background-color: var(--theme-color);
    padding: 10px 20px;
    border-radius: 100px;
    color: var(--background-color) !important;
    font-weight: 500;
    font-size: 18px;

}

.faq-right-image {
    margin-bottom: 30px;
}

.faq-right-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: auto;
}

/* faq  end */


/* float icons call whatsapp start */

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 120px;
    right: 18px;
    z-index: 1000;
}

.mobile_whatsapp {
    display: none;
}

.desktop_whatsapp {
    display: block;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: var(--theme-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--theme-color);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.call_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}


.whatsapp_icon_div>a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 15px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;

}



@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}



.whatsapp_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

/*  floats icons call whatsapp end */


/* pagetitle css */
.page_title_mkp_section {
    background-image: url(../images/breadcrumb01.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.page_ti_overly_mkp_div {
    background-color: rgb(34 24 24 / 79%);
    padding: 50px 0px 30px 0px;
}

.page_title_tax_mkp_main_div {
    text-align: center;
    margin: auto;
}

.page_title_tax_mkp_div {
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.5); */
    display: inline-block;
    padding: 7px 5px 0px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.page_title_tax_mkp_div>h1 {
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page_title_tax_mkp_div>ul {
    list-style: none;
    padding: 0px 6px;
    margin-top: -7px;
}

.page_title_tax_mkp_div>ul>li>a {
    color: var(--white-color);
    font-weight: 500;
}

.page_title_tax_mkp_div>ul>li {
    display: inline-block;
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.page_title_tax_mkp_div>ul>i {
    font-size: 12px;
    color: var(--white-color);
}

/* page titile css end */



/*==========================================
        CONTACT PAGE
==========================================*/

.contact-page-section {
    padding: 60px 0;
    background: #f8f9fb;
}

/* Left Form */

.contact-page-content {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    height: 100%;
}

.contact-page-content span {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-page-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Form */

.contact-page-content .form-control {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: none;
    transition: .3s;
}

.contact-page-content textarea.form-control {
    height: 170px;
    padding: 15px 18px;
    resize: none;
}

.contact-page-content .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, .15);
}

/* Button */

.contact-send-btn {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 14px 35px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    margin-left: 10px;
}

.contact-send-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #222 0%, #222 50%, #ff8c33 50%, var(--theme-color) 60%);
    border-radius: 0 0 8px 0;
    transition: .35s;
}

.contact-send-btn:hover::before {
    width: 30px;
    height: 30px;
}

.contact-send-btn:hover {
    transform: translateY(-3px);
}

.contact-send-btn:active {
    transform: translateY(1px);
}

/* Right Cards */

.contact-page-info-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.contact-page-info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/* Icon */

.contact-page-icon {
    width: 75px;
    height: 75px;
    border-radius: 15%;
    margin: 0 auto 20px;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: .4s;
}

.contact-page-info-box:hover .contact-page-icon {
    transform: rotateY(180deg);
}

/* Heading */

.contact-page-info-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 12px;
}

/* Text */

.contact-page-info-box p {
    margin: 0;
    color: var(--black-color2);
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
}

.contact-page-info-box a {
    color: var(--black-color2);
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
}

.contact-page-info-box a:hover {
    color: var(--theme-color);
}

/* Google Map */

.contact-map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/*==========================================
        RESPONSIVE
==========================================*/

/* @media(max-width:1199px){

    .contact-page-content h2{
        font-size:30px;
    }

}

@media(max-width:991px){

    .contact-page-content{
        margin-bottom:35px;
    }

    .contact-page-content h2{
        font-size:28px;
    }

    .contact-map{
        margin-top:30px;
    }

}

@media(max-width:767px){

    .contact-page-section{
        padding:50px 0;
    }

    .contact-page-content{
        padding:25px;
    }

    .contact-page-content h2{
        font-size:25px;
    }

    .contact-page-info-box{
        padding:28px 20px;
    }

    .contact-map iframe{
        height:350px;
    }

}

@media(max-width:575px){

    .contact-page-content{
        padding:20px 15px;
    }

    .contact-page-content span{
        font-size:14px;
    }

    .contact-page-content h2{
        font-size:22px;
    }

    .contact-page-content .form-control{
        height:50px;
    }

    .contact-page-content textarea.form-control{
        height:140px;
    }

    .contact-page-info-box{
        padding:25px 18px;
    }

    .contact-page-icon{
        width:65px;
        height:65px;
        font-size:25px;
    }

    .contact-page-info-box h5{
        font-size:20px;
    }

    .contact-map iframe{
        height:280px;
    }

} */

/* product page css start*/

.product-page-title {
    text-align: center;
}

.product-title{
    text-align:center;
    margin-bottom:50px;
}

.product-title h3{
    position:relative;
    display:inline-block;
    font-size:38px;
    font-weight:700;
    color:var(--black-color2);
    line-height:1.2;
    padding:0 30px 18px;
    text-transform:capitalize;
    letter-spacing:.5px;
}

/* Main underline */
.product-title h3::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:110px;
    height:4px;
    background:linear-gradient(90deg,
        transparent,
        var(--theme-color),
        transparent);
    border-radius:50px;
}

/* Center Dot */
.product-title h3::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%);
    width:16px;
    height:16px;
    background:#fff;
    border:4px solid var(--theme-color);
    border-radius:50%;
}

.product-page-title p {
    margin: 0 auto 10px 0px;
    font-size: 15px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
}

.product-heading h3 {
    background-color: var(--theme-color);
    border-radius: 10px;
    color: var(--white-color);
    padding: 10px 20px;
    margin: 30px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;

}

/*  PRODUCT BOTTOM CONTENT */

.product-bottom-content {
    padding: 10px 0px 20px 0px;
    background: #f8f9fb;
}

.product-bottom-content .content-box {
    background: var(--white-color);
    margin-bottom: 10px;
}

.product-bottom-content .content-box h2 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 22px;
    padding-left: 18px;
}

.product-bottom-content .content-box h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 32px;
    background: var(--theme-color);
    border-radius: 10px;
}

.product-bottom-content .content-box p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 500;
}

.product-bottom-content .content-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-bottom-content .content-box ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

.product-bottom-content .content-box ul li:last-child {
    margin-bottom: 0;
}

.product-bottom-content .content-box ul li::before {
    content: "🔸";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--theme-color);
    font-size: 18px;
}

.product-bottom-content .content-box ul li strong {
    color: var(--black-color2);
    font-weight: 700;
}

/*product faq*/

.product-faq-section {
    padding: 40px 0;
    background: #f3f3f3;
}

.product-faq-title {
    margin-bottom: 50px;
}


.product-faq-title h2 {
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 18px;
    padding-bottom: 18px;
    line-height: 1.2;
}

.product-faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--theme-color);
    border-radius: 30px;
}

.product-faq-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 18px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 50px;
}

.product-faq-title p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 24px;
    color: var(--black-color2);
    font-weight: 500;
}

.product-faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.product-faq-accordion .accordion-button {
    background: var(--white-color);
    color: var(--black-color2);
    font-size: 17px;
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none;
}

.product-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--theme-color);
    color: var(--white-color);
}

.product-faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.product-faq-accordion .accordion-button::after {
    filter: brightness(0);
}

.product-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.product-faq-accordion .accordion-body {
    background: var(--white-color);
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
    padding: 20px 25px;
    font-weight: 500;
}

/* product page end */

/* privacy section start */

.privacy_section {
    padding: 40px 0px 40px 0px;
}

.privacy_content_main_div>h1 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px !important;
}


.privacy_content_main_div>h3 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}



.privacy_content_main_div>h4 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>h5 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>p {
    font-weight: 500;
    font-size: 15px;
    color: var(--black-color);
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div>p>strong {
    color: var(--theme-color);
}

.privacy_content_main_div>p>a {
    color: var(--theme-color);
    font-weight: 700;
    text-decoration: underline !important;
}


.privacy_content_main_div>ul {
    list-style: square;
    padding: 0px 20px !important;
    margin-bottom: 0px !important;
}

.privacy_content_main_div>ul>li {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-dark);
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 0;
}

/* Privacy Section end  */


/* product details page css */

/* pro dt css start */

.shri_prod_dt_section {
    padding: 40px 0;
    background: var(--white-color);
}

.shri_prod_dt_img {
    position: sticky;
    top: 130px;
    background: var(--white-color);
    border-radius: 25px;
    border: 1px solid var(--gray-color2);

}

.shri_prod_dt_img img {
    width: 100% !important;
    height: auto;
    object-fit: contain;
    transition: 0.4s ease;
    border-radius: 25px;
}


.shri_prod_dt_content span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.shri_prod_dt_content h1 {
    font-size: 30px;
    line-height: 25px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 12px;
}

.shri_prod_dt_content h2 {
    font-size: 20px;
    line-height: 58px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.shri_prod_dt_content h2 span {
    color: var(--theme-color);
    font-size: inherit;
}

.shri_prod_dt_content p {
    font-size: 15px;
    line-height: 26px;
    color: var(--black-color2);
    margin-bottom: 18px !important;
    font-weight: 500;
}

.shri_prod_dt_content p>strong {
    font-size: 15px;
}

.shri_prod_dt_content ul {
    list-style: square !important;
    padding: 0px 0px 0px 20px !important;
}

.shri_prod_dt_content ul li p{
    font-size: 15px;
    line-height: 30px;
    color: var(--black-color2);
    margin-bottom: 10px !important;
    font-weight: 500;
}


.shri_prod_dt_content ul li strong {
    font-size: 15px;
}

.shri_prod_dt_content h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.shri_prod_dt_content_full {
    padding-left: 0;
    margin-top: 20px;
}

/* pro dt css end */

.our-products-section .swiper {
    padding: 15px 5px 60px;
}

.our-products-section .swiper-slide {
    height: auto;
}

/* .our-products-section .products-card {
    height: 100%;
} */

.our-products-section .swiper-button-next,
.our-products-section .swiper-button-prev {
    color: var(--theme-color);
}

.our-products-section .swiper-pagination-bullet-active {
    background: var(--theme-color);
}

/*  */



/*  */
/*=====================================
 BLOG DETAILS PAGE
======================================*/

.blog-details-page {
    padding: 45px 0;
    background: #f7f9fc;
}

/*=====================================
 RECENT BLOGS
======================================*/

.recent-blog-slider-section {
    margin-bottom: 55px;
    border-bottom: 1px solid #ccdeea;
    padding: 30px 0px;
    border-top: 1px solid #ccdeea;
}

.recent-blog-slider-section .section-title {
    margin-bottom: 20px;
}

.recent-blog-slider-section .section-title h2 {
    font-size: 25px;
    font-weight: 700;
    /* color: #052046; */
    margin-bottom: -20px;
    color: var(--theme-color);
}

.recentBlogSlider {
    padding: 10px;
}

.recent-blog-item {
    /* display: flex; */
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    /* transition:.4s; */
    height: 150px;
    /* box-shadow:0 10px 35px rgba(0,0,0,.06); */
    padding: 10px;
    background: linear-gradient(rgb(255 255 255 / 22%), rgb(255 255 255 / 25%)), url(../images/dot01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.recent-blog-image {
    overflow: hidden;
    border-radius: 10px;
}

.recent-blog-image img {
    width: 100%;
    /* height: 240px; */
    object-fit: cover;
    border-radius: 10px;
}

.recent-blog-content {
    padding: 15px 0px;
}

.recent-blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
    line-height: 24px;
    margin-bottom: 0;
}

.recent-blog-content p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    font-weight: 500;
}

/*=====================================
 IMAGE
======================================*/

.blog-intro-row {
    margin-bottom: 70px;
}

.blog-feature-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.blog-feature-image img {
    width: 100%;
    border-radius: 22px;
    /* transition: .5s; */
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* .blog-feature-image:hover img {
    transform: scale(1.05);
} */

/* .blog-intro {
    padding-left: 15px;
} */

.blog-tag {
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-intro h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 5px;
    line-height: 40px;
}

.blog-intro p {
    font-size: 15px;
    line-height: 24px;
    color: var(--black-color2);
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-intro h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--black-color2);
    /* margin-bottom:5px; */
    line-height: 58px;
    margin-top: -12px;
}

/*=====================================
 BLOG CONTENT
======================================*/

.blog-full-content {
    margin-top: -60px;
}

.blog-full-content h2 {
    font-size: 25px;
    font-weight: 700;
    color: #052046;
    margin: 30px 0 12px;
    line-height: 1.3;
}

.blog-full-content h2:first-child {
    margin-top: 0;
}

.blog-full-content p {
    font-size: 15px;
    line-height: 24px;
    color: var(--black-color2);
    margin: 0 0 15px;
    font-weight: 500;
}

/*=====================================
 FEATURE LIST
======================================*/

.blog-feature-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 22px;
}

.blog-feature-list li {
    position: relative;
    padding: 10px 0 10px 22px;
    margin: -19px 0px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
    font-size: 15px;

}

.blog-feature-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--theme-color);
    font-size: 12px;
}

.blog-feature-list strong {
    color: var(--black-color2);
    font-weight: 700;
    font-size: 16px;
}



/* blog detail end */



/*  */
.sitemap_section {
    padding: 50px 0px;
    background-color: var(--white-color);
}

.sitemap_list_main_div {
    margin-bottom: 30px;
}

.sitemap_list_main_div>h1 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-dark);
    text-transform: capitalize;
}


.sitemap_list_main_div>h2 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--black-color2);
    text-transform: capitalize;
    font-weight: 700;
}


.sitemap_list_main_div>ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sitemap_list_main_div>ul::-webkit-scrollbar {
    display: none;
}


/* width */
.sitemap_list_main_div>ul::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.sitemap_list_main_div>ul::-webkit-scrollbar-track {
    background: var(--gray-color2);
    border-radius: 100px;
}

/* Handle */
.sitemap_list_main_div>ul::-webkit-scrollbar-thumb {
    /* background: #0a58c4; */
    background-color: var(--white-color);
    border-radius: 100px;
}

.sitemap_list_main_div>ul>li {
    background-color: var(--white-color);
    margin-bottom: 20px;
    border: 1px solid #f8c5a3;
    padding: 12px 20px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* transition: all 0.3s ease-in-out; */
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sitemap_list_main_div>ul>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
}

.sitemap_list_main_div>ul>li>a i {
    font-size: 14px;
    min-width: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.sitemap_list_main_div>ul>li:hover {
    background-color: var(--theme-color);
    /* transform: translateY(-3px); */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    color: var(--white-color);
}

.sitemap_list_main_div>ul>li:hover>a {
    color: var(--color-white);
}

.sitemap_list_main_div>ul>li:hover>a::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.title_sitemap>h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}


/*  */


/* Choose css*/
.choose-area {
    position: relative;
    overflow: hidden;
}

.choose-area.choose-bg {
    position: relative;
    background: #f5f4f4;
    z-index: 1;
    padding: 40px 0px 40px 0px;

}

/* .choose-area.choose-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 31%;
  background: var(--theme-color);
  z-index: -1;
} */
.choose-area .text-shape {
    position: absolute;
    top: 100px;
    right: -20px;
    writing-mode: sideways-lr;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 130px;
    line-height: 230px;
    font-weight: 800;
    letter-spacing: 5px;
}


@media all and (min-width: 992px) and (max-width: 1199px) {
    .choose-area .text-shape {
        right: -100px;
    }
}

@media all and (max-width: 991px) {
    .choose-area .text-shape {
        top: unset;
        bottom: 20px;
        line-height: 205px;
    }
}

@media all and (max-width: 767px) {
    .choose-area .text-shape {
        font-size: 100px;
        line-height: 100px;
    }
}

.why_us_title_div>span {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.why_us_title_div>h4 {
    font-size: 30px;
    color: var(--black-color2);
    text-transform: capitalize;
    font-weight: 700;

}

.why_us_title_div>p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

.choose-content-wrap {
    margin-top: 30px;
}

.choose-item {
    display: flex;
    gap: 20px;
    background: #f5f4f4;
    padding: 15px;
    border-radius: 20px;
    position: relative;
    /* margin-top: 25px; */
}

.choose-item .icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    line-height: 77px;
    background: var(--theme-color);

    border-radius: 15%;
    text-align: center;
}

.choose-item .icon img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.choose-item .info h4 {
    color: var(--black-color2);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.choose-img {
    width: 95%;
}

.choose-img img {
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.choose-item .info p {
    font-weight: 500;
    font-size: 15px;
    color: var(--black-color2);
}

/*  */
