body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== HEADER STYLES ===== */
.header-mobile,
.header-desktop {
  background-color: #000;
  /* Dark header */
  position: relative;
  z-index: 10;
}

.logo {
  height: 50px;
}

.menu-btn {
  cursor: pointer;
}

/* Desktop nav links */
.header-desktop .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.header-desktop .nav-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: #c72b52;
  /* Madhura's primary */
  border: none;
}

.btn-primary:hover {
  background-color: #a02141;
}

/* ===== HERO SECTION ===== */
.hero-banner {
  position: relative;
  height: calc(100vh - 70px);
  /* subtract header height */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  background-image: url('../img/banner.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 
.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
} */

.hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-side-img {
  max-width: 80%;
  border-radius: 10px;
}

.mobile-banner {
  display: none;
}

.desktop-banner {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-banner {
    text-align: center;
    padding: 4rem 1rem;
    height: auto;
  }

  .hero-side-img {
    display: none;
  }

  .hero-bg {
    background-image: url('../img/banner1.jpg');
    /* Replace with Madhura background */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: unset;
  }

  .mobile-banner {
    display: block;
  }

  .desktop-banner {
    display: none;
  }
}

/* Mobile menu hidden by default */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.mobile-nav a {
  text-decoration: none;
}

.mobile-nav.show {
  display: block !important;
}

/* ===== "Why Choose Madhura" Section ===== */
.why-madhura {
  background-color: #f9f6f2;
  /* soft, elegant light background */
}

.why-madhura h2 {
  font-weight: 600;
  font-size: 2rem;
}

.why-madhura .text-highlight {
  color: #c72b52;
  /* Madhura’s red accent */
}

.why-madhura p.lead {
  color: #555;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  filter: invert(20%) sepia(100%) saturate(500%) hue-rotate(345deg);
  /* apply color tint */
}

.feature-item h5 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .why-madhura h2 {
    font-size: 1.75rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-item h5 {
    font-size: 1.1rem;
  }
}

.madhura-section {
  background: linear-gradient(135deg, #8e0c99, #eecae8);
  color: #f5f5f5;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.madhura-section .intro-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.madhura-section .highlight-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  color: #f6d365;
  /* Soft gold highlight */
}

@media (min-width: 768px) {
  .madhura-section .intro-text {
    font-size: 20px;
  }

  .madhura-section .highlight-text {
    font-size: 28px;
  }
}

.madhura-carousel {
  background: linear-gradient(135deg, #f4cff7, #b6199e);
  padding: 40px 20px;
  text-align: center;
  color: #f6d365;
}

.carousel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Introduction Section Styles */
.intro-section {
  background-color: #fff7f3;
  padding: 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text h2 {
  color: #a52a2a;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.intro-highlight {
  color: #a52a2a;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 26px;
  }
}

/* Video Section */
.video-section {
  background-color: #fff7f3;
  padding: 0px 20px;
  text-align: center;
}

.video-container {
  max-width: 900px;
  margin: auto;
}

.video-container h2 {
  font-size: 32px;
  color: #a52a2a;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.madhura-form-section {
  display: flex;
  flex-wrap: wrap;
  background: #b30000;
  /* Dark Red */
  border-radius: 12px;
  overflow: hidden;
}

.form-container {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
}

.form-container h2 {
  margin-bottom: 5px;
  color: #b30000;
}

.form-container p {
  margin-bottom: 20px;
  color: #444;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #b30000;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background: transparent;
}

.submit-btn {
  background: #b30000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #8a0000;
}

.form-image {
  flex: 1;
  min-height: 400px;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .madhura-form-section {
    flex-direction: column;
  }

  .form-image {
    order: -1;
  }
}

.celebration-section {
  background: #fff8f0;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.celebration-section h2 {
  text-align: center;
  color: #b30000;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.celebration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.celebration-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebration-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.celebration-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #b0413e;
}

.celebration-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.celebration-item p {
  color: #555;
  font-size: 0.95rem;
}

/* .events-section {
    padding: 0px 20px;
    background: #fff7f3;
    text-align: center;
}

.events-grid {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    margin-bottom:20px;
    background: white;
    border: 2px solid #f5d0cc;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, background 0.2s ease;
}

.event-item {
    text-align: center;
    width: 100%;
    max-width: 600px; 
    text-align: left;
}

.event-item:hover {
    background: #ffe9e4;
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .event-item span {
        padding-left: 15px;
        display: inline-block;
    }
}

.event-item {
    display: flex;
    align-items: center; 
    gap: 10px; 
}

.event-item span {
    display: inline-block;
    padding-left: 0; 
}

@media (max-width: 768px) {
    .event-item {
        gap: 8px; 
    }
} */
.events-section {
  padding: 0px 20px;
  background: #fff7f3;
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.event-item {
  background: white;
  border: 2px solid #f5d0cc;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, background 0.2s ease;
  text-align: left;
}

.event-item:hover {
  background: #ffe9e4;
  transform: scale(1.03);
}

/* Make the last one full width */
.events-grid .event-item:last-child {
  grid-column: span 3;
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* text center */
}

/* On mobile - single column */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-grid .event-item:last-child {
    grid-column: span 1;
    /* normal on mobile */
  }

  .event-item {
    font-size: 1rem;
    gap: 8px;
  }

  .events-grid .event-item:last-child {
    text-align: left;
  }
}




.section-note {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.gallery-section {
  padding: 60px 20px;
  background: #fff7f3;
  text-align: center;
}

.gallery-section .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #b0413e;
  /* elegant gold-brown */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.locations-section {
  padding: 0px 20px;
  background: #fff7f3;
  text-align: center;
}

.locations-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b0413e;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.location-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card h3 {
  color: #b0413e;
  margin-bottom: 10px;
}

.location-card p {
  margin: 8px 0;
  line-height: 1.6;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.lead-form-section {
  background: #fffaf5;
  padding: 60px 20px;
  text-align: center;
}

.lead-form-section .section-title {
  font-size: 2rem;
  color: #b0413e;
  margin-bottom: 10px;
}

.lead-form-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.lead-form {
  max-width: 600px;
  margin: 0 auto;
}

.lead-form .form-group {
  margin-bottom: 20px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #b0413e;
}

.btn-submit {
  background: #b0413e;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #fffaf5;
}

.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 80px;
  z-index: 5;
}

@media (max-width: 768px) {
  .hero-banner .logo {
    height: 60px;
    top: 0px;
    left: 15px;
  }

  .image-hide {
    display: none;
  }

  .form-container {
    padding: 0;

  }

  .whatsapp-float {
    display: none;
  }

  .phone-float {
    display: none;
  }
}

p {
  font-size: 18px !important;
}

.form-button {
  text-align: center;
  /* Centers the button */
  margin-top: 15px;
}

.submit-btn {
  background-color: #b0413e;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #922f2b;
}

.mobile-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
}

.mobile-contact-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.call-btn {
  background-color: #922f2b;
  /* Red */
}

.whatsapp-btn {
  background-color: #ffffff;
  color: #922f2b;
  /* Red text */
  border-left: 1px solid #ddd;
}

.whatsapp-btn i {
  color: #922f2b;
}

.mobile-contact-bar i {
  margin-right: 6px;
}

@media (min-width: 768px) {
  .mobile-contact-bar {
    display: none;
    /* Hide on desktop */
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 13px;
  right: 40px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.phone-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 40px;
  background-color: #922f2b;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fffaf5;
  max-width: 700px;
  width: 90%;
  padding: 0;
  margin: 80px auto;
  border-radius: 6px;
  position: relative;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  z-index: 1;
}

/* Flex Layout */
.popup-flex {
  display: flex;
  flex-wrap: wrap;
}

/* Image Section */
.popup-image {
  flex: 1;
  min-width: 250px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Section */
.popup-form-area {
  flex: 1;
  padding: 25px;
}

.form-title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #b0413e;
}

.form-title span {
  color: #b0413e;
  font-weight: bold;
}

.form-desc {
  font-size: 12px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

form label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}

form input,
form select {
  background-color: #fffaf5;
  width: 100%;
  padding: 6px 0;
  margin-top: 2px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 13px;
  outline: none;
}

.submit-btn {
  margin-top: 15px;
  width: 100%;
  background: #b0413e;
  color: white;
  border: none;
  padding: 6px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 3px;
}

.submit-btn:hover {
  background: #922e2a;
}

/* Mobile - Hide Image */
@media (max-width: 768px) {
  .popup-image {
    display: none;
  }
}