    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: #f5f5f5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Playfair Display", serif;
    }
	
		
	/* Slider Code */

	.rslides {
		width: 100%;
		height: 100%;
		position: relative;
	}
	.rslides:after {
		content: '';
		display: block;
		clear: both;
	}
	.rslides li {
		display: none;
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		position: absolute;
		-webkit-backface-visibility: hidden;
		-khtml-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		-o-backface-visibility: hidden;
	}
	.rslides li li {
		display: inherit;
		width: inherit;
		height: inherit;
		position: inherit;
		left: inherit;
		top: inherit;
	}

    /* Header Section (Main Site Design) */
    .header {
      background: white;
      padding: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: relative; /* Removed sticky */
      z-index: 1000;
    }

    .header-top-border {
      height: 25px;
      background: #fdf2d9; /* Light cream background */
      background-image: radial-gradient(#d4af37 15%, transparent 16%),
                        radial-gradient(#d4af37 15%, transparent 16%);
      background-size: 30px 30px;
      background-position: 0 0, 15px 15px;
      border-bottom: 2px solid #d4af37;
      position: relative;
    }

    /* Better ornate pattern using SVG data URL */
    .header-top-border {
      height: 40px;
      background-color: #fff;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='40' viewBox='0 0 100 40'%3E%3Cpath d='M0 40 L50 10 L100 40' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3Ccircle cx='50' cy='15' r='3' fill='%23d4af37'/%3E%3Cpath d='M0 0 H100 V10 Q50 0 0 10 Z' fill='%23d4af37'/%3E%3C/svg%3E");
      background-repeat: repeat-x;
      background-size: auto 40px;
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 10px 30px;
      gap: 20px;
    }

    .brand-container {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .brand-text {
      text-align: left;
    }

    .brand-text p {
      font-size: 13px;
      color: #7b0202;
      margin: 0;
      font-weight: 600;
      letter-spacing: 0.3px;
      font-family: 'Poppins', sans-serif;
      line-height: 1.3;
    }

    .logo-container {
      width: 90px;
      height: 90px;
      background: #fff;
      border-radius: 50%;
      border: 2px solid #ff6f00;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      flex-shrink: 0;
    }
    
    .mutt-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .brand-title {
      font-size: 32px;
      color: #E65100;
      font-weight: 800;
      margin: 0;
      font-family: 'Playfair Display', serif;
      letter-spacing: 1px;
      line-height: 1.1;
      white-space: nowrap;
    }

    .mobile-menu-btn {
      display: none;
    }

    .nav-container {
      flex-grow: 1;
      display: flex;
      justify-content: flex-end;
    }

    .nav-menu {
      display: flex;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-menu a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.3s;
      padding: 5px 10px;
      white-space: nowrap;
    }

    .nav-menu a:hover {
      color: #ff6f00;
    }

    .book-seva-btn {
      background: #E65100;
      color: white !important;
      padding: 8px 20px !important;
      border-radius: 25px;
      font-weight: 600 !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
    }

    .book-seva-btn:hover {
      background: #bf4300;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(230, 81, 0, 0.4);
      color: white !important;
    }

    .nav-menu i {
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    /* New Banner Styles */
    .banner-wrapper {
      background: #fdf2d9; /* Lighter background matching ornate border */
      padding: 40px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .banner-container {
      max-width: 1100px;
      width: 100%;
      background: white;
      padding: 15px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
      position: relative;
    }

    .banner-image-box {
      width: 100%;
      height: 500px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .banner-content {
      position: absolute;
      bottom: 40px;
      left: 40px;
      right: 40px;
      z-index: 10;
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .banner-content h2 {
      color: #ffd700;
      font-size: 28px;
      margin: 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-family: 'Playfair Display', serif;
    }

    .banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .banner-image-box:hover .banner-image {
      transform: scale(1.03);
    }

    .banner-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #ff6f00;
      color: white;
      padding: 8px 25px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 18px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Inner Page Banner */
    .inner-banner {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.png');
      background-size: cover;
      background-position: center;
      padding: 60px 20px;
      text-align: center;
      color: white;
      border-bottom: 5px solid #d4af37;
    }

    .inner-banner-content h2 {
      font-size: 42px;
      color: #ffd700;
      margin-bottom: 10px;
      font-family: 'Playfair Display', serif;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

    .inner-banner-content p {
      font-size: 18px;
      opacity: 0.9;
      font-weight: 500;
    }

    .banner-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background: white;
      box-shadow: 0 0 5px rgba(255,255,255,0.8);
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Festival Table Styles */
    .festival-table tr {
      transition: background-color 0.2s ease;
    }
    .festival-table tr:hover {
      background-color: #fff9f0 !important;
    }
    .festival-table td {
      transition: color 0.2s ease;
    }
    .festival-table tr:hover td {
      color: #7b0202;
    }

    /* Info Cards Section */
    .info-section {
      max-width: 1000px;
      margin: -50px auto 40px;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .info-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: all 0.3s ease;
      border-top: 4px solid #ff6f00;
    }

    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .info-card-icon {
      color: #ff6f00;
      margin-bottom: 15px;
    }

    .info-card-icon i {
      font-size: 48px;
    }

    .info-card h3 {
      color: #ff6f00;
      margin-bottom: 12px;
      font-size: 20px;
    }

    .info-card p {
      color: #666;
      line-height: 1.6;
      font-size: 14px;
    }

    /* Broadcast Section */
    .broadcast-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      padding: 60px 20px;
      color: white;
    }

    .broadcast-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .broadcast-container h2 {
      text-align: center;
      color: #ff6f00;
      font-size: 36px;
      margin-bottom: 10px;
      text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    }

    .broadcast-subtitle {
      text-align: center;
      font-size: 16px;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .broadcast-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
    }

    .video-container {
      background: rgba(255, 255, 255, 0.05);
      padding: 20px;
      border-radius: 15px;
      border: 2px solid rgba(255, 111, 0, 0.3);
    }

    .video-frame {
      border: 5px solid #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(255, 111, 0, 0.3);
      margin-bottom: 20px;
    }

    .video-frame iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: block;
    }

    .broadcast-info {
      text-align: center;
    }

    .broadcast-info p {
      margin: 10px 0;
      font-size: 14px;
    }

    .youtube-btn {
      display: inline-block;
      background: #ff0000;
      color: white;
      padding: 12px 30px;
      border-radius: 25px;
      text-decoration: none;
      margin-top: 15px;
      font-weight: 600;
      transition: all 0.3s;
    }

    .youtube-btn:hover {
      background: #cc0000;
      transform: scale(1.05);
    }

    .todays-celebrations {
      background: rgba(255, 111, 0, 0.1);
      padding: 25px;
      border-radius: 15px;
      border: 2px solid rgba(255, 111, 0, 0.3);
    }

    .todays-celebrations h3 {
      color: #ff6f00;
      margin-bottom: 20px;
      font-size: 22px;
      text-align: center;
    }

    .celebration-scroll {
      max-height: 400px;
      overflow-y: auto;
    }
	
    .celebration-item {
      background: rgba(255, 255, 255, 0.05);
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 8px;
      border-left: 4px solid #ff6f00;
      display: flex;
      align-items: center;
      gap: 15px;
      animation: slideInRight 0.5s ease;
	  color: #fff;
    }
	
	.celebration-scroll a{
		text-decoration: none;
	}

    .celebration-item i {
      color: #ff6f00;
      font-size: 24px;
    }

	.celebration-item span {
		display: block;
	}

    /* Why Wishes Section Refined */
    .panchanga-section {
      background: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    
    .panchanga-section h2 {
      color: #E65100;
      font-size: 34px;
      margin-bottom: 50px;
      font-family: "Playfair Display", serif;
      font-weight: 700;
    }
    
    .seva-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .seva-card {
      background: #fafaf8;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      border-top: 4px solid #E65100;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .seva-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(230, 81, 0, 0.1);
    }
    
    .seva-card h3 {
      color: #7b0202;
      margin-bottom: 20px;
      font-size: 22px;
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .seva-card h3 i {
      color: #ff6f00;
      font-size: 30px;
    }

    .seva-card h3 img {
      height: 90px;
      width: auto;
      object-fit: contain;
      margin-bottom: 15px;
      filter: drop-shadow(0 4px 8px rgba(230, 81, 0, 0.2));
      transition: transform 0.3s ease;
    }
    
    .seva-card:hover h3 img {
      transform: scale(1.1);
    }
    
    .seva-card p {
      color: #555;
      line-height: 1.7;
      font-size: 15px;
    }

    .panchanga-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 50%,
          rgba(255, 111, 0, 0.1) 0%,
          transparent 50%),
        radial-gradient(circle at 80% 50%,
          rgba(255, 215, 0, 0.1) 0%,
          transparent 50%);
      animation: pulsate 4s ease-in-out infinite;
    }

    @keyframes pulsate {

      0%,
      100% {
        opacity: 0.5;
      }

      50% {
        opacity: 1;
      }
    }

    .panchanga-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .panchanga-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .panchanga-header h2 {
      color: #ffd700;
      font-size: 38px;
      text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow:
          0 0 10px rgba(255, 215, 0, 0.5),
          0 0 20px rgba(255, 215, 0, 0.3);
      }

      to {
        text-shadow:
          0 0 20px rgba(255, 215, 0, 0.8),
          0 0 30px rgba(255, 215, 0, 0.5),
          0 0 40px rgba(255, 215, 0, 0.3);
      }
    }

    .panchanga-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      perspective: 1000px;
    }

    .panchanga-card {
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(255, 248, 220, 0.95) 100%);
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      border: 2px solid rgba(255, 215, 0, 0.3);
      transition: all 0.4s ease;
      transform-style: preserve-3d;
    }

    .panchanga-card:hover {
      transform: translateY(-10px) rotateX(5deg);
      box-shadow:
        0 20px 40px rgba(255, 111, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .floating {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .panchanga-icon {
      font-size: 48px;
      color: #ff6f00;
      margin-bottom: 15px;
      filter: drop-shadow(0 0 10px rgba(255, 111, 0, 0.3));
    }

    .panchanga-label {
      font-size: 14px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .panchanga-value {
      font-size: 24px;
      color: #4a148c;
      font-weight: 700;
      margin-bottom: 5px;
      font-family: "Playfair Display", serif;
    }

    .panchanga-en {
      font-size: 12px;
      color: #888;
      font-style: italic;
    }

    .panchanga-footer {
      text-align: center;
      margin-top: 40px;
      color: rgba(255, 255, 255, 0.9);
    }

    .panchanga-footer p {
      font-size: 14px;
    }

    /* Daily Timings Section */
    .timings-section {
      background: #fafaf8;
      padding: 60px 20px;
    }

    .timings-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .timings-container h2 {
      text-align: center;
      color: #E65100;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .timings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .timing-card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-left: 5px solid #ff9800;
      text-align: center;
    }

    .timing-card h4 {
      color: #ff6f00;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .timing-card p {
      color: #555;
      font-size: 15px;
      margin: 5px 0;
    }

    /* Original Form Styles (Restored) */
    .committee-title {
      text-align: center;
      font-size: 34px;
      margin-bottom: 30px;
      color: #7b0202;
      margin-top: 60px;
    }
    
    .registerBox {
      max-width: 900px;
      margin: 40px auto;
      background: #fff;
      padding: 35px;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      border: 1px solid #eee;
    }
    
    .info-text {
      color: #c30000;
      margin-bottom: 22px;
      font-size: 14px;
    }
    
    .registerBox label {
      display: block;
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 6px;
      color: #333;
    }
    
    .registerBox label span {
      color: #c30000;
    }
    
    .registerBox input,
    .registerBox select,
    .registerBox textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 14px;
      background: #fff;
    }
    
    .registerBox input:focus,
    .registerBox select:focus,
    .registerBox textarea:focus {
      outline: none;
      border-color: #429dcf;
      box-shadow: 0 0 0 2px rgba(66, 157, 207, .15);
    }
    
    .registerBox textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    .file-note {
      font-size: 12px;
      color: #777;
      margin-top: 6px;
    }
    
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .grid-1 {
      margin-bottom: 20px;
    }
    
    .registerBox select {
      appearance: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
      background-size: 16px;
      padding-right: 40px;
    }
    
    .form-section {
      margin-top: 10px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }
    
    .submitBox {
      text-align: center;
      margin-top: 30px;
    }
    
    .submitBox input {
      background: #C52424;
      color: #fff;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 40px;
      cursor: pointer;
      width: auto;
    }
    
    .submitBox input:hover {
      background: #222628;
    }
    
    .form-footnote {
      text-align: center;
      color: #c30000;
      margin-top: 18px;
      font-size: 13px;
    }
    
    /* Contact Section */
    .contact-section {
      background: #E65100;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    .contact-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .contact-container h2 {
      font-size: 36px;
      margin-bottom: 30px;
      color: white;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 40px;
    }

    .contact-item h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .contact-item p {
      opacity: 0.95;
      line-height: 1.7;
    }

    /* Footer */
    .footer {
      background: #1a1a1a;
      color: white;
      text-align: center;
      padding: 30px 20px;
      border-top: 4px solid #d4af37;
    }

    /* Success Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 50px;
      border-radius: 20px;
      text-align: center;
      max-width: 550px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      border-top: 8px solid #4CAF50;
    }

    .modal-icon {
      font-size: 70px;
      margin-bottom: 25px;
    }

    .close-btn {
      background: #C52424;
      color: white;
      border: none;
      padding: 12px 35px;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 600;
      margin-top: 20px;
    }

    .error { border: 1px solid red !important; }
    label.error { color: red; font-size: 12px; margin-top: 5px; }

    /* Media Queries */
    @media (max-width: 992px) {
      .brand-title { font-size: 32px; }
      .nav-menu { gap: 15px; }
    }

    @media (max-width: 1100px) {
      .header-main { padding: 10px 20px; }
      .brand-title { font-size: 24px; }
      .nav-menu { gap: 15px; }
      .nav-menu a { font-size: 14px; padding: 5px; }
    }

    @media (max-width: 900px) {
      .header-main { 
        padding: 10px 15px; 
        position: relative; 
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
      }
      
      .brand-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
        width: 100%;
        padding: 0 40px; /* Leave space for menu btn on sides if needed */
      }

      .brand-text { text-align: center; width: 100%; }
      .brand-text p { font-size: 11px; margin-bottom: 5px; }
      .brand-title { 
        font-size: 22px; 
        white-space: normal; 
        display: block;
        width: 100%;
      }

      .nav-container { display: contents; } /* Allow children to be visible in mobile */
      
      .mobile-menu-btn { 
        display: block; 
        position: absolute;
        top: 20px;
        right: 15px;
        background: #ff6f00;
        border: none;
        color: white;
        padding: 10px;
        border-radius: 4px;
        font-size: 22px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 1001;
      }

      .logo-container { width: 70px; height: 70px; }

      .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%; left: 0; right: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 0;
      }
      .nav-menu.mobile-active { display: flex; }
      .nav-menu li { width: 100%; border-bottom: 1px solid #eee; }
      .nav-menu a { padding: 15px 20px; display: block; width: 100%; text-align: left; }

      .banner-wrapper { padding: 20px 10px; }
      .banner-container { padding: 10px; }
      .banner-image-box { height: auto; min-height: auto; }
      .banner-image { height: auto; object-fit: contain; }
      .grid-2 { grid-template-columns: 1fr; }
      .info-cards, .seva-grid, .timings-grid, .contact-info, .broadcast-content { grid-template-columns: 1fr; }
      .video-frame iframe { height: 250px; }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ================================
       GRID CALENDAR STYLES
    ================================ */
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-top: 40px;
    }

    .month-card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #f0f0f0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      min-height: 420px;
      position: relative;
      overflow: hidden;
    }

    .month-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #E65100, #ff9800);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .month-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(230, 81, 0, 0.12);
      border-color: #ffe0b2;
    }

    .month-card:hover::before {
      opacity: 1;
    }

    .month-header {
      text-align: center;
      border-bottom: 2px solid #fff3e0;
      padding-bottom: 15px;
      margin-bottom: 20px;
    }

    .month-name-kn {
      font-size: 26px;
      color: #7b0202;
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
    }

    .month-name-en {
      font-size: 13px;
      color: #E65100;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
    }

    .festivals-list {
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .festival-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
      color: #444;
      line-height: 1.4;
    }

    .festival-item i {
      color: #E65100;
      margin-top: 3px;
      font-size: 12px;
      background: #fff3e0;
      padding: 6px;
      border-radius: 50%;
    }

    .panchanga-box {
      background: #fdf2d9;
      border-radius: 12px;
      padding: 12px;
      border: 1px solid #fae1a2;
    }

    .panchanga-title {
      font-size: 12px;
      font-weight: 700;
      color: #7b0202;
      margin-bottom: 12px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .panchanga-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .panchanga-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .panchanga-label {
      font-size: 9px;
      color: #E65100;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .panchanga-date {
      font-size: 13px;
      font-weight: 800;
      color: #7b0202;
      line-height: 1.4;
      text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    }

    /* Staggered load animation using CSS variables */
    .month-card:nth-child(1) { transition-delay: 0.1s; }
    .month-card:nth-child(2) { transition-delay: 0.15s; }
    .month-card:nth-child(3) { transition-delay: 0.2s; }
    .month-card:nth-child(4) { transition-delay: 0.25s; }
    .month-card:nth-child(5) { transition-delay: 0.3s; }

    @media (max-width: 992px) {
      .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .calendar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .month-card {
        min-height: auto;
        padding: 20px;
      }

      .lineage-content {
        padding: 25px;
        font-size: 15px;
      }

      .committee-title {
        font-size: 28px !important;
      }
    }

    /* ================================
       SECTION LAYOUTS (Extracted)
    ================================ */
    .lineage-section {
      padding: 100px 20px;
      background: #fdf2d9;
      position: relative;
      overflow: hidden;
    }

    .lineage-container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .lineage-content {
      line-height: 1.8;
      color: #444;
      font-size: 17px;
      text-align: justify;
      background: rgba(255,255,255,0.7);
      padding: 40px;
      border-radius: 15px;
      border: 1px solid #d4af37;
    }

    .wishes-section {
      padding: 60px 20px;
      background: #f4f4f4;
    }

    .calendar-section {
      padding: 80px 20px;
      background: #fafafa;
    }

    .testimonials-section {
      padding: 80px 20px;
      background: #fff;
    }

    .testimonials-container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: #fafaf8;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      position: relative;
      text-align: left;
    }

    .testimonial-quote-icon {
      color: #E65100;
      font-size: 30px;
      position: absolute;
      top: 20px;
      left: 20px;
      opacity: 0.2;
    }

    .testimonial-text {
      font-style: italic;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .testimonial-author {
      color: #7b0202;
      margin: 0;
      font-weight: 600;
      display: block;
    }

    .testimonial-location {
      color: #888;
      font-size: 13px;
    }

    /* ================================
       DATE HIGHLIGHT BADGES
    ================================ */
    .date-badge {
      display: inline-block;
      background: #fff3e0;
      color: #E65100;
      padding: 1px 8px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 700;
      margin-left: 6px;
      border: 1px solid #ffe0b2;
      box-shadow: 0 2px 4px rgba(230, 81, 0, 0.05);
      font-family: 'Poppins', sans-serif;
    }

    .section-subtitle {
      font-size: 20px;
      color: #7b0202;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      margin-bottom: 30px;
      text-align: center;
    }

    .lineage-bg-logo-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      pointer-events: none;
    }

    .lineage-bg-logo {
      width: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .info-card-icon img {
      height: 60px;
    }

    .alert-success {
      background: #43b968;
      padding: 10px;
      color: #fff;
      margin: 0 0 30px 0;
      font-size: 18px;
      font-weight: 400;
      border-radius: 4px;
    }

    .alert-failure {
      background: #881717;
      padding: 10px;
      color: #fff;
      margin: 0 0 30px 0;
      font-size: 18px;
      font-weight: 400;
      border-radius: 4px;
    }

    .calendar-header-p {
      text-align: center;
      color: #666;
      margin-bottom: 40px;
    }

    .no-festivals-msg {
      font-style: italic;
      color: #888;
      font-size: 13px;
      text-align: center;
      margin-top: 20px;
    }

    .panchanga-footer-text {
      text-align: center;
      color: #666;
      font-size: 14px;
      margin-top: 40px;
    }

    .calendar-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Kannada Typography */
    .month-name-kn,
    .festival-item span,
    .panchanga-footer-text,
    [lang="kn"] {
      font-family: 'Noto Sans Kannada', sans-serif;
    }

    .modal-icon-check {
      color: #4caf50;
    }

    /* Read More Button Styles */
    .read-more-wrapper {
      text-align: center;
      margin-top: 40px;
      position: relative;
      z-index: 5;
    }

    .read-more-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #E65100;
      color: white !important;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(230, 81, 0, 0.2);
    }

    .read-more-link:hover {
      background: #bf4300;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
    }

    .read-more-link i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .read-more-link:hover i {
      transform: translateX(5px);
    }
