@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary: #F97316;
  --primary-light: #FFF3E8;
  --dark: #1F2937;
  --light: #6B7280;
  --bg-light: #FAFAFA;
}

body {
  font-family: "Montserrat", sans-serif !important;
  background: #ffffff;
  color: var(--dark);
}
.section-padding {
  padding: 100px 0;
}
/******** HERO ********/
.hero-wrapper {
  padding: 20px 0;

}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
}

.hero-sub {
  font-size: 18px;
  color: var(--light);
}

.hero-card {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.navbar-toggler {
    padding: 5px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #ffffff;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
/******** ICON BOX ********/
.icon-box {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,.07);
  text-align: center;
}

.icon-box i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

/******** CARDS ********/
.puja-card, .pandit-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.puja-card img, .pandit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/******** MOBILE FIX ********/
@media (max-width: 768px) {
  .hero-wrapper { text-align: center; padding: 40px 0; }
  .hero-title { font-size: 28px; }
  .hero-card { margin-top: 20px; }
  .icon-box { margin-bottom: 20px; }
  .puja-card img, .pandit-card img { height: 180px; }
}

ul.navbar-nav {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Remove skip links and debug bullets */
.skip-link, ul.menu {
  display: none !important;
}

/* Navbar styling */
.navbar {
  padding: 15px 0;
  background: #fff !important;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px !important;
}

.navbar-nav .nav-link:hover {
  color: #ff7a00 !important;
}

header.navbar,
.navbar {
  background: #FF7A00 !important;
  padding: 14px 0 !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-brand img {
  filter: brightness(0) invert(1);
}

/* STICKY + BHAGWA HEADER */
header.navbar, .navbar {
    position: sticky;
    top: 0;
    padding: 10px 0 !important;
    z-index: 999;
    /* background: #FF7A00 !important; */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; */
}

/* WHITE MENU TEXT */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 24px !important;
     transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
   transform: scale(1.1);
    color: #ffffff;
}


/* WHITE LOGO LOOK */
.navbar-brand img {
  filter: brightness(0) invert(1);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.puja-card img {
  height: 220px;
  object-fit: cover;
}
.testimonial-item{
    padding: 10px;
}


.testimonial-card {
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.btn-primary {
  background: #FF7A00 !important;
  border-color: #FF7A00 !important;
}


/* HERO BETTER LOOK */
.hero-wrapper {
  background: linear-gradient(90deg, #fff 60%, #faf7f2 100%);
  min-height: 460px;
}

/* Title Premium Look */
.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #1e1f24;
}

/* Subtitle tone */
.hero-sub {
  font-size: 1.25rem;
  color: #4b4d55;
}

/* CTA Button Matching Theme */
.hero-btn {
  background: #FF7A00 !important;
  border: none !important;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s;
}
.hero-btn:hover {
  background: #ff6700 !important;
}

/* Right side image glow */
/* .hero-img-wrap {
  padding: 15px;
  border-radius: 22px;
  background: #ffffff;
}

.hero-img {
  max-width: 360px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-wrapper {
    text-align: center;
  }
  .hero-img {
    max-width: 260px;
  }
} */


/* HERO MAIN */
.hero-section {
   position: relative;
    background-position: center !important;
    background-size: cover !important;
    padding: 100px 0 !important;
  overflow: hidden;
  z-index:1;
}
.mobile-view-image{
position: relative;
   background-position: center !important;
    background-size: cover !important;
}


.hero-section::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
90deg, #00000094, transparent);
    z-index: -1;
    backdrop-filter: blur(1px);
}
.mobile-view-image{
  display:none !important;
}
.mobile-view-image::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
178deg, #000000c7, #000000c2);
    z-index: -1;
    backdrop-filter: blur(0);
}
@media (max-width:767px){
  .hero-section{
    display: none !important;
  }
  .mobile-view-image{
    display:block !important;
  }
  
}
.hero-title { font-size: 3rem; line-height: 1.2; color: #ffffff; }
.hero-desc { color: #ffffff; font-size: 1.1rem; }

/* BUTTON STYLE */
.hero-cta-btn {
  background: #FF7A00;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 8px;
}
.hero-cta-btn:hover { background: #e66400; }

/* HERO IMAGE */
/* .hero-main-img {
  width: 100%;
  max-width: 430px;
} */

/* FLOATING FORM CARD */
/* .hero-form-card {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 12px;
    display: block !important;

    width: 380px;
    text-align: start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
} */
.hero-form-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

/* Form CTA */
.book-btn {
  background: #FF7A00 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
}

/* shadow smooth */
/* .hero-main-img, .hero-form-card {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-form-card {
    position: static;
    margin-top: 20px;
    width: 100%;
    transform: none;
  }
  .hero-title { font-size: 2.2rem; }
}

.card {
  border-radius: 16px;
}
.card img {
  object-fit: cover;
}

.feature-box {
  transition: 0.3s ease-in-out;
}
.feature-box:hover {
  transform: translateY(-5px);
}

/* Testimonial Slider Fix */
.mySwiper {
  max-width: 900px;
  margin: auto;
}

.mySwiper .swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
}

.card {
  border-radius: 20px;
}

.t-img img, 
.card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Center Alignment */
.card .d-flex {
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
  top: 50%;
}

.swiper-pagination-bullet-active {
  background: #ff6600 !important;
}

.slick-prev:before,
.slick-next:before {
  color: #ff8c00;
  font-size: 30px;
}

/* Make arrows appear mid-height */
.swiper-button-prev,
.swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    color: #007bff; /* Blue */
    z-index: 20;
}

/* Move arrows to left & right edges */
.swiper-button-prev {
    left: -30px; /* adjust based on container */
}

.swiper-button-next {
    right: -30px; /* adjust based on container */
}

/* Smaller screens: arrows closer to slides */
@media (max-width: 768px) {
    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }
}

/* Hide arrows on mobile < 768px */
@media (max-width: 767px) {
  .featured-next,
  .featured-prev {
    display: none !important;
  }
}

/* Dots center aligned */
.featured-pagination {
  text-align: center;
  margin-top: 10px;
}

/* Hide arrows on mobile < 768px */
@media (max-width: 767px) {
  .featured-next,
  .featured-prev {
    display: none !important;
  }
}

/* Dots center aligned */
.featured-pagination {
  text-align: center;
  margin-top: 10px;
}

/*Services Page*/

.path-puja-services .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* .path-puja-services .card {
    min-height: 400px;
    width: 274px;
    overflow: hidden;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    margin-top: 40px;
    cursor: pointer;
} */

.path-puja-services .row a {
    text-decoration: none !important;
}

.path-puja-services .card {
    position: relative;
     overflow: hidden;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.path-puja-services .card .card-img {
    height: 322px;
    -o-object-fit: cover;
    object-fit: cover;
}
.path-puja-services .card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.path-puja-services .card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.path-puja-services .card .bg-red {
    background-color: #FF7A00 ;
    position: absolute;
    width: 600px;
    height: 132px;
    bottom: -35px;
    left: -62px;
    -webkit-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
}
/* .feature-puja-card {
    border-radius: 15px !important;
    margin: 15px auto;
    min-height: fit-content !important;
} */
/* .path-puja-services .card .title {
    position: relative;
    color: white;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0;
} */
#views-exposed-form-featured-pujas-page-1 .form-actions{
   margin-bottom: 2rem !important;
}
/* 
#views-exposed-form-featured-pujas-page-1 .mb-3 {
    padding: 10px;
} */

@media (max-width: 767px) {
  #views-exposed-form-featured-pujas-page-1 .form-actions{
   width:58%;
  }
}



/*Puja Details Page*/
li.breadcrumb-item a {
    text-decoration: none;
    color: black;
}
.feature-puja-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: end;
}
.feature-puja-card{
  border-radius: 15px !important;
  margin: 15px auto;
}
/* .feature-puja-card .card-body{

} */
.puja-details .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.puja-details .col-md-8 {
   text-align: left;
}

.puja-details .puja-image {
    height: 380px;
    max-width: 333px;
    width: 100%;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
}



.puja-details .image-center {
    display: block;
    margin: 0 auto;
}

/*About us*/


  .page-node-19 .hg-about-section {
    background: linear-gradient(135deg, #f6d365, #fda085);
    padding: 50px 20px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
  }
  .page-node-19 .hg-about-container {
    max-width: 1200px;
    margin: auto;
  }
  .page-node-19 .hg-about-card {
    background: rgba(255,255,255,0.75);
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  .page-node-19 .hg-about-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
  }
  .page-node-19 .hg-about-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin: 18px 0 10px;
  }
  .page-node-19 .hg-about-text {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: left;
  }
  /* 3-column features */
  .page-node-19 .hg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
  }
  .page-node-19 .hg-feature-box {
    flex: 1 1 30%;
    min-width: 250px;
    background: rgba(255,255,255,0.65);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
  }
  .page-node-19 .hg-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  }
  .page-node-19 .hg-feature-icon {
    font-size: 40px;
    color: #e67e22;
    margin-bottom: 12px;
  }
  .page-node-19 .hg-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  /* Values */
  .page-node-19 .hg-values-list li {
    margin-bottom: 10px;
    font-size: 17px;
    text-align: left;
  }

  /*Contact-us page*/

  .page-node-20 .hg-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .page-node-20 .hg-left, .hg-right {
    flex: 1 1 45%;
    min-width: 300px;
  }
  .page-node-20 .hg-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .page-node-20 .hg-title {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
  }
  .page-node-20 .hg-item {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .page-node-20 .hg-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 8px;
  }
/*Pandit Registration*/

 .inline-form-pandit-guest .js-form-item {
  display: flex;
  text-align: left;
}
  
.inline-form-pandit-guest label {
  width: 25%;
}


@media (max-width: 767px) {
  .inline-form-pandit-guest .js-form-item {
  display: block;
  text-align: center;
}
  
.inline-form-pandit-guest label {
  width: auto;
}
}

/* Revamp css */
/* header-section */
.text-gradient {
   color: #ff7a00;
}
span.divider {
    color: white;
}
header#header {
    background: #ff7a00;
}
div#page-wrapper {
    overflow: hidden;
}


nav.links.nav.links-inline.container {
    display: flex;
    align-items: center;
}

a.language-link.is-active {
    color: white;
    font-weight: 600;
    text-decoration: none;
}
a.language-link {
  
    color: rgb(255, 255, 255);
    text-decoration: none !important;
   
}


/* form css */

.form-control {
    padding: 10px;
    font-size: 1rem;
    margin: 20px 0;
    margin-bottom: 0 !important;
}
/* why-choose */
.whychoose-section{
    position: relative;
    padding: 100px 0 !important;
    overflow: hidden;
    z-index: 1;
}
img.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    margin: auto;
    z-index: -11;
    opacity: 0.1;
}
.feature-box h6 {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}
.feature-box h6::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 3px;
    background: #ff7a00;
    left: 0;
    bottom: -8px;
    right: 0;
    margin: auto;
    border-radius: 15px;
}

/* client testimonials */
.testimonials-section{
  position: relative;
    padding: 100px 0 !important;
    overflow: hidden;
    z-index: 1;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #ff7a00 !important;
    font-size: 10px;
   
}
.featuredSwiper {
    padding: 20px 5px !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,3px) !important;
    right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,2px) !important;
    left: auto;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 16px !important;
    background: #fd9a3f;
    padding: 10px;
    color: white;
    border-radius: 5px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
     font-size: 16px !important;
    background: #fd9a3f;
    padding: 10px;
    color: white;
    border-radius: 5px;
}

/* puja type slider */
.puja-img-slider {
    height: 100%;
}
.puja-img-slider img {
    width: 100px;
    height: 100px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,-5px) !important;
   
}
.puja-img-slider a {
    display: inline-block;
    color: #fd9a3f !important;
}

/* pandit ji section */
.verfied-pandit-section {
    position: relative;
    padding: 100px 0 !important;
    overflow: hidden;
    z-index: 1;
}
span.verified-tag.badge.small {
    color: #ffffff;
    background: #5bb45c;
    display: inline-block;
    width: fit-content;
    margin: auto;
}
.verified-btn {
    display: inline-block;
    font-size: 14px;
    color: #fd9a3f !important;
}


/* test */

.hero-form-card {
    position: relative;
    background: #5858584f;
    border-radius: 12px;
    transform: translateY(0);
    display: block !important;
    text-align: start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 500px;
    right: 0;
    margin: auto;
    backdrop-filter: blur(5px);
    border: 3px solid #ffffff33;
    margin-top: 40px;
}
.hero-content {
    padding: 50px;
}
.hero-image {
  flex: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-color{
  color:var(--primary);
}

/* footer section */
.footer-section {
    padding: 50px 0;
    background: var(--primary);
}
.quick-heading {
    color: white;
    display: inline-block;
    position: relative;
    padding: 0;
}
.quick-heading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 20%;
    background: #ffffff;
    left: 5px;
    bottom: -8px;
    border-radius: 15px;
}
.footer-links li a {
    color: #ffffff !important;
    display: inline-block;
    margin: 5px 0;
}



/* puja service */

.feature-puja-img img {
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
}
.feature-puja-img {
    text-align: center !important;
}
.feature-puja-body {
    background: #ff7a00 !important;
    padding: 15px;
}
.feature-puja-body .title {
    color: white;
    margin: 0;
}
div#block-healing-barrio-views-block-featured-pujas-block-2 {
    padding: 50px 0;
}
.more-detail-puja{
  height: 100%;
}
.more-detail-puja .t-img img, .card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.more-detail-puja a {
    color: #ff7a00 !important;
}

/* puja details page */

.puja-details-wrapper {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -10px grey;
}
.puja-detail-head h1 {
    font-size: 35px;
    color: #ff7a00;
    margin-bottom: 15px;
}
a.read-more-btn {
    font-size: 15px;
    text-decoration: none;
    color: #ff7a00;
    font-weight: 600;
}
.puja-book-form {
    padding: 30px;
    margin: 16px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -10px grey;
}
.social-icons a {
    display: inline-block;
    padding: 5px;
    color: #ff7a00;
}
.tab-content {
    text-align: start;
}
div#puja-tabs {
    background: white;
    padding: 30px;
    border-radius: 15px;
}
/* puja details page end */
/* responsive */
@media (max-width:991px){
.feature-puja-form {
    display: flex;
  
    justify-content: left;
}
.navbar-nav .nav-link {
    
    padding: 8px 10px !important;
   
}
.path-puja-services .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}
}
@media (max-width: 576px) {
  .banner-content {
    padding: 0 25px;
}
.feature-puja-form {
    gap: 5px;
}
}
@media (max-width:420px){
  .banner-content {
    padding: 0px 12px;
}
}