/* common css ******************************************************************************/


@font-face {
    font-family: "Hind-Bold";
    src: url('../fonts/Hind/Hind-Bold.ttf');
}
@font-face {
    font-family: "Hind-Light";
    src: url('../fonts/Hind/Hind-Light.ttf');
}
@font-face {
    font-family: "Hind-Medium";
    src: url('../fonts/Hind/Hind-Medium.ttf');
}
@font-face {
    font-family: "Hind-Regular";
    src: url('../fonts/Hind/Hind-Regular.ttf');
}
@font-face {
    font-family: "Hind-BolSemiBoldd";
    src: url('../fonts/Hind/Hind-SemiBold.ttf');
}


:root {
    --white: #fff;
    --black: #000;
    --light-orange:#FAF5F2;
    --theme-color:#F6A82B;
    --orange_F59C2B:#F59C2B;
    --dark-orange:#B15416;
    --dark-brown:#361A07;
    --gray:#E2D9D5;

}

.gradient-bg{
    background: linear-gradient(315deg,#F6A82B,#EC402A);
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}
body {
    background: #fff;
    font-family: "Hind-Regular";
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 52px;
}
h2 {
    font-size: 44px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--black);
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.btn-common {
	font-size: 20px;
	padding: 15px 20px;
	/* background: #000a20; */
	color: var(--white);
	border-radius: 13px;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    text-transform: uppercase;
    font-family: "Hind-Bold";
    min-width: 200px;

}
.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}
section {
	padding-bottom: 60px;
	overflow: hidden;
}
.bg {
    padding: 60px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.button-box {
	padding-top: 20px;
}
.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
    background: var(--white);
    border: none;
    font-size: 20px;
    padding: 11px 50px 11px 20px;
    width: 100%;
    appearance: textfield;
    color: var(--black);
    border-radius: 13px !important;
    box-shadow: none;
    resize: none;
    outline: none;
}
.input-group {
	padding-bottom: 20px;
}

.section-heading h3{
    color: var(--dark-orange);
    text-transform: capitalize;
    font-family: "Hind-Bold";
    margin-bottom: 10px;

}
.section-heading p{
    font-family: "Hind-Regular";
    text-transform: capitalize;
    font-size: 22px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    /* box-shadow: 0 0 10px 2px #000; */
    background: var(--black);
}
#header {
	padding:0 0 15px;
	transition: .5s all;
	position: absolute;
    width: 100%;
    top: 0;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo-box img {
    max-width: 220px;
    width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
#header .button-box {
	margin-left: 20px;
	padding-top: 0;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 20px;
}
#header .main-nav nav ul li a {
	color: var(--white);
	padding: 5px;
	font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/Banner.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 27% 0;
}

#homeBanner .homeBanner-part .box {
    position: absolute;
    top: 30%;
}

#homeBanner .homeBanner-part .box  .title-box h1,
#homeBanner .homeBanner-part .box  .title-box h3{
    color: var(--white);
    text-align: center;
    text-shadow: 0px 2px #1f1414;
    font-family: "Hind-Bold";

}
#homeBanner .homeBanner-part .box  .title-box h1 {
    font-size: 100px;
    margin: 25px 0;
    line-height: 98px;

}
#homeBanner .homeBanner-part .box  .title-box h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}
#homeBanner .homeBanner-part .box  .title-box p {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 13px;
    padding: 10px 10px;
    text-align: center;
    font-size: 22px;
    font-family: "Hind-Bold";
}
#homeBanner .homeBanner-part .box .button-box {
    padding-top: 50px;
    text-align: center;

}
/* RegisterForm css ******************************************************************************/

#RegisterForm .RegisterForm-box {
    padding: 50px 30px;
    background: var(--light-orange);
}

.RegisterForm-box label{
    color: var(--dark-orange);
    font-family: "Hind-Medium";
    font-size: 24px;
    margin-bottom: 15px;
}
#RegisterForm .RegisterForm-box .form  input.bold{
    font-family: "Hind-Bold";
    color: var(--black);
}

#RegisterForm .RegisterForm-box img.icon {
    position: absolute;
    right: 20px;
    top: 18px;
}

  /* Hide the icon when the input field is focused */
.input-group input:focus + .icon,
.input-group input[type="time"] + .icon ,
.input-group input[type="date"] + .icon {
  display: none;
}


/* FORM */

.form .plan input, .form .payment-plan input, .form .payment-type input{
  display: none;
}
section.plan{
    display: flex;
    column-gap: 15px;
}
#RegisterForm .RegisterForm-box .plan label{
  position: relative;
  color: var(--black);
  background-color: transparent;
  font-size: 20px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: 1px solid var(--orange_F59C2B);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 13px;
  padding: 10px 0;
}

.form .plan input:checked + label, 
.form .payment-plan input:checked + label, 
.form .payment-type input:checked + label{
  background-color: var(--dark-orange);
  color: var(--white);
}





/* puja-detail section css ******************************************************************************/
#puja-detail .row{
    row-gap: 24px;
}
#puja-detail .box {
    border: 1px solid var(--orange_F59C2B);
    height: 100%;
    border-radius: 13px;
    padding: 20px 80px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
#puja-detail .box .text-box {
    width: 60%;
}
#puja-detail .box p{
    margin-bottom: 0;
    font-family: "Hind-Medium";
}
#puja-detail .box h5{
    color: var(--dark-orange);
    text-transform: capitalize;
}
/* why-choose section css ******************************************************************************/
#prasad-info{
    overflow: visible;
}
#prasad-info .prasad-info-box {
    border-radius: 13px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
#prasad-info .prasad-info-box  h3,
#prasad-info .prasad-info-box  p{
    color: var(--white);
}
#prasad-info .prasad-info-box  p {
    margin-bottom: 0;
    font-size: 20px;
    font-family: "Hind-Medium";
    width: 38%;
    margin: 0 auto;
}
span.line {
    width: 65px;
    height: 1px;
    background: var(--white);
}
#prasad-info .prasad-info-box img{
    position: absolute;
}
#prasad-info .prasad-info-box img.biliipatra {
    left: -4%;
    top: 0;
    width: 16%;
}
#prasad-info .prasad-info-box img.mala {
    right: -15%;
    top: 50%;
    max-width: 375px;
}
/* why-choose section css ******************************************************************************/
.why-choose-box .row{
    row-gap: 24px;
    justify-content: center;
}

.why-choose-box .box {
    border: 1px solid var(--orange_F59C2B);
    height: 100%;
    border-radius: 13px;
    padding: 15px 80px;
    text-align: center;
    min-height: 290px;
    align-items: center;
    display: flex;
}
.why-choose-box .box img{
    margin-bottom: 25px;
}
.why-choose-box .box p {
    font-size: 22px;
    line-height: 22px;
}
/* about css ******************************************************************************/
#about .about-part {
    padding: 6% 0;
    background: linear-gradient(to bottom, #d94b1d91, #d94b1d91), url(../images/lord-shiva-shivlingam.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
#about .about-part  h3,
#about .about-part  p{
    color: var(--white);
}
.about-text-box {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
/* Testimonials css ******************************************************************************/
#Testimonials .testimonials-slider .item {
    background: var(--light-orange);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
}
#Testimonials .testimonials-slider .item p:has(q) {
    width: 50%;
    margin: 0 auto 30px;
}
/* footer css ******************************************************************************/
#footer .top-box .logo-box img {
    max-width: 220px;
    margin-bottom: 30px;
}
#footer .top-box h5 {
    margin-bottom: 30px;
}
#footer .top-box .list-box li:not(:last-child) {
    margin-bottom: 20px;
}
#footer .middle-box .link-box ul {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    column-gap: 70px;
    row-gap: 10px;
    height: 74px;
}

.payment-list .link-box ul {
    justify-content: start;
}

.social-links .link-box ul {
    justify-content: end;
}
#footer .top-box .link-box ul img {
    max-width: 40px;
}
#footer .middle-box {
    border-top: 1px solid var(--gray);
    padding: 15px 0;
}
#footer .end-box {
    padding: 20px 0;
    background: var(--dark-brown);
}
#footer .end-box .link-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#footer .end-box .link-box ul li:not(:last-child) {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 2px solid var(--white);
	line-height: 1;
}

#footer .end-box .link-box ul  a{
    font-size: 18px;
    color: var(--white);
}
#footer .top-box .box2 .bottom {
    display: flex;
    gap: 50px;
    margin-top: 10px;
}
#footer .top-box .box .icon {
    min-width: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: start;
}


/* Thank you page css  */

.thank-you-main-wrapper {
    padding: 50px;
    padding-bottom: 0;
    overflow: hidden;
}

#thankYou-banner .thankYou-banner-part {
    background: url('../images/thankyou-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 10% 0 23%;
    position: relative;
}
#thankYou-banner .thankYou-banner-part img.mala-flower {
    position: absolute;
    width: 30%;
    right: -10%;
    bottom: 10%;
}
#thankYou-banner .thankYou-banner-part .close{
    
}
#thankYou-banner .thankYou-banner-part img.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
}
#thankYou-banner .thankYou-banner-part .banner-box {
    text-align: center;
}
#thankYou-banner .thankYou-banner-part .banner-box h3{
    color: var(--dark-orange);
    margin-bottom: 0;
    font-size: 45px;
}
#thankYou-banner .thankYou-banner-part .banner-box h5 {
    font-size: 30px;
    margin: 22px 0;
    line-height: 50px;
}
#thankYou-banner .thankYou-banner-part .banner-box .line{
    background: var(--dark-orange);
}

#prasad-info.thankyou {
    padding: 20% 0 100px;
}
#prasad-info.thankyou  .prasad-info-box img.mala {
    right: -40%;
    top: -135%;
    max-width: 46%;
}
