@charset "UTF-8";
/*
Copyright (c) 2023 
------------------------------------------------------------------
[Master Default Stylesheet]
-------------------------------------------------------------------
1. body
 .
 .
 .
51. components
52. responsive

-------------------------------------------------------------------*/

/********************************************************************************************* 
1. body start
*********************************************************************************************/

/* -webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s; */


:root {
    --hs-body-color: #f8fafd;
    --hs-primary: #fdc220;
    --hs-bg-light: #f1f7f8;
    --hs-bg-darkColor: #13223c;
    --hs-white-color: #ffffff;
    --hs-bgColor-gray: #f9fafb;
    --hs-title-color: #1c1c1c;
    --hs-text-color: #5f6c91;
    --all-transition: all 0.3s;
    --transition: all 0.3s ease-in-out;

    --hs-purple: #944be4;
    --hs-purple-light: 148, 75, 228;

    --hs-blue: #797ff2;
    --hs-blue-light: 121, 127, 242;

    --hs-success: #4ce6a1;
    --hs-success-light: 13, 205, 148;

    --hs-pink: #fe6a94;
    --hs-pink-light: 239, 78, 184;

    --hs-pink: #ef4eb8;
    --hs-light-pink: 239, 78, 184;
}

/* background-color: rgb(var(--name), .1); */
html,
body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #778aab;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    background-color: var(--hs-white-color);
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* -webkit-touch-callout: none; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
    font-family: "Poppins", Sans-serif;
}

p {
    font-family: "Poppins", Sans-serif;
}

span {
    font-family: "Poppins", Sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Poppins", Sans-serif;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: "Poppins", Sans-serif;

}

button,
input,
select,
textarea {
    font-family: inherit;
    font-family: "Poppins", Sans-serif;
}

img,
svg {
    vertical-align: middle;
}

label,
input,
button {
    font-family: "Poppins", Sans-serif;
}

.hide {
    display: none;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: center;
}

svg path {
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

/* ==== its css comman start === */
.hs_container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.hs_container_full {
    padding: 0 30px;
}

.hs_section {
    background-color: var(--hs-white-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.hs_section_heading {
    max-width: 650px;
}

.hs_heading {
    font-size: 32px;
    line-height: 1.4;
    margin: 0 0 15px;
    text-transform: capitalize;
    font-weight: 600;
}

.hs_subheading {
    font-size: 20px;
    line-height: 36px;
    margin: 0 0 15px;
    font-weight: 500;
}

.hs_paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.hs_purple {
    color: var(--hs-purple);
    background-color: rgb(var(--hs-purple-light), .1);
    border: 1px solid rgb(var(--hs-purple-light), .5);
}

.hs_blue {
    color: var(--hs-blue);
    background-color: rgb(var(--hs-blue-light), .1);
    border: 1px solid rgb(var(--hs-blue-light), .5);
}

.hs_success {
    color: var(--hs-success);
    background-color: rgb(var(--hs-success-light), .1);
    border: 1px solid rgb(var(--hs-success-light), .5);
}

.hs_pink {
    color: var(--hs-pink);
    background-color: rgb(var(--hs-pink-light), .1);
    border: 1px solid rgb(var(--hs-pink-light), .5);
}

.hs_btn {
    padding: 0 15px;
    text-decoration: none;
    min-width: 150px;
    height: 46px;
    line-height: 46px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    z-index: 1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: #beee4ac4;
    color: #fff;
    transition: var(--all-transition);
    position: relative;
    overflow: hidden;
    margin-right: 45px;
}

.hs_btn_primary {
    background-color: #fdc220;
}

.hs_nav_clr {
    color: var(--hs-primary);
    font-weight: 600;
}

.hs_section_btn {
    margin-top: 30px;
}

/* ==== its css start end === */
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

/* ==== its header start === */
.hs_logo img {
    max-height: 90px;
    margin-left: 80px;
    object-fit: contain;
}

@media (max-width:768px) {
    .hs_logo img {
        max-height: 77px;
        margin-left: 0px;
        object-fit: contain;
    }
}

.hs_section1_wr .hs_section {
    padding: 0;
}

.hs-header-wrapper {
    position: absolute;
    /* top:15px; */
    background-color: #ffffff00;
    right: 0;
    left: 0;
    z-index: 9;
}

/* .hs-header-wrapper.pp-header-fixed {
    position: fixed;
    top: 0;
    background-color: #ffffff;
} */

.hs_nav_flex {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 15px 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.hs_nav ul {
    display: flex;
    gap: 30px;
}

.hs_nav ul li a {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    transition: var(--all-transition);
}

.hs_nav ul li a:hover {
    color: #d6ff72;
}

.hs_nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hs_section1_wr {
    padding: 15px 0 0;
}

.hs_banner_content {
    max-width: 620px;
}

.hs_banner_content h5 {
    color: var(--hs-primary);
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
}

.hs_banner_content h2 {
    font-size: 59px;
    line-height: 1.3;
    margin: 0 0 15px;
    color: var(--hs-white-color);
    text-transform: capitalize;
    font-weight: 600;
}

.hs_banner_content p {
    font-size: 22px;
    line-height: 32px;
    margin: -15px 0 20px;
    color: #9ef96d;
}

.hs_banner_btn a:nth-child(2) {
    margin-left: 15px;
}

.hs_banner_flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 250px 35px 200px;
    margin: 0 auto;
    max-width: 1600px;
}

.banner_img {
    text-align: right;
}

.banner_img img {
    max-width: 760px;
    max-height: 749px;
    object-fit: contain;
    width: 100%;
}

/* ==== its header start === */
/* hs_section2_wr  */
.hs_section2_wr .hs_section_heading {
    text-align: center;
    margin: 0 auto;
}

.hs_section2_wr .hs_heading {
    color: var(--hs-bg-darkColor);
}

.hs_section2_wr .hs_heading span {
    color: #3a53bf;
}

.hs_section2_wr .hs_paragraph {
    color: var(--hs-text-color);
}

.hs_section2_wr .hs_subheading {
    color: var(--hs-primary);
    margin: 0;
}

.hs_section2_wr .section_media_caption {
    position: relative;
    padding: 0 20px 15px;
    width: 100%;
    padding: 15px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4ac66f;
}

.hs_section2_flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.section_media_right img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.hs_section2_item {
    background-color: var(--hs-white-color);
    padding: 0;
    border-radius: 6px;
    text-align: center;
    box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hs_section2_item h3 {
    color: var(--hs-white-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.hs_section2_item p {
    color: #072944;
    font-size: 16px;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.hs_section2_item a {
    color: var(--hs-primary);
}

.hs_section2_wr .hs_section_btn {
    margin: 50px auto 0;
    text-align: center;
}

.hs_section2_wr .section_media img {
    width: 373px;
    height: 255px;
    object-fit: cover;
}

/* hs_section2_wr end */
/* hs_section3_wr */
.hs_section3_wr.hs_section {
    position: relative;
}

.hs_section3_wr .hs_heading {
    color: var(--hs-title-color);
}

.hs_section3_wr .hs_heading span {
    color: #3a53bf;
}

.hs_section3_wr .hs_subheading {
    color: var(--hs-title-color);
    margin: 0;
}

.hs_section3_wr .hs_paragraph {
    color: var(--hs-text-color);
}

.hs_section3_flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 123px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hs_section3_wr .hs_list_section {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.hs_list_section li img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.hs_section3_wr .hs_list_section li span {
    font-size: 14px;
    color: var(--hs-text-color);
}

.hs_section3_item img {
    max-width: 697px;
    max-height: 572px;
    object-fit: contain;
    width: 100%;
}

.hs_section3_wr .hs_list_section li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px;
}

/* hs_section3_wr end */
/* hs_section3_wr */
.hs_section4_wr {
    position: relative;
    background-color: #1482b191;
    height: 613px;
}

@media (max-width:768px) {
    .hs_section4_wr {
        position: relative;
        background-color: #1482b191;
        height: 839px;
    }
}

.hs_section4_flex {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 6px;
    position: relative;
}

.hs_form_flex {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hs_section4_wr .hs_section_heading {
    text-align: center;
}

.hs_section4_wr .hs_heading {
    color: #222223;
    margin: 0 0 5px;
}

.hs_section4_wr .hs_paragraph {
    color: var(--hs-white-color);
    margin: 0 0 30px;
}

.hs_section4_item {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.hs_section6_wr_full .hs_subheading {
    color: var(--hs-primary);
    margin: 0;
}

.hs_section6_centerImg {
    text-align: center;
}

.hs_section6_wr .hs_subheading {
    color: var(--hs-white-color);
    margin: 0;
}

.hs_section4_flex input {
    width: 100%;
    border-radius: 8px;
    padding: 0 170px 0 15px;
    height: 60px;
    max-width: 100%;
    border: 1px solid #ccc;
}

.hs_section4_flex input:focus-visible {
    outline: none;
    border: none;
}

/* hs_section3_wr end */
/* hs_section5_wr  */
.hs_section5_wr .hs_heading {
    color: var(--hs-bg-darkColor);
}

.hs_section5_wr .hs_subheading {
    color: var(--hs-primary);
    margin: 0;
}

.hs_section5_wr .hs_section_heading {
    margin: 0 auto;
    text-align: center;
}

.hs_section5_item {
    box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.hs_section5_flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: center;
    margin-top: 50px;
}

.hs_section5_item img {
    width: 373px;
    height: 304px;
    object-fit: cover;
}

.hs_section5_content {
    padding: 20px 10px;
}

.hs_section5_item h3 {
    font-size: 22px;
    color: var(--hs-bg-darkColor);
    margin: 0;
    padding: 10px 0 0;
}

.hs_section5_btn a {
    color: var(--hs-primary);
}

.hs_section5_content .hs_paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin: 5px 0 10px;
}

/* hs_section5_wr end */


/* hs_section6_wr  */
.hs_section6_wr {
    position: relative;
}

.hs_section6_wr .hs_section_heading {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.hs_section6_wr .hs_container {
    position: relative;
    z-index: 1;
}

.hs_section6_wr:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a62b9;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0.9;
}

.hs_section6_wr_full {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hs_section6_wr_full .hs_section_heading {
    text-align: center;
    max-width: fit-content;
}

.hs_section6_wr .hs_section_heading .hs_heading {
    color: var(--hs-white-color);
}

.hs_section6_wr .hs_section_heading .hs_heading span {
    color: #282723;
}

.hs_section6_wr .hs_section_heading .hs_paragraph {
    color: var(--hs-white-color);
}

.hs_section6_wr .hs_section6_flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hs_section6_wr .hs_section6_item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: center;
    transition: var(--all-transition);
    text-align: center;
}

.hs_section6_wr .hs_section6_item h3 {
    color: var(--hs-white-color);
    margin: 0;
    font-size: 24px;
}

.hs_section6_wr .hs_section6_item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--hs-white-color);
    margin: 5px 0 0;
}

.hs_section6_wr .hs_item_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hs-white-color);
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 15px;
}

.hs_section6_wr .hs_item_icons img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.hs_section6_centerImg img {
    max-width: 377px;
    max-height: 523px;
    object-fit: contain;
}

/* hs_section6_wr end */

/* footer start  */
.hs_section8_wr .hs_footer_logo img {
    max-width: 280px;
    max-height: 90px;
    margin-left: 53px;
    object-fit: contain;
}

.hs_section8_wr {
    position: relative;
    background-color: #b4d36b;
}

.hs_section8_flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hs_section8_wr ul.hs_link_social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hs_section8_wr ul.hs_link_social li {
    margin: 0;
}

.hs_section8_wr ul.hs_link_social li img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

.hs_section8_flex h3 {
    color: #b61353;
    font-size: 24px;
    margin: 0 0 15px;
    font-weight: 600;
}

.hs_section8_item ul li {
    margin-bottom: 10px;
}

.hs_section8_item p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.hs_section8_item ul li span {
    color: #000;
}

.hs_section8_item ul li a {
    color: #000;
}

.hs_section8_item ul li a:hover {
    color: #b61353;
}

ul.hs_socialMedia li {
    display: flex;
    gap: 10px;
}

.hs_socialMedia_inner span {
    display: block;
    line-height: 1.8;
}

ul.hs_socialMedia li img {
    max-width: 18px;
    max-height: 18px;
    object-fit: contain;
    margin-top: 5px;

}

.hs_copyRight.hs_section {
    padding: 15px 0;
    text-align: center;
    background-color: #b4d36ba6;
}

.hs_copyRight a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

/* footer end*/

.hs_section11_wr.mt_bgtempconatainer.hs_section {
    background-color: var(--hs-bg-darkColor);
    padding: 53px 30px;
    background-color: #f1ffce2e;
}

.hs_section11_flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.hs_section11_item {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
}

.hs_section11_box {
    text-align: center;
}

.hs_section11_box img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.hs_section11_item .hs_heading {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.hs_section8_wr ul.hs_link_social li a {
    background: #b61353;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 6px;
}

.hs_section8_wr ul.hs_link_social li a:hover {
    background-color: #2097fd;
}

/* Responsive Css Start */
@media screen and (min-width: 992px) {
    .hs_toggle {
        display: none;
    }
}

@media screen and (max-width: 1150px) {
    .hs_banner_content h2 {
        font-size: 42px;
        line-height: 45px;
    }
}

@media screen and (max-width: 991px) {

    .hs_banner_content h2 {
        font-size: 42px;
        line-height: 45px;
    }

    .hs_section1_wr.hs_section {
        padding: 50px 0 0;
    }

    .hs_section {
        padding: 20px 0;
    }

    .hs_nav {
        display: block;
        position: fixed;
        left: -250px;
        padding: 20px;
        top: 0;
        bottom: 0;
        background: #62981f;
        width: 250px;
        height: 100%;
        overflow: auto;
        z-index: 9;
    }

    .open .hs_nav {
        left: 0;
        display: block;
    }

    .hs_nav ul {
        display: block;
    }

    .hs_nav li {
        margin: 30px 0;
    }

    .hs_nav li a {
        font-size: 14px;
    }

    .hs_section6_wr_full {
        grid-template-columns: 1fr;
    }

    .hs_section6_wr .hs_section6_flex {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
    }
}

@media screen and (max-width: 767px) {
    .hs_section6_wr .hs_section6_item h3 {
        font-size: 16px;
    }

    .hs_subheading {
        font-size: 16px;
    }

    .hs_section6_wr .hs_item_icons {
        width: 85px;
        height: 85px;
    }

    .hs_section11_item {
        grid-template-columns: 100px 1fr;
    }

    .hs_section11_wr.mt_bgtempconatainer.hs_section {
        padding: 20px 15px;
    }

    .hs_section11_item .hs_heading {
        font-size: 16px;
    }

    .hs_section8_flex h3 {
        font-size: 18px;
    }

    .hs_btn {
        min-width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }

    .hs_banner_content h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .hs_banner_content p {
        font-size: 14px;
        line-height: 26px;
    }

    .hs_heading {
        font-size: 24px;
    }

    .hs_paragraph {
        font-size: 12px;
    }

    .hs_section3_flex {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hs_copyRight.hs_section {
        padding: 10px 0;
    }

    .hs_copyRight a {
        font-size: 12px;
    }

    .hs_section6_wr .hs_section6_item {
        padding: 15px;
    }

    .hs_banner_flex {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 15px;
    }

    .hs_section2_flex {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 500px) {
    .hs_logo img {
        max-width: 200px;
    }

    .hs_section6_wr .hs_section6_flex {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
}

/* Responsive Css End */


/* shree */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    margin-top: 76px;
    background-size: cover;
    background-position: center;
    display: none;
    /* Hide all slides by default */
}

.slide.active {
    display: block;
    /* Show the active slide */
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


@media screen and (max-width: 768px) {
    .carousel-container {
        height: 243PX;
    }

    .slide {
        height: 173px;
        margin-top: 70px;
    }

    .btn {
        padding: 5px 10px;
        top: 62%;
    }

    .hs_btn_nav {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    button {
        font-size: 12px;
        padding: 5px;
    }
}



/* home c-form */

.hs_section4_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.contact-form,
.map-section {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.contact-form {
    background: #fff;
    border-radius: 8px;
    border: 1px solid gray;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mt_form_input {
    margin-bottom: 15px;
}

.theme_input {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #cccccc99;
    border-radius: 5px;
    background-color: #b9b9b91a;
    box-sizing: border-box;
}

textarea.theme_input {
    resize: none;
}

.submit-btn-container {
    text-align: center;
    margin-top: 20px;
}

.pp-btn {
    background-color: #e92565;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.pp-btn:hover {
    background-color: #92c614;
}

.map iframe {
    width: 100%;
    height: 500px;
    /* Adjusted height to match the form */
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hs_section4_flex {
        flex-direction: column;
    }

    .contact-form {
        width: 92%;
        padding: 15px;
        margin-left: 13px;
    }

    .map-section {
        width: 100%;
        padding: 15px;
    }

    .map iframe {
        height: 300px;
        /* Adjust height for smaller screens */
    }
}




/* map */

.map-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* Adjust height as needed */
}

.image-overlay {
    position: absolute;
    bottom: 83px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    /* Adjust spacing between images */
    background: rgba(255, 255, 255, 0.8);
    /* Optional: semi-transparent background */
    padding: 10px;
    /* Optional: add padding */
    border-radius: 5px;
    /* Optional: rounded corners */
}

.small-image {
    width: 80px;
    height: 90px;
    object-fit: cover;
    border-radius: 5px;
    /* Optional: round corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Optional: add a shadow effect */
    cursor: pointer;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .small-image {
        width: 40px;
        height: 40px;
    }

    .image-overlay {
        bottom: 15px;
        right: 21px;
        grid-template-columns: repeat(2, 1fr);
        /* Adjust to 2 columns for smaller screens */
    }
}



/* new-section-css */

.acupressure-summary-section {
    background: linear-gradient(to bottom, #45811f, #000000);
    color: white;
    padding: 29px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.acupressure-summary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.acupressure-summary-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.acupressure-summary-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.acupressure-summary-buttons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.acupressure-btn {
    background-color: #3ba13e;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    min-width: 250px;
}

.acupressure-btn:hover {
    background-color: #aa245b;
}

/* 🌐 Media Query for Mobile View */
@media (max-width: 768px) {
    .acupressure-summary-title {
        font-size: 24px;
    }

    .acupressure-summary-text {
        font-size: 14px;
    }

    .acupressure-summary-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .acupressure-btn {
        width: 100%;
        max-width: 300px;
    }
}

.text-color {
    font-size: 17px;
    color: #333;
    text-align: center;
}

/* form */

.mt_form_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mt_form_row .mt_form_input {
    flex: 1;
    min-width: 200px;
    /* adjust based on your layout */
}

@media (max-width: 768px) {
    .mt_form_row {
        flex-direction: column;
    }
}

.cards {
    border: 1px solid #f2f2f2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f0f5e8b3;
    padding: 15px 15px;
}

li a {
    text-decoration: none
}

/* testim */

.review-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.review-block {
    flex: 1 1 30%;
    position: relative;
    padding-top: 5px;
}

.review-block::before {
    content: "❝";
    font-size: 60px;
    color: #b21a45;
    position: absolute;
    top: -27px;
    left: -32px;
}

.review-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c0ccf2;
}

.review-name {
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 768px) {
    .review-row {
        flex-direction: column;
        gap: 30px;
    }

    .review-block {
        flex: 1 1 100%;
    }
}

/* new-faq */

.custom-accordion {
    margin: 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.custom-accordion h2 {
    font-size: 20px;
    color: #000;
}

.custom-accordion h2 span {
    color: #af1254;
    font-weight: 600;
}

.accordion-item {
    margin-top: 10px;
}

.accordion-toggle {
    background: #af1254;
    color: #fff;
    border: none;
    padding: 15px;
    padding-left: 44px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.accordion-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35px;
    background: #f99ac26b;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.accordion-toggle::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-toggle.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #f5f5f5;
    border-left: 4px solid #af1254;
}

/* 📱 Media Query for Mobile */
@media (max-width: 600px) {
    .accordion-toggle {
        font-size: 14px;
        padding: 12px;
        padding-left: 40px;
    }

    .accordion-toggle::after {
        right: 15px;
    }

    .custom-accordion h2 {
        font-size: 18px;
    }
}


/* faq-old */

.faq-section {
    max-width: 1015px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.faq-section h2 span {
    color: #7c21c5;
}

.faq-item {
    margin-bottom: 10px;
    background: #f7f9ff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    position: relative;
    cursor: pointer;
    outline: none;
}

.faq-toggle::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-toggle.active::after {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 16px 20px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
}

/* 📱 Media Query for Mobile */
@media (max-width: 600px) {
    .faq-section h2 {
        font-size: 22px;
    }

    .faq-toggle {
        font-size: 14px;
        padding: 14px 18px;
    }

    .faq-content {
        font-size: 14px;
    }
}

/* cadr-media-query */

@media only screen and (max-width: 767px) {
    #faq .row {
        flex-direction: column;
        align-items: center;
    }

    #faq .col {
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }

    #faq .cards {
        width: 100% !important;
    }

    #faq .card-body {
        text-align: center;
    }
}

/*  */

/* Default: Hide mobile banner */
.mobile-banner {
    display: none;
}

/* Show on screens smaller than 768px */
@media only screen and (max-width: 767px) {
    .hs_section1_wr {
        display: none;
        /* Hide original desktop banner */
    }

    .mobile-banner {
        display: block;
        background: #a7003a;
        padding: 0px 20px;
        text-align: center;
        color: #fff;
        padding-top: 98px;
    }

    .mobile-banner-content h2 {
        font-size: 26px;
        font-weight: bold;
    }

    .mobile-banner-content p {
        font-size: 16px;
        color: #a4ff62;
        margin: 10px 0 20px;
    }

    .mobile-banner-img {
        max-width: 90%;
        height: auto;
    }
}

.card-title {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 10px;
}

.sub-heading {
    color: #3ba13e;
    font-weight: 600;
    padding-top: 5px;
}

@media (max-width:768px) {
    .cards {
        border: 1px solid #f2f2f2;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: #f0f5e8b3;
        padding: 15px 15px;
        margin: 10px 30px;
    }
}

/* new-section */

.therapy-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}

.therapy-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f9f9f9;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    flex: 1 1 calc(33.333% - 32px);
    /* 3 per row */
    min-width: 250px;
}

.therapy-box i.icon {
    font-size: 20px;
}

/* Unique class customizations (optional) */
.box-zone {
    background-color: #e0f7fa;
}

.box-reflexology {
    background-color: #f1f8e9;
}

.box-sujok {
    background-color: #fff3e0;
}

.box-ayurvedic {
    background-color: #e8f5e9;
}

.box-vedic {
    background-color: #ede7f6;
}

.box-magnetic {
    background-color: #fce4ec;
}

.box-colour {
    background-color: #e3f2fd;
}

.box-seed {
    background-color: #f9fbe7;
}

.box-crystal {
    background-color: #f3e5f5;
}

.box-number {
    background-color: #e8eaf6;
}

/* 📱 Media Query for Mobile */
@media (max-width: 768px) {
    .therapy-box {
        flex: 1 1 100%;
    }
}


/* laxmi */

  



.info-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-box {
  background: #7c29f1;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
  text-align: center;
}

.info-box p {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 22px;
  color: #ffc107;
}

.register-btn {
  display: inline-block;
 
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}



.course-video {
  flex: 1 1 50%;
  padding: 20px;
  text-align: center;
}

.course-video iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 768px) {
  .course-container {
    flex-direction: column;
    align-items: center;
  }
  .course-info, .course-video {
    flex: 1 1 100%;
  }
}

   