@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@100;300;400;500;700&family=Alegreya+Sans:wght@100;300;400;500;700;800&family=Rowdies:wght@300;400;700&family=Rubik+Doodle+Shadow&family=Satisfy&family=Titan+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&family=Lilita+One&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    /* --color-pink :#fe0074; */
    --color-pink :#ff9933;
    --color-half-white:#dd4243;
    --color-purple:#ce050d;
    --color-white:#fff;
    --color-light-pink:#febab014;
    --service-gredient: linear-gradient(45deg,#fffcb2a8,#dd4243d1);
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
h1 ,h2 ,h3 ,h4 ,h5 ,h6{
    font-family:  'Poppins', sans-serif;
    font-weight: 800;
  }
  h1{
 font-size: 55px;
  }
  h2{
 font-size: 35px;
  }
  p{
    font-family:'Poppins', sans-serif;
    font-size: 15px;
  }
  .color_pink{
    color: var(--color-pink);
  }
  input::placeholder{
    color: var(--color-purple) !important;
    font-weight: bold;
  }
  .bg_light_pink{
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--color-light-pink);
  }
  .bg_red{
    background: var(--color-purple);
  }
  .fs_30{
    font-size: 30px;
  }
.mt-50{
    margin-top:50px;
}
.mt-100{
    margin-top:100px !important;
}
.pt-50{
    padding-top:50px;
}
.pt-100{
    padding-top:100px;
}
.pt-80{
    padding-top:80px;
}
.Section_MT_P{
    margin-top:100px; padding-left:50px; padding-right:50px
}
.heaing_div{
    margin-bottom: 30px;
}
.heaing_div h5{
    color: var(--color-half-white);
}
.heaing_div h2{
    color: var(--color-half-white);
}
.jyotish_card_height{
  height:280px
}
/* responsive navbar */
.menu-items a img{
  width:30px;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #f8f8f8;
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    top:0;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
    align-items: center;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-family: "Josefin Sans", sans-serif;
}

.navbar a{
  color: var(--color-half-white);
  text-decoration: none;
  font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease-in-out;
    font-family: "Josefin Sans", sans-serif;
}

.navbar a:hover{
    color: #117964;
}
@media (max-width: 1200px){
  .menu-items li {
    margin-left: 15px;
  }
}
@media (max-width: 992px){
    
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        right: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

   .navbar .menu-items {
    padding-top: 25px;
    position: absolute;
    top: 0;
    background: #fff;
    height: 100vh;
    width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 31px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
    align-items: start;
   }
    .navbar .menu-items li{
        margin-bottom: 12px;
        font-size: 1.1rem;
        font-weight: 500;
    }

 

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }
    .nav-item .dropdown-menu {
    border: none;
    }
}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}
/* responsive navbar */

.logo img{
  width:100px;
}
.hindi_logo{
  width:150px !important;
}

.logo span{
  font-weight: bold;
  font-size: 32px;
  font-family: 'Rowdies', sans-serif;
  font-family: 'Alegreya Sans SC',sans-serif;
  margin-left: -5px;
  background: -webkit-linear-gradient(#ff0004, #c70609);
  /* background: -webkit-linear-gradient(#ec9172, #c70609); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-nav li a{
  color:var(--color-purple) !important; 
  font-weight:500;
  font-size:17px;
}
.navbar-nav li a:hover{
  color:var(--color-pink) !important; 
  font-weight:bold;
  font-size:17px;
  text-decoration: underline;
}
.button{
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  padding: 10px 45px;
  color: var(--color-purple);
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  border: 2px solid var(--color-purple)
}
.servicecard_img{
  z-index: 1; position: relative; border: 7px solid #feb5a0;
}
.visit_place_card_img{
  height:200px; width:100%
}
.benfits_card{
  height: 200px;
}
.jaap_img{
  width: 100px;
  /* height: fit-content; */
  float: right;
}
.jaap_section{
  height: 250px;
}
  /* hero section */
  .hero_item1{
    background: linear-gradient(45deg,var(--color-pink) , var(--color-half-white));
  }
  .hero_item2{
    background: linear-gradient(45deg,var(--color-half-white) , var(--color-pink));
  }
  .hero_section .hero_item1 img, .hero_section .hero_item2 .Hero_img_div{
    height:450px; overflow:hidden; display: flex; align-items: center; margin-top:50px;
  }
  .hero_section button{
    background: var(--color-white);
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    color: var(--color-purple);
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    -webkit-animation: bounce-top 5s infinite both;
    animation: bounce-top 5s infinite both;
  }

  @keyframes bounce-top {
    0% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-24px);
              transform: translateY(-24px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(-12px);
              transform: translateY(-12px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    82% {
      -webkit-transform: translateY(-6px);
              transform: translateY(-6px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    93% {
      -webkit-transform: translateY(-4px);
              transform: translateY(-4px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  .contact_add_mail_div{
    height: 200px;
  }
  /* about section */
  .about_bg{
    background-image:url(../img/about_bg.webp); 
    padding-top: 100px; 
    background-size: cover; 
    background-position: center;
  }
  .About_section_Col6{
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 50px;
    padding-right: 50px;
    min-height: 350px;
  }
  .about_first_img{
    width: 50%;
    margin-left: 280px;
  }
  .About_section_Col6 img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 440px;
    margin-top: 115px;
}
.About_section_Col6 img:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
/* pooja section card */
.pooja {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
  }
  
  .pooja-profile-img {
    width:100%;
  }
  
  .pooja-description-bk {
    background-image:linear-gradient(45deg,var(--color-half-white) , var(--color-pink));
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
  }
  
  .pooja-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: var(--color-white);
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
  }
  
  .pooja-logo img {
    height: 100%;
  }
  
  .pooja-description {
    position: absolute;
    color: var(--color-white);
    font-weight: 500;
    left: 130px;
    bottom: 15%;
}
  .pooja-description p{
  font-size: 12px;
}
  
  .pooja-btn {
    position: absolute;
    color: var(--color-white);
    right: 30px;
    bottom: 5%;
    padding: 10px 20px;
    border: 1px solid var(--color-white);
  }
  
  .pooja-btn a {
    color: var(--color-white);
  }
  
  /* mandir section */
  .mandir_section h5{
    color: var(--color-purple);
  }
/* pandit ji description */
.pandit_des_section{
    background: #febab014;
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0;
}
.panditji_desc img{
    height: 230px;    
    border: 7px solid #feb5a0;
}
.panditji_desc_img_div{
    background: #fff;
    padding-bottom: 10px;
    width: fit-content;
}

/* contact section */
.Contact_section img{
  margin-top: -90px;
  }
  .Contact_section_inner{
    padding: 30px 20px 30px 40px;
    background: var(--color-purple);
    margin-top: 50px;
    color: var(--color-white);
    height: 150px;
    /* display: flex;
    align-items: center; */
  }
  .Contact_section_inner p{
    margin-right: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  .Contact_section_inner h4{
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
  }
  .form-control:focus {
    box-shadow: none !important;
  }
  /* footer */
  .footer_section{
    background: #fffaf9;
    padding-top: 50px;
  }
  .panditji_desc_img_div img{
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
  .footer_social_icn svg{
    /* background: var(--color-purple); */
    color: var(--color-purple);
    padding: 10px;
    border-radius: 5px;
    border:2px solid var(--color-purple);
    /* box-shadow: 5px 5px 5px var(--color-purple); */
    font-size: 18px;
    margin-right: 5px;
    margin-top:15px;
  }
  .footer_section h4{
    color: var(--color-purple);
  }
  .footer_bottom_section{
    background: var(--color-purple);
    color: var(--color-white);
    padding: 5px 60px;
  }
.footer_logo img{
  width: 120px;
    margin-bottom: 25px;
}
.jyotish_meditation_card{
  width: calc(100% + 100px); 
  background: #fff; 
  left: -50px; 
  position: relative;
}
.mobile_menu_logo{
  display: none;
}
.footer_button{
  margin: 0;
  padding: 5px 15px; 
  background: var(--color-purple);
  color: #fff;
  border-radius: 3px;
}
.contact_section input{
  width: 100%;
  padding: 10px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  margin-bottom: 10px;
}
.visit_para_h{
  height: 170px;
}
.footer_link_row a{
  color: #41464b;
  text-decoration: none;
}
.home_hero_img_h{
  min-height: 400px;
}
  /* .........................................pooja detail......................... */
  .service_main_section{
    background-image:url(../../assets/img/mandir.webp); 
    height: 400px; 
    background-position: center;
    background-attachment: fixed;
  }
  .Service_hero_section_inner{
    background:var(--service-gredient);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: var(--color-white);
  }
  .Pooja_dec_section .card{
    width: 600px;
    z-index: 1;
    position: absolute;
    right: 100px;
    top: 50px;
    padding: 20px 30px;
  }
  .pt-100{
    padding-top:100px;
  }
  @media (min-width:767px) {
    .p-md-100{
      padding:100px;
    }
  }
  @media (max-width:767px) {
    .Contact_section_inner {
      padding: 0;
      background: var(--color-purple);
      margin-top: 50px;
      color: var(--color-white);
      height: auto;
      text-align: center;
    }
    .Contact_section img {
      margin-top: 0px;
    }
    .Contact_section_inner h4, .Contact_section_inner p {
      margin-right: 0px;
    }
    .Home_FS_Detail {
      padding-top: 66px;
      height: 459px;
      padding-left: 15px;
      padding-right: 20px;
      width: 100vw;
    }
    .Hero_img_div img {
      height: 250px !important;
    }
  }
  @media (max-width:1170px) {
    .jaap_section{
      height: 300px;
    }
  }
  @media (max-width:1100px) {
    .navbar a {
      font-size: 16px;
    }
    .jaap_section{
      height: 350px;
    }
  }
  @media (max-width:992px) {
    .jaap_section{
      height: 250px;
    }
  }
@media (max-width:512px) {
  .p-md-100{
    padding:20px;
  }
    .Hero_img_div img {
    height: 250px !important;
  }
  .Home_FS_Detail {
    padding-top: 66px;
    height: 459px;
    padding-left: 15px;
    padding-right: 20px;
    width: 100vw;
  }
  .hindi_logo{
    width:130px !important;
  }
  .logo img {
    width: 190px;
  }
  .hero_section .hero_item1 img, .hero_section .hero_item2 .Hero_img_div {
    height: auto;
  }
  .hero_item1, .hero_item2 {
    width: 100vw;
    height: 680px;
  }
  h1{
    font-size: 35px;   
  }
    h2{
  font-size: 25px;
    }
    
  .Section_MT_P {
    padding-left: 10px;
    padding-right: 10px;
  }
  .jyotish_meditation_card{
    width: 100%; 
    left: 0px; 
  }
  .panditji_desc_img_div {
    background: transparent;
    padding-bottom: 10px;
    width: auto;
    box-shadow: none !important;
  }
  .mobile_menu_logo{
    display: block;
    width: 200px !important;
    margin-bottom: 30px;
  }
  .panditji_desc img {
    height: auto;
    width: 100%;
  }
  .button{
    width: 100%;
  }
  .button input{
    font-size: 12px;
  }
}
