:root {
  --primary: #F97316;
  --primary-light: #FFF3E8;
  --dark: #1F2937;
  --light: #6B7280;
  --bg-light: #FAFAFA;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--dark);
}

/******** HERO ********/
.hero-wrapper {
  padding: 80px 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);
}

/******** 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;
}

.hero-img {
  max-width: 400px;
}

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: #ffe0c2 !important;
}

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

/* STICKY + BHAGWA HEADER */
header.navbar,
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #FF7A00 !important;
  padding: 14px 0 !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: 18px;
  font-weight: 600;
  padding: 8px 14px !important;
}

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

/* 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-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;
}

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


/* HERO MAIN */
.hero-section { background: #ffffff; }
.hero-title { font-size: 3rem; line-height: 1.2; color: #13151A; }
.hero-desc { color: #555; 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;
  width: 300px;
}

/* 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;
    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);
}

.path-puja-services .card .title {
    font-size: 18px;
    font-family: "Alegreya", Arial;
    line-height: normal;
    position: relative;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 1.16667px;
    color: white;
    font-family: "Alegreya", Arial;
    text-align: center;
    font-weight: 500;
    max-width: 223px;
    margin-bottom: 6px;
}

#views-exposed-form-featured-pujas-page-1 .form-actions{
   margin-bottom: 2rem !important;
}

#views-exposed-form-featured-pujas-page-1 .mb-3 {
    padding: 0px 5px 0 0;
}

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



/*Puja Details Page*/

.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;
}
}