  body {
    font-family: 'Noto Sans Malayalam', 'Noto Sans Devanagari', 'Noto Sans Kannada', 'Poppins', 'Georgia', 'Times New Roman', serif;
  }

  /* ================= NAVBAR ================= */
  .madayi-navbar {
    background: linear-gradient(90deg, #6b0f0f, #8b1a1a);
    padding: 20px 0;
    border-bottom: 5px solid #d4a94f;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .madayi-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
  }

  .madayi-navbar .navbar-brand img {
    height: 42px;
  }

  .madayi-navbar .nav-link {
    color: #f5e6c8 !important;
    font-weight: 100;
    margin: 0 8px;
    position: relative;
    font-size: 15px;
    /* For Pseudo-element positioning */
  }

  .madayi-navbar .nav-link:hover,
  .madayi-navbar .nav-link.active {
    color: #ffd27d !important;
  }

  /* Yellow underline for active link */
  .madayi-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd27d;
  }

  .madayi-navbar .nav-link:hover {
    color: #ffd27d !important;
  }

  .book-pooja-btn {
    background: #d4a94f;
    color: #4a2a00;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
  }

  .book-pooja-btn:hover {
    background: #e6bd63;
    color: #4a2a00;
  }

  .madayi-navbar .navbar-toggler {
    border: 1px solid rgba(245, 230, 200, 0.45);
    padding: 0.45rem 0.7rem;
  }

  .madayi-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 169, 79, 0.3);
  }

  .madayi-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 230, 200, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .madayi-navbar .navbar-nav {
    align-items: center;
  }

  .madayi-navbar .dropdown-menu {
    min-width: 11rem;
  }

  /* Navbar responsive fixes for longer text in other languages */
  @media (max-width: 1200px) {
    .madayi-navbar .nav-link {
      margin: 0 3px;
      font-size: 14px;
      padding: 8px 6px;
    }

    .madayi-navbar .navbar-brand {
      font-size: 16px;
    }
  }

  @media (max-width: 991.98px) {
    .madayi-navbar {
      padding: 14px 0;
    }

    .madayi-navbar .container {
      align-items: flex-start;
    }

    .madayi-navbar .navbar-brand {
      max-width: calc(100% - 72px);
      font-size: 15px;
      line-height: 1.3;
      white-space: normal;
    }

    .madayi-navbar .navbar-collapse {
      width: 100%;
      margin-top: 14px;
      padding: 14px;
      background: rgba(58, 7, 7, 0.96);
      border: 1px solid rgba(212, 169, 79, 0.28);
      border-radius: 14px;
    }

    .madayi-navbar .navbar-nav {
      width: 100%;
      align-items: stretch;
      text-align: center;
    }

    .madayi-navbar .nav-item {
      width: 100%;
      margin-bottom: 4px;
    }

    .madayi-navbar .nav-link {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 0;
      padding: 10px 14px;
      font-size: 14px;
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
      max-width: none;
      border-radius: 10px;
    }

    .madayi-navbar .nav-link.active {
      background: rgba(212, 169, 79, 0.12);
    }

    .madayi-navbar .nav-link.active::after {
      display: none;
    }

    .madayi-navbar .dropdown-menu {
      position: static !important;
      width: 100%;
      margin-top: 8px;
      text-align: center;
      transform: none !important;
    }
  }

  @media (max-width: 576px) {
    .madayi-navbar .navbar-brand {
      font-size: 13px;
    }

    .book-pooja-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
  }

  /* ================= HERO ================= */
  .hero-section {
    position: relative;
    height: 90vh;
    /* Background removed for slider */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* Ensure images stay within */
  }

  /* Carousel styling */
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-carousel .carousel-item {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;

  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
  }

  .hero-title {
    font-family: 'Playfair Display', 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #f5d28b;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #f5e6c8;
  }

  .hero-btn {
    margin-top: 30px;
    background: #d4a94f;
    color: #4a2a00;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
  }

  .hero-btn:hover {
    background: #e6bd63;
    color: #4a2a00;
  }

  /* ================= FOOTER ================= */
  .madayi-footer {
    background: #2a0909;
    color: #f5e6c8;
    padding: 60px 0 20px;
  }

  .madayi-footer h5 {
    color: #d4a94f;
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 700;
  }

  .madayi-footer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .madayi-footer ul li {
    margin-bottom: 8px;
  }

  .madayi-footer a {
    color: #f5e6c8;
    text-decoration: none;
    font-size: 0.96rem;
  }

  .madayi-footer a:hover {
    color: #ffd27d;
    text-decoration: underline;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.88rem;
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 40px;
    }
  }



  /* ================= NOTICE TICKER STYLE ================= */

  .zxq-notice-area {
    background: linear-gradient(rgba(128, 0, 0, 0.945), rgba(128, 0, 0, 0.923)),
    url("{% static 'images/home/ajrak2.jpg' %}") repeat;
    background-size: 200px;
    border-top: 3px solid #d4a94f;
    border-bottom: 3px solid #d4a94f;
    overflow: hidden;
  }

  .kpl-flex-wrap {
    display: flex;
    align-items: center;
    padding: 1rem 0;
  }

  .mno-badge-box {
    background: #d4a94f;
    color: #4a2a00;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 3px solid #b8860b;
    z-index: 10;
  }

  .rty-scroll-mask {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  .vbn-scroll-track {
    display: flex;
    animation: qwe-slide-left 30s linear infinite;
    will-change: transform;
  }

  .vbn-scroll-track:hover {
    animation-play-state: paused;
  }

  .jkl-scroll-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 3rem;
    color: #f5e6c8;
    font-size: 1rem;
  }

  .jkl-scroll-item::before {
    content: "❖";
    color: #d4a94f;
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  .jkl-scroll-item strong {
    color: #d4a94f;
    margin-right: 0.5rem;
  }

  .jkl-scroll-item a {
    color: #f5e6c8;
    text-decoration: underline;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
  }

  .jkl-scroll-item a:hover {
    color: #ffd27d;
  }

  @keyframes qwe-slide-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* ================= MOBILE ================= */
  @media (max-width: 768px) {
    .kpl-flex-wrap {
      flex-direction: column;
      gap: 0.5rem;
    }

    .mno-badge-box {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    }
  }



  .-darshan-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
  }

  .kavu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .temple-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .kerala-title {
    font-size: 2.8rem;
    color: #8b4513;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    font-family: 'Noto Sans Malayalam', Georgia, serif;
    line-height: 1.2;
  }

  .kerala-title::before {
    content: '';
    margin-right: 12px;
    font-size: 1.8rem;
  }

  .minimal-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #f5e8c7, #d4a574);
    margin: 0 auto 1rem;
    border-radius: 2px;
  }

  .english-header {
    color: #6b4423;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    font-family: Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .darshan-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .darshan-time-card {
    background: #ffffff;
    border: 2px solid #f0e6d2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .darshan-time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.15);
    border-color: #d4a574;
  }

  .time-header {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .time-range {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins';
    display: block;
  }

  /* Minimal color-coded headers */
  .morning-bg {
    background: linear-gradient(90deg, #e6bd63, #8b1a1a);
  }

  .break-bg {
    background: linear-gradient(90deg, #6b0f0f, #8b1a1a);
  }

  .evening-bg {
    background: linear-gradient(90deg, #6b0f0f, #e6bd63);
  }

  .darshan-content {
    padding: 1.8rem 1.5rem;
  }

  .darshan-content h4 {
    font-size: 1.1rem;
    color: #8b4513;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-family: Georgia, serif;
  }

  .darshan-content p {
    color: #a67c52;
    font-size: 0.95rem;
    margin: 0;
    font-family: Georgia, serif;
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .darshan-row {
      gap: 1.5rem;
    }
  }

  @media (max-width: 900px) {
    .darshan-row {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
      gap: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .temple-darshan-section {
      padding: 60px 0;
    }

    .kavu-container {
      padding: 0 20px;
    }

    .kerala-title {
      font-size: 2.3rem;
    }
  }

  @media (max-width: 480px) {
    .kerala-title {
      font-size: 2rem;
    }

    .time-range {
      font-size: 1.3rem;
    }
  }



  .festival-section {
    background: radial-gradient(circle at top, #3a0f0f, #160606);
    padding: 90px 20px;
  }

  .container {
    max-width: 1400px;
    margin: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title {
    font-family: Arial, sans-serif;
    font-size: 42px;
    color: #e2b75c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }

  /* only style spans used for title lines, not text labels */
  .section-title span.title-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #e2b75c, transparent);
  }

  .section-subtitle {
    color: #f1e3c1;
    font-style: italic;
    margin-top: 10px;
  }

  /* Scroll container */
  .festival-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 30px 10px;
    cursor: grab;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .festival-scroll::-webkit-scrollbar {
    display: none;
  }

  .festival-scroll.dragging {
    cursor: grabbing;
  }

  /* Cards */
  .festival-card {
    min-width: 220px;
    background: linear-gradient(145deg, #fff7e6, #f3e1b6);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: all .35s ease;
  }

  .festival-card i {
    font-size: 30px;
    color: #7a120e;
    margin-bottom: 15px;
  }

  .festival-card h4 {
    font-size: 18px;
    color: #7a120e;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .festival-card p {
    font-size: 13px;
    color: #6b4a1d;
  }

  .festival-card:hover {
    transform: translateY(-12px) scale(1.07);
    box-shadow: 0 25px 55px rgba(226, 183, 92, .6);
  }

  /* Featured */
  .festival-card.featured {
    background: linear-gradient(145deg, #ffe2a6, #ffd27d);
  }

  .festival-card.major {
    border: 2px solid #d4a94f;
  }

  /* Hint */
  .scroll-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #f1e3c1;
    opacity: .8;
  }

  /* Mobile */
  @media(max-width:768px) {
    .festival-card {
      min-width: 180px;
    }

    .section-title {
      font-size: 34px;
    }
  }




  /* Temple Projects Section */
  .temple-projects {
    background: #ffffff;
    padding: 90px 0;
    position: relative;
  }

  .temple-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a94f, #ffd27d, #d4a94f);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-title {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #6b0f0f;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
  }

  .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #8b4513;
    margin-bottom: 60px;
    font-style: italic;
  }

  .title-line {
    display: inline-block;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a94f 30%, #ffd27d 70%, transparent);
    vertical-align: middle;
  }

  .title-line.left {
    margin-right: 25px;
  }

  .title-line.right {
    margin-left: 25px;
  }

  /* Projects Grid */
  .projects-wrapper {
    position: relative;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
  }

  .project-card {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .project-card.hidden {
    display: none;
  }

  /* Navigation Arrows */
  .projects-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  .project-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a94f, #ffd27d);
    color: #6b0f0f;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 169, 79, 0.3);
  }

  .project-nav-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffd27d, #d4a94f);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 169, 79, 0.5);
  }

  .project-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Project Cards */
  .project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(107, 15, 15, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 169, 79, 0.2);
  }

  .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .project-card:hover .card-image img {
    transform: scale(1.1);
  }

  .project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4a94f, #ffd27d);
    color: #6b0f0f;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 169, 79, 0.4);
  }

  .card-content {
    padding: 30px;
  }

  .card-content h3 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #6b0f0f;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
  }

  .card-content p {
    color: #8b4513;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .project-description {
    color: #746a63;
    font-size: 13px;
    line-height: 35px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
  }

  .project-description-list {
    list-style: disc inside;
    margin: 0 0 20px;
    padding-left: 1.2rem;
    color: #8b4513;
    line-height: 1.7;
  }

  .project-description-list li {
    margin-bottom: 0.5rem;
  }

  .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
  }

  .goal,
  .raised {
    font-size: 14px;
    font-weight: 600;
  }

  .goal {
    color: #6b0f0f;
  }

  .raised {
    color: #d4a94f;
  }

  .progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(212, 169, 79, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a94f, #ffd27d);
    border-radius: 4px;
    transition: width 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 169, 79, 0.4);
  }

  .project-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
  }

  .donate-btn {
    background: linear-gradient(135deg, #d67500 0%, #a55c34 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(214, 117, 0, 0.3);
  }

  .donate-btn:hover {
    background: linear-gradient(135deg, #e6801a 0%, #b5663d 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 117, 0, 0.4);
  }

  .contribute-btn {
    background: linear-gradient(135deg, #6b0f0f 0%, #8b1a1a 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(107, 15, 15, 0.3);
  }

  .contribute-btn:hover {
    background: linear-gradient(135deg, #8b1a1a 0%, #a52a2a 100%);
    transform: translateY(-2px);
  }

  .sponsor-btn {
    background: linear-gradient(135deg, #d4a94f 0%, #ffd27d 100%);
    color: #6b0f0f;
    box-shadow: 0 6px 20px rgba(212, 169, 79, 0.3);
  }

  .sponsor-btn:hover {
    background: linear-gradient(135deg, #ffd27d 0%, #d4a94f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 169, 79, 0.4);
  }

  /* CTA Section */
  .projects-cta {
    background: rgba(255, 252, 248, 0.9);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(107, 15, 15, 0.1);
    border-top: 4px solid #d4a94f;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-content i {
    font-size: 48px;
    color: #d4a94f;
    margin-bottom: 20px;
  }

  .cta-content h3 {
    font-family: Arial, sans-serif;
    font-size: 28px;
    color: #6b0f0f;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .cta-content p {
    font-size: 16px;
    color: #8b4513;
    line-height: 1.7;
    max-width: 600px;
  }

  .cta-button {
    background: linear-gradient(135deg, #6b0f0f 0%, #8b1a1a 100%);
    color: #f5e6c8;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 15, 15, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #8b1a1a 0%, #a52a2a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 15, 15, 0.4);
    color: #ffd27d;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .project-nav-btn {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }

    .projects-cta {
      padding: 40px 30px;
    }
  }

  @media (max-width: 768px) {
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .section-title {
      font-size: 34px;
    }

    .temple-projects {
      padding: 60px 0;
    }

    .card-content {
      padding: 25px;
    }

    .card-content h3 {
      font-size: 22px;
    }

    .projects-nav {
      gap: 20px;
    }

    .project-nav-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }

    .projects-cta {
      padding: 30px 20px;
    }

    .cta-content h3 {
      font-size: 24px;
    }
  }



  /* Two Columns Section */
  .two-columns {
    background: #ffffff;
    padding: 70px 80px;
  }

  .column-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .column {
    background: rgba(255, 252, 248, 0.95);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.1);
    display: flex;
    flex-direction: column;
  }

  .content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 450px;
  }

  .centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .column-title {
    font-size: 26px;
    color: #6b4423;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    font-family: Arial, sans-serif;
  }

  /* Calendar Styles */
  .calendar-wrapper {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .calendar-month {
    font-size: 17px;
    font-weight: 600;
    color: #5a3a1a;
    font-family: Arial, sans-serif;
  }

  .nav-arrow {
    background: linear-gradient(0deg, #d67500 0%, #a55c34 100%);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(165, 92, 52, 0.3);
  }

  .nav-arrow:hover {
    background: linear-gradient(0deg, #e6801a 0%, #b5663d 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(165, 92, 52, 0.4);
  }

  .calendar {
    width: 100%;
    border-collapse: separate;
    /* IMPORTANT */
    border-spacing: 6px;
    /* GAP BETWEEN CELLS */
  }

  .calendar th {
    padding: 12px 5px;
    font-size: 13px;
    color: #5a3a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .calendar td {
    padding: 12px;
    text-align: center;
    cursor: pointer;
    color: #5a3a1a;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 4px;
  }

  .calendar td:hover:not(:empty) {
    background: #f5e6d3;
    transform: scale(1.1);
  }

  .calendar td.active,
  .calendar td.highlighted {
    background: #a55c34;
    color: white;
    font-weight: 600;
    position: relative;
  }

  .calendar td.active::after {
    content: '●';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6px;
    color: #d4a94f;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .two-columns {
      padding: 50px 30px;
    }

    .column-container {
      gap: 30px;
    }

    .column-title {
      font-size: 24px;
    }
  }

  @media (max-width: 768px) {
    .column-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .two-columns {
      padding: 40px 20px;
    }

    .content-wrapper {
      min-height: auto;
    }

    .calendar th {
      padding: 10px 3px;
      font-size: 11px;
    }

    .calendar td {
      padding: 8px;
      font-size: 13px;
    }

    .column-title {
      font-size: 22px;
    }
  }

  @media (max-width: 576px) {
    .column {
      padding: 24px;
    }

    .calendar-wrapper,
    .pooja-wrapper {
      padding: 16px;
    }

    .calendar th {
      font-size: 10px;
      padding: 8px 2px;
    }

    .calendar td {
      padding: 6px;
      font-size: 12px;
    }
  }

  /* ================= TEMPLE RULES STYLE ================= */
  .rules-wrapper {
    background: white;
    padding: 0;
    border-radius: 8px;
  }

  .rules-subtitle {
    font-size: 15px;
    color: #7a5a3a;
    margin-bottom: 20px;
    font-style: italic;
  }

  .rules-items-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-left: 4px solid #d4a94f;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .rule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
    background: #fffcf5;
  }

  .rule-item i {
    font-size: 18px;
    color: #6b0f0f;
    background: #f5e6d3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .rule-details {
    display: flex;
    flex-direction: column;
  }

  .rule-details strong {
    font-size: 15px;
    color: #6b4423;
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
  }

  .rule-details span {
    font-size: 13px;
    color: #5a3a1a;
    line-height: 1.5;
  }



  /* Gallery Section */
  .gallery-section {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }

  .gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a94f, #b8860b, #d4a94f);
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title {
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #6b0f0f;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
  }

  .section-subtitle {
    font-size: 16px;
    color: #8b4513;
    font-style: italic;
  }

  .title-line {
    display: inline-block;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a94f 30%, #d4a94f 70%, transparent);
    vertical-align: middle;
  }

  .title-line.left {
    margin-right: 25px;
  }

  .title-line.right {
    margin-left: 25px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }

  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 15, 15, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 250px;
  }

  .gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(107, 15, 15, 0.25);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 15, 15, 0.85), rgba(139, 26, 26, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-overlay i {
    color: #d4a94f;
    font-size: 24px;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay i {
    transform: scale(1);
  }

  .gallery-cta {
    text-align: center;
  }

  .view-gallery-btn {
    background: linear-gradient(135deg, #d67500 0%, #a55c34 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(165, 92, 52, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .view-gallery-btn:hover {
    background: linear-gradient(135deg, #e6801a 0%, #b5663d 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(165, 92, 52, 0.4);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .gallery-section {
      padding: 60px 15px;
    }

    .section-title {
      font-size: 32px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

    .gallery-item {
      height: 200px;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .gallery-item {
      height: 220px;
    }
  }

  /* NEW: Random-ish unique fullscreen modal CSS for gallery */
  .temple-gallery-fullscreen {
    display: none;
    position: fixed;
    z-index: 9917;
    inset: 0;
    background: rgba(9, 2, 0, 0.93);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .temple-gallery-fullscreen.active-tgf {
    display: flex;
  }

  .tgf-image {
    max-width: 96vw;
    max-height: 92vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    object-fit: contain;
    border: 3px solid rgba(212, 169, 79, 0.8);
    background: radial-gradient(circle at center, #2b1a15 0%, #0b0503 55%, #000 100%);
  }

  .tgf-close {
    position: fixed;
    top: 18px;
    right: 26px;
    color: #f7e6b0;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    z-index: 9918;
    line-height: 1;
  }

  .tgf-close:hover {
    color: #ffd36b;
  }

  @media (max-width: 600px) {
    .tgf-image {
      max-width: 100vw;
      max-height: 80vh;
    }

    .tgf-close {
      font-size: 30px;
      right: 18px;
    }
  }

  /* ALL YOUR EXISTING STYLES + RED OVERLAY FIXED */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .video-gallery-section {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }

  .video-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a94f, #b8860b, #d4a94f);
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title {
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #6b0f0f;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
  }

  .section-subtitle {
    font-size: 16px;
    color: #8b4513;
    font-style: italic;
  }

  .title-line {
    display: inline-block;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a94f 30%, #d4a94f 70%, transparent);
    vertical-align: middle;
  }

  .title-line.left {
    margin-right: 25px;
  }

  .title-line.right {
    margin-left: 25px;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }

  .video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 15, 15, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 250px;
  }

  .video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(107, 15, 15, 0.25);
  }

  .video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .video-item:hover video {
    transform: scale(1.05);
  }

  /* FIXED: Clear overlay - only play button visible */
  .video-overlay {
    position: absolute;
    inset: 0;
    /* REMOVED RED EFFECT - now transparent */
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .video-item:hover .video-overlay {
    opacity: 1;
  }

  .video-overlay i {
    color: #d4a94f;
    font-size: 64px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .video-item:hover .video-overlay i {
    transform: scale(1);
  }

  .video-cta {
    text-align: center;
  }

  .view-videos-btn {
    background: linear-gradient(135deg, #d67500 0%, #a55c34 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(165, 92, 52, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .view-videos-btn:hover {
    background: linear-gradient(135deg, #e6801a 0%, #b5663d 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(165, 92, 52, 0.4);
  }

  /* FULLSCREEN MODAL */
  .video-fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .video-fullscreen-modal.active {
    display: flex;
  }

  .vfm-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
  }

  .vfm-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(212, 169, 79, 0.3);
  }

  .vfm-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: #f7e6b0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    line-height: 1;
  }

  .vfm-close:hover {
    color: #ffd36b;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .video-gallery-section {
      padding: 60px 15px;
    }

    .section-title {
      font-size: 32px;
    }

    .video-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .video-item {
      height: 200px;
    }

    .video-overlay i {
      font-size: 48px;
    }
  }

  @media (max-width: 480px) {
    .video-grid {
      grid-template-columns: 1fr;
    }

    .video-item {
      height: 220px;
    }
  }

  /* ================= CONTACT SECTION ================= */

  .contact-section {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a94f, #b8860b, #d4a94f);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header */
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title {
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #6b0f0f;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .section-subtitle {
    font-size: 16px;
    color: #8b4513;
    font-style: italic;
  }

  .title-line {
    display: inline-block;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a94f 30%, #d4a94f 70%, transparent);
    vertical-align: middle;
  }

  .title-line.left {
    margin-right: 25px;
  }

  .title-line.right {
    margin-left: 25px;
  }

  /* Layout */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    /* 🔥 Equal height */
  }

  /* Map Card */
  .contact-map {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(107, 15, 15, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-wrapper {
    flex: 1;
    display: flex;
  }

  .temple-map {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(107, 68, 35, 0.2);
  }

  /* Directions Button */
  .get-directions-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #d67500, #a55c34);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(165, 92, 52, 0.3);
  }

  /* Contact Details */
  .contact-details-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .contact-info {
    flex: 1;
  }

  .contact-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255, 252, 248, 0.85);
    border-radius: 12px;
    border-left: 4px solid #d4a94f;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a94f, #b8860b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-icon i {
    color: #fff;
  }

  .contact-text h4 {
    font-family: Arial, sans-serif;
    color: #6b0f0f;
    margin-bottom: 6px;
  }

  .contact-text p {
    font-size: 14px;
    color: #5a3a1a;
  }

  .special-hours {
    color: #d4a94f;
  }

  /* CTA */
  .contact-cta {
    margin-top: auto;
  }

  .contact-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b0f0f, #8b1a1a);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  }



  /* Bottom Columns Section */
  .bottom-columns {
    background: #f5e6d3;
    padding: 70px 80px;
    /* Same generous spacing as top section */
  }

  .column-container {
    display: flex;
    gap: 40px;
    /* Same generous gap between columns */
    max-width: 1400px;
    margin: 0 auto;
    /* Centers the container */
  }

  .column {
    flex: 1;
    background: rgba(255, 252, 248, 0.95);
    padding: 32px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 5px rgba(107, 68, 35, 0.1);
  }

  /* Your existing gallery, contact, and form styles remain the same... */

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .bottom-columns {
      padding: 60px 40px;
    }

    .column-container {
      gap: 30px;
      flex-direction: column;
    }

    .column {
      margin-bottom: 0;
    }
  }

  @media (max-width: 768px) {
    .bottom-columns {
      padding: 50px 30px;
    }

    .column-container {
      gap: 25px;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }


  /* styles.css - All buttons updated to #d67500 to #a55c34 gradient (bottom-to-top) */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    /* font-family: 'Georgia', 'Times New Roman', serif; */
    background: #ffffff;
    color: #3d2817;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .column-container {
    display: flex;
    gap: 0;
    max-width: 100%;
  }

  /* Section Titles */
  .section-title {
    text-align: center;
    font-size: 36px;
    color: #8b4513;
    margin-bottom: 35px;
    position: relative;
    padding: 30px 0;
    font-weight: normal;
  }

  /* make heading lines flex items so they auto‑stretch and stay centered */
  .section-title .title-line {
    flex: 1 1 0;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a574 20%, #d4a574 80%, transparent);
  }

  .section-title .title-line.left {
    margin-right: 30px;
  }

  .section-title .title-line.right {
    margin-left: 30px;
  }

  /* About Temple Section */
  .about-temple {
    background: #ffffff;
    padding-bottom: 50px;
    border-top: 3px solid #5a3a1a;
    position: relative;
  }

  /* language block visibility */
  .lang {
    display: none;
  }

  .lang.en {
    display: block;
  }

  .decorative-border-top {
    height: 15px;
    background: repeating-linear-gradient(90deg,
        #5a3a1a 0px,
        #5a3a1a 10px,
        transparent 10px,
        transparent 20px);
  }

  .temple-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tab-btn {
    background: #f9f4ee;
    border: 2px solid #d4a574;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #6b4423;
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .tab-btn .tab-icon {
    width: 20px;
    height: 20px;
  }

  .tab-btn:hover,
  .tab-btn.active {
    background: linear-gradient(0deg, #d67500 0%, #a55c34 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .temple-content {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .temple-image {
    flex: 1;
  }

  .temple-image img {
    width: 100%;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .temple-info {
    flex: 1;
    padding: 35px;
    border-radius: 0;
  }

  .temple-info p {
    line-height: 1.9;
    margin-bottom: 25px;
    color: #4a3427;
    font-size: 15px;
    text-align: justify;
  }

  .learn-more-btn {
    background: linear-gradient(0deg, #a55c34 0%, #e58005 50%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(165, 92, 52, 0.4);
    transition: all 0.3s;
    font-family: monospace;
  }

  .learn-more-btn:hover {
    background: linear-gradient(0deg, #a55c34 0%, #e58005 50%);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(165, 92, 52, 0.5);
  }

  /* Donation Highlights Section */
  .donation-highlights {
    background: #e8d5c4;
    padding: 50px 0;
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .highlight-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  }

  .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .card-content {
    padding: 22px;
  }

  .card-content h3 {
    font-size: 19px;
    color: #5a3a1a;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .card-content p {
    font-size: 13px;
    color: #7a5a3a;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .event-meta {
    font-size: 13px;
    color: #5a3a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .event-meta i {
    color: #8b4513;
  }

  .card-btn {
    width: 100%;
    border: none;
    padding: 11px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    color: white;
    background: linear-gradient(0deg, #a55c34 0%, #e58005 50%);
    box-shadow: 0 2px 6px rgba(165, 92, 52, 0.3);
  }

  .card-btn:hover {
    background: linear-gradient(0deg, #e6801a 0%, #b5663d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }



  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;

    /* FIXES */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* removes underline */
    line-height: 0;
    /* removes inline gap */
    border: none;
  }

  .whatsapp-float i {
    line-height: 1;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  }