:root {
  --maroon: #450102;
  --dark-maroon: #2d0101;
  --gold: #f7b32a;
  --cream: #fffbf0;
  --light-cream: #fff9ed;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.brand-text {
  font-family: "Tiro Devanagari Hindi", serif;
}

/* Utility Classes */
.bg-maroon {
  background-color: var(--maroon) !important;
}
.bg-gold {
  background-color: var(--gold) !important;
}
.bg-cream {
  background-color: var(--cream) !important;
}
.text-maroon {
  color: var(--maroon) !important;
}
.text-gold {
  color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
  background: var(--gold) !important;
  color: var(--maroon) !important;
  font-weight: 600 !important;
  border: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-gold:hover {
  background: #e5a520 !important;
  color: var(--maroon)!important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(247, 179, 42, 0.4);
}
.btn-maroon {
  background: var(--maroon);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-maroon:hover {
  background: var(--dark-maroon);
  color: #fff;
  transform: translateY(-2px);
}

/* All Bootstrap buttons with icons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Outline buttons */
.btn-outline-light,
.btn-outline-dark,
.btn-outline-primary,
.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Links with icons */
a i,
button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Top Bar */
.top-bar {
  font-size: 13px;
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar a:hover {
  color: var(--gold) !important;
}

/* Navbar */
.navbar {
  padding: 10px 0;
}
.navbar .nav-link {
  font-weight: 500;
  padding: 8px 15px !important;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px;
}
.dropdown-item {
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-item:hover {
  background: var(--cream);
  color: var(--maroon);
}

/* Hero Section - MAROON BACKGROUND */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--maroon) 0%,
    var(--dark-maroon) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-section::before {
  content: "ॐ";
  position: absolute;
  font-size: 400px;
  opacity: 0.03;
  color: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Booking Form */
.booking-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border-top: 5px solid var(--gold);
  position: relative;
  z-index: 10;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(247, 179, 42, 0.15);
  outline: none;
}

/* Stats Box */
.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(247, 179, 42, 0.2);
  transition: all 0.3s;
}
.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Badge with icons */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Marquee with icons */
marquee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Any element with Boxicons */
.bx,
.bxs,
[class*="bx-"],
[class*="bxs-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(69, 1, 2, 0.15);
}

/* Feature Icon */
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, #e5a520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 30px rgba(247, 179, 42, 0.3);
}

/* Puja Cards */
.puja-card {
  background: linear-gradient(135deg, var(--maroon) 0%, #5a0203 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}
.puja-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(69, 1, 2, 0.3);
}

/* Puja Service Cards (New Card Based Design) */
.puja-service-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
}
.puja-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(69, 1, 2, 0.2);
}
.puja-service-card img {
  transition: all 0.4s ease;
}
.puja-service-card:hover img {
  transform: scale(1.05);
}

/* Section Title */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  border-radius: 2px;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Testimonial Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 50px;
  opacity: 1;
  z-index: 10;
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-color: rgba(69, 1, 2, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 179, 42, 0.3);
  border-radius: 50%;
  padding: 15px;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#testimonialCarousel .carousel-control-prev-icon:hover,
#testimonialCarousel .carousel-control-next-icon:hover {
  background-color: rgba(69, 1, 2, 0.6);
  border-color: rgba(247, 179, 42, 0.6);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    width: 45px;
  }
  #testimonialCarousel .carousel-control-prev-icon,
  #testimonialCarousel .carousel-control-next-icon {
    padding: 12px;
    width: 40px;
    height: 40px;
    background-color: rgba(69, 1, 2, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* FAQ Accordion */
.faq-card .accordion-button {
  background: #fff;
  color: var(--maroon);
  font-weight: 600;
  border-radius: 12px !important;
  padding: 18px 20px;
  font-size: 15px;
}
.faq-card .accordion-button:not(.collapsed) {
  background: var(--maroon);
  color: #fff;
  box-shadow: none;
}
.faq-card .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-card .accordion-button::after {
  filter: brightness(0) saturate(100%);
}
.faq-card .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* Blog Card */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(69, 1, 2, 0.2);
}

/* Gallery */
.gallery-img {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s;
}
.gallery-img:hover {
  transform: scale(1.05);
}
.gallery-img img {
  transition: all 0.4s;
}
.gallery-img:hover img {
  transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* Google Translate Fix */
#google_translate_element {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
#google_translate_element select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  line-height: 1.2;
  height: auto;
}
/* Fix dropdown options visibility */
#google_translate_element select option {
  background: #fff;
  color: #333;
  padding: 5px 10px;
  font-size: 12px;
}
#google_translate_element select option:hover,
#google_translate_element select option:focus,
#google_translate_element select option:checked {
  background: var(--maroon);
  color: #fff;
}
.goog-te-gadget {
  color: transparent !important;
  line-height: 1 !important;
  font-size: 0 !important;
  height: auto !important;
}
.goog-te-gadget span {
  display: none !important;
}
.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
  vertical-align: middle;
}
/* Fix for .goog-te-combo dropdown options */
.goog-te-combo option {
  background: #fff !important;
  color: #333 !important;
  padding: 5px !important;
}
.goog-te-combo option:hover,
.goog-te-combo option:checked {
  background: var(--maroon) !important;
  color: #fff !important;
}
/* Hide Google Translate banner and branding */
.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}
body {
  top: 0 !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.container .top-bar-container {
  padding: 0 !important;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  .navbar .nav-link {
    padding: 12px 15px !important;
    border-bottom: 1px solid #eee;
  }
  .navbar .dropdown-menu {
    box-shadow: none;
    border: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 11px;
    padding: 5px 0 !important;
  }
  .top-bar .row {
    row-gap: 0 !important;
  }
  .top-bar a {
    font-size: 11px;
    line-height: 1.2;
  }
  .top-bar a i {
    font-size: 14px;
  }
  .top-bar marquee {
    font-size: 10px;
    line-height: 1.3;
  }
  .top-bar .col-12 {
    padding: 4px 12px;
  }
  #google_translate_element select {
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1.2;
    height: 24px;
  }
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }
  .hero-section::before {
    font-size: 200px;
  }
  .hero-section h1 {
    font-size: 2rem !important;
  }
  .hero-section .lead {
    font-size: 0.95rem !important;
  }
  .booking-form {
    margin-top: 30px;
  }
  .stat-box {
    padding: 12px 8px;
  }
  .stat-box h5 {
    font-size: 0.9rem;
  }
  .stat-box small {
    font-size: 0.7rem;
  }
  .stat-box img {
    height: 35px !important;
  }
  .section-title,
  .display-6 {
    font-size: 1.5rem !important;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .feature-icon img {
    height: 30px !important;
  }
  .service-card h5,
  .service-card h6 {
    font-size: 0.9rem;
  }
  .service-card p {
    font-size: 0.8rem;
  }
  .puja-card .col-lg-4 img {
    min-height: 200px !important;
  }
  .puja-card h3 {
    font-size: 1.2rem;
  }
  .puja-card p {
    font-size: 0.85rem;
  }
  .testimonial-card {
    padding: 20px 15px;
  }
  .testimonial-card h5 {
    font-size: 1rem;
  }
  .testimonial-card p {
    font-size: 0.85rem;
  }
  .blog-card h5 {
    font-size: 1rem;
  }
  .blog-card p {
    font-size: 0.8rem;
  }
  footer {
    text-align: center;
  }
  footer .col-lg-3 {
    margin-bottom: 30px;
  }
  footer .d-flex.gap-3 {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 11px;
    padding: 0 !important;
  }
  .top-bar .row {
    gap: 0;
    row-gap: 0 !important;
    margin: 0;
  }
  .top-bar .col-12 {
    padding: 3px 10px;
  }
  .top-bar .btn-sm {
    padding: 3px 8px;
    font-size: 11px;
  }
  .top-bar a {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
  }
  .top-bar a i {
    font-size: 14px;
  }
  .top-bar marquee {
    font-size: 10px;
    line-height: 1.3;
  }
  .top-bar .d-flex.gap-2 {
    justify-content: center !important;
    gap: 0.25rem !important;
  }
  #google_translate_element {
    font-size: 10px;
    line-height: 1;
  }
  #google_translate_element select {
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 12px;
    line-height: 1.1;
    height: 22px;
  }
  .goog-te-gadget {
    line-height: 1 !important;
  }
  .navbar-brand img {
    height: 45px !important;
  }
  .hero-section h1 {
    font-size: 1.6rem !important;
  }
  .hero-section .badge {
    font-size: 0.7rem;
  }
  .btn-lg {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .booking-form {
    padding: 20px !important;
  }
  .booking-form h3 {
    font-size: 1.2rem;
  }
  .stat-box {
    padding: 10px 5px;
  }
  .stat-box img {
    height: 30px !important;
  }
  .stat-box h5 {
    font-size: 0.75rem;
  }
  .stat-box small {
    font-size: 0.7rem;
  }
  .puja-card .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-btn img {
    width: 28px !important;
  }

  .container {
    padding: 0 20px !important;
  }
}

.call-section {
  background: url("img/Section\ \(2\).png") no-repeat center center/cover;
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.call-button {
  background-color: white;
  color: #900;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}
.call-button:hover {
  background-color: #f5f5f5;
  color: #700;
}

.faq-section {
  background: url("img/Section\ \(3\).png") repeat;
  background-size: cover;
  padding: 50px 20px;
}
.faq-title {
  font-size: 1rem;
  color: #ffe200;
  text-align: center;
  font-weight: bold;
}
.faq-card {
  border: 1px solid #ffe200;
  border-radius: 5px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #e6d66e;
  margin-bottom: 15px;
}
.faq-header {
  font-size: 1rem;
  font-weight: 500;
  color: #7a000f;
  cursor: pointer;
  background-color: #ecd64b;
}
.faq-body {
  font-size: 16px;
  color: #555555;
  padding-top: 10px;
}
