*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Plus Jakarta Sans", sans-serif;
}
.top_header{
    width: 100%;
    position: fixed;
    background: #f78c21;
    top: 0;
    z-index: 1000;
    padding: 10px 0px;
}
.top_main_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_links li a{
    font-size: 15px;
}
#top_icon{
    font-size: 18px;
    color: white;
    transition: 0.5s;
}

.top_icon_box{
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
    color: black;
}
.top_icon_box:hover i{
    color: #00a7c1 !important;
}

.header{
    width: 100%;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px 0px;
    position: fixed;
    top: 43px;
    z-index: 10000;
}

.logo{
    width: 50px;
}

.header_main_flex_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.active_line{
    color: #f78c21 !important;
    position: relative;
}
.active_line:before{
    content: '';
    position: absolute;
    width: 100% !important;
    height: 2px;
    background: #f78c21 !important;
    bottom: -1px;
}
.home_menu{
    display: flex;
    gap: 35px;
    margin-bottom: 0px;
    list-style: none;
}
.home_menu li a{
    color: black;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.5s;
}
.home_menu li a:before{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f78c21;
    bottom: -1px;
    right: 0;
    transition: 0.5s;
}
.home_menu li a:hover{
    color: #f78c21 !important;
}
.home_menu li a:hover:before{
    width: 100%;
    left: 0;
}

.header_btn{
    padding: 7px 20px;
    border: none;
    border-radius: 30px;
    background: #f78c21;
    color: white;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
}
.header_btn:before{
    content: '';
    position: absolute;
    width: 15px;
    border-radius: 50%;
    height: 15px;
    background: #0565b1;
    top: -8px;
    left: 10px;
    transition: 0.5s;
    z-index: -1;
}
.header_btn:hover:before{
    background: #0565b1;
    width: 100%!important;
    height: 100%!important;
    left: 0;
    top: 0;
    border-radius: 0px;
}

/* header css end */

/* home_css start */

.home_section{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}

.home_section_2{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/2.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section_2:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}

.home_section_3{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/3.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section_3:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}

.home_section_4{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/4.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section_4:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}

.home_section_5{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/gallery5.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section_5:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}
.home_section_6{
    width: 100%;
    height: 73vh;
    background-image: url(../images/banner/gallery1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}
.home_section_6:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: -1;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: 20px !important;
    color: white !important;
    font-weight: 600;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 20px !important;
    color: white !important;
    font-weight: 600;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    background: #f78c21 !important;
    border-radius: 50% !important;
    transform: translate(0px, 80px);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: #f78c21 !important;
    border-radius: 50% !important;
    transform: translate(0px, 80px);
}

.content_box{
    padding-top: 53px;
}


.sub_heading{
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgb(247 140 33);
    padding: 8px 20px;
    border-radius: 50px;
}
.heading{
    color: white!important;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin: 6px 0px;
    padding-top: 60px;
}
.para{
    color: rgb(255, 255, 255);
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 28px;
}
.btn_2{
    background: #0663b2;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
}
.btn_2:before{
    background: #f78c21;
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 10px;
    top: -7px;
    border-radius: 50%;
}
.btn_2:hover:before{
    background: #f78c21;
    width: 100%!important;
    height: 100%!important;
    left: 0;
    top: 0;
    border-radius: 0px;
}

.number_section{
    width: 100%;
    background: #f78c21;
}

.visitor_number_box{
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}


.icon_box {
    height: 90px;
    width: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
}

.icon_box:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px dashed #fff;
    border-radius: 50%;
    animation: working_process 20s linear infinite;
}
@keyframes working_process{
    100%{
        transform: rotate(360deg);
    }
}

.number_yoga_img{
    width: 58px;
}

.counter{
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}
.title{
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.number_heading{
    text-align: center;
    color: black;
    font-size: 30px;
    font-weight: 700;
    padding-top: 30px;
}

.span_heading{
    /* color: black; */
}

.general_information_section{
    width: 100%;
    padding-bottom: 40px;
    background: white;
}

.general_information_box{
    width: 100%;
    /* background: #EFF8FB; */
    border-radius: 10px;
    padding: 15px;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    backdrop-filter: blur(10px);
    margin-top: 15px;
    height:218px !important;
}

.general_information_box:hover{
    transform: translate(0px, -5px);
}

.general_icon_box{
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#general_icon{
    font-size: 50px;
    color: #f78c21;
}

.general_heading{
    font-size: 23px;
    color: #000635;
    font-weight: 700;
    transition: 0.5s;
    padding-top: 15px;
}

.general_para{
    color: #808080de;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }

  .popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
  }

  .video-container {
    margin-top: 15px;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  .goverment_section{
    width: 100%;
    background: #00a7c124;
    padding-bottom: 40px;
  }

  .flower_img{
    width: 50px;
    margin: auto;
    display: flex;
    transform: translate(0px, 25px);
    animation: img_rotate 1s alternate infinite;
  }

  @keyframes img_rotate{
    0%{
        transform: translate(0px, 25px) rotate(0deg);
    }
    100%{
        transform: translate(0px, 25px) rotate(15deg);
    }
  }

  .goverment_box{
    width: 100%;
    background: white;
    border-radius: 6px;
    position: relative;
    border: 1px solid #8080809e;
    z-index: 1;
    padding: 17px 0px;
  }
  .goverment_box::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #f78c21;
    bottom: 0;
    z-index: -1;
    border-radius: 6px;
    transition: 0.5s;
  }

  .goverment_box:hover:before{
    height: 100%;
  }
  .goverment_box:hover .general_heading{
    color: white;
  }

  .goverment_box:hover .general_para{
    color: #ffffffed;
  }

  .goverment_box:hover .header_btn{
    background: white;
    color: black;
  }

  .goverment_box button:hover{
    color: white !important;
  }

  .looking_section{
    width: 100%;
    background-image: url(../images/bg_3.webp);
    background-position: center;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
    padding-bottom: 50px;
  }

  .looking_section:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000b0;
    z-index: -1;
  }

  .heading_looking{
    font-size: 31px;
    font-weight: 600;
    color: white;
    text-align: center;
    padding-top: 40px;
  }

  .message_recording_section{
    width: 100%;
    background: #0006352e;
    padding-bottom: 50px;
  }

   .recording-card {
      background: #ecf0f1;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease;
      margin-top: 10px;
    }

    .recording-card:hover {
      transform: translateY(-5px);
      background-color: #d0e6f7;
    }

    .recording-card h4 {
      margin-bottom: 10px;
      color: #34495e;
    }

    audio {
      width: 100%;
      margin-top: 10px;
    }

    .our_gallery_section{
        width: 100%;
        background: #00a7c11c;
        padding-bottom: 40px;
    }

    .gallery_box{
        width: 100%;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 10px;
        height: 180px;
    }

    .footer_section{
        width:100%;
        background: #0565b1;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .footer_box{
        width: 100%;
    }

    .footer_box i{
        color: #f78c21 !important;
        font-size: 16px !important;
    }

    .footer_links li{
        padding-bottom: 10px;
    }

    .footer_links li a{
        transition: 0.5s !important;
    }
    .footer_links li a:hover{
        color: #f78c21 !important;
    }

    .language_img{
        width: 21px;
    }

    .input_box{
        width: 60%;
        background: white;
        padding: 4px 6px;
        border-radius: 4px;
    }
    .input_flex_box{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .input{
        width: 100%;
        border: none;
        outline: none;
        height: 100%;
        background: none;
    }

    .important_link_section{
        width: 100%;
        background: white;
        padding-bottom: 40px;
    }

    .link_box{
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    .link_img{
        width: 100%;
    }

    .social_media_section{
        width: 100%;
        background: #00063529;
        padding-bottom: 40px;
    }

    .social_box {
    width: 100%;
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    background: white;
    margin-top: 10px;
    overflow: auto;
    border-radius: 10px;
    overflow-x: hidden;
}

.insta_header_box {
    width: 100%;
    height: 50px;
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff0033;
    padding: 0px 10px;
    gap: 10px;
}

.insta_heading_text {
    font-size: 20px;
    color: white;
    margin-bottom: 0px;
}
.insta_link {
    color: white;
}

#social_icon {
    font-size: 20px;
    color: white;
    transition: 0.5s;
}

.twitter_image_link {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copy_right_box {
    width: 100%;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid white;
    margin-top: 10px;
}
.copy_right_para{
    color: white;
}
#humber_menu {
    font-size: 25px;
    color: black;
    /* transform: translate(-50px, 0px); */
    display: none;
}
.btn_menu{
    display:none;
}
.mySwiper{
    margin-top:-5px;
}
.image{
    width: 200px;
}
.main_image_flex{
    display:flex;
    gap: 20px;
    align-items: center;
}

.bg_img_section{
    width: 100%;
    height:300px;
    background-image: url(../images/banner/1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 130px;
    display: flex;
    align-items: center;
}
.bg_img_section:before{
    content: '';
    position: absolute;
    width: 100%;
    height:100%;
    background: #000000b0;
    z-index: -1;
}

.heading_about{
    text-align: center;
    color: white;
    font-size: 20px;
    width: fit-content;
    margin: auto;
    padding: 5px 10px;
    border-radius: 7px;
}

.tabs_menu{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.tabs_menu li a{
    color: black;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
}
.photo_active{
    position: relative;
    color: #f78c21 !important;
}

.photo_active:before{
    content: '';
    position: absolute;
    width: 100% !important;
    height: 3px;
    background: #f78c21 !important;
    bottom: -5px;
}

.tabs_menu li a:before{
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    background: #f78c21;
    bottom: -5px;
    left: 0;
    transition: 0.5s;
}

.tabs_menu li a:hover:before{
    width: 100%;
}

.tabs_menu li a:hover{
    color: #f78c21 !important;
}


.image_section{
    width:100%;
    padding: 40px 0px;
    background: white;
}
.image_section_box{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.yogi_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}