
    :root {
      --primary-color: #e67e22;
      --primary-light: #f39c12;
      --primary-dark: #d35400;
      --secondary-color: #2c3e50;
      --accent-color: #e74c3c;
      --light-bg: #fdfaf5;
      --gold-light: #ffe8a1;
      --gold-dark: #f1d07e;
      --teal-color: #1abc9c;
      --purple-color: #9b59b6;
      --blue-color: #3498db;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    body {
      background-color: var(--light-bg);
      font-family: 'Poppins', sans-serif;
      color: #444;
      line-height: 1.8;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Noto Serif', serif;
      color: var(--secondary-color);
      font-weight: 700;
      line-height: 1.3;
    }

    /* Topbar */
    .topbar {
      background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
      padding: 10px 20px;
      font-size: 14px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: relative;
      z-index: 1000;
    }

    .topbar a {
      color: var(--secondary-color);
      margin-left: 12px;
      transition: var(--transition);
      text-decoration: none;
      font-weight: 500;
    }

    .topbar a:hover {
      color: var(--primary-dark);
      transform: translateY(-1px);
    }

    /* Header */
    .header {
      background: linear-gradient(rgba(255,251,230,0.92), rgba(255,251,230,0.92)), 
                  url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      padding: 40px 15px;
      text-align: center;
      border-bottom: 1px solid var(--gold-dark);
      position: relative;
      overflow: hidden;
    }

    .header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--teal-color));
      z-index: 1;
    }

    .header img {
      max-height: 120px;
      border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      transition: var(--transition);
      object-fit: cover;
      width: 120px;
      height: 120px;
    }

    .header img:hover {
      transform: scale(1.05) rotate(5deg);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .header-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--secondary-color);
      margin-top: 20px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
      position: relative;
      display: inline-block;
    }

    .header-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 2px;
    }

    .tagline {
      font-style: italic;
      color: var(--secondary-color);
      font-weight: 500;
      margin-top: 20px;
      font-size: 1.2rem;
      position: relative;
    }

    /* Navigation */
    .navbar-custom {
      background-color: white;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      padding: 10px 0;
    }

    .navbar-custom.scrolled {
      padding: 5px 0;
      box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    }

    .navbar-custom .nav-link {
      color: var(--secondary-color);
      font-weight: 600;
      margin: 0 5px;
      padding: 8px 15px;
      transition: var(--transition);
      position: relative;
      border-radius: 6px;
      font-size: 15px;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
      background-color: rgba(230, 126, 34, 0.1) !important;
      color: var(--primary-dark) !important;
    }

    .navbar-custom .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 3px;
      transition: width 0.3s ease;
    }

    .navbar-custom .nav-link:hover::after,
    .navbar-custom .nav-link.active::after {
      width: 70%;
    }

    /* Sidebar */
    .sidebar {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      border-top: 5px solid var(--primary-color);
      margin-bottom: 30px;
      transition: var(--transition);
    }

    .sidebar:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .sidebar h5 {
      font-size: 1.3rem;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 12px;
      margin-bottom: 20px;
      color: var(--secondary-color);
      position: relative;
      display: flex;
      align-items: center;
    }

    .sidebar h5 i {
      margin-right: 10px;
      color: var(--primary-color);
    }

    .sidebar a {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      color: var(--secondary-color);
      text-decoration: none;
      border-left: 4px solid transparent;
      margin-bottom: 8px;
      border-radius: 6px;
      transition: var(--transition);
      font-weight: 500;
    }

    .sidebar a i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }

    .sidebar a:hover {
      background-color: rgba(230, 126, 34, 0.1);
      border-left: 4px solid var(--primary-color);
      transform: translateX(5px);
      box-shadow: 3px 3px 10px rgba(0,0,0,0.05);
    }

    /* Main Content */
    .main-content {
      padding: 35px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      margin-bottom: 30px;
      transition: var(--transition);
    }

    .main-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .main-content h2 {
      font-weight: 800;
      margin-bottom: 25px;
      color: var(--secondary-color);
      position: relative;
      padding-bottom: 15px;
    }

    .main-content h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 2px;
    }

    .main-content p {
      font-size: 16px;
      line-height: 1.9;
      color: #555;
      margin-bottom: 25px;
    }

    /* Highlight Box */
    .highlight-box {
      background: linear-gradient(to right, rgba(255,248,225,0.8), white);
      padding: 25px;
      border-left: 5px solid var(--primary-color);
      margin: 30px 0;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .highlight-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1550684376-efcbd6e3f031?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=5') center/cover;
      opacity: 0.05;
      z-index: 0;
    }

    .highlight-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .highlight-box h5 {
      font-weight: 700;
      color: var(--primary-dark);
      position: relative;
      z-index: 1;
    }

    .highlight-box h5 i {
      margin-right: 10px;
    }

    
    /* Footer */
    .footer {
      background: linear-gradient(135deg, var(--secondary-color), #1a2a3a);
      color: white;
      padding: 60px 0 30px;
      text-align: center;
      margin-top: 80px;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--teal-color));
    }

    .footer a {
      color: var(--gold-light);
      text-decoration: none;
      transition: var(--transition);
      font-weight: 500;
    }

    .footer a:hover {
      color: white;
      text-decoration: underline;
      transform: translateX(3px);
    }

    .footer h5 {
      color: white;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }

    .footer h5::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: var(--primary-color);
    }

    /* Cards */
    .card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: var(--transition);
      margin-bottom: 30px;
      border-top: 5px solid var(--primary-color);
    }

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

    .card-header {
      font-weight: 700;
      border-bottom: none;
      background-color: white;
      color: var(--secondary-color);
      padding: 15px 20px;
      font-size: 1.1rem;
    }

    .card-header i {
      margin-right: 10px;
    }

    /* Buttons */
    .btn-custom {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      transition: var(--transition);
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 14px;
      box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    }

    .btn-teal {
      background: linear-gradient(135deg, var(--teal-color), #16a085);
      box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
    }
    
    .btn-teal:hover {
      background: linear-gradient(135deg, #16a085, var(--teal-color));
      box-shadow: 0 8px 20px rgba(26, 188, 156, 0.4);
    }
    
    .btn-purple {
      background: linear-gradient(135deg, var(--purple-color), #8e44ad);
      box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
    }
    
    .btn-purple:hover {
      background: linear-gradient(135deg, #8e44ad, var(--purple-color));
      box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
    }

    /* News Items */
    .news-item {
      padding: 15px 0;
      border-bottom: 1px dashed rgba(0,0,0,0.1);
      transition: var(--transition);
    }

    .news-item:hover {
      background-color: rgba(230, 126, 34, 0.05);
      padding-left: 10px;
    }

    .news-item:last-child {
      border-bottom: none;
    }

    .event-title {
      font-weight: 600;
      color: var(--secondary-color);
      margin-bottom: 5px;
      transition: var(--transition);
    }

    .news-item:hover .event-title {
      color: var(--primary-color);
    }

    .event-date {
      color: #777;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
    }

    .event-date i {
      margin-right: 8px;
      color: var(--primary-color);
    }

    /* Support Our Cause Card - NEW DESIGN */
    .support-cause-card {
      background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      margin-bottom: 30px;
      position: relative;
      border: none;
    }
    
    .support-cause-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    }
    
    .support-cause-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #e67e22, #e74c3c, #f1c40f);
      z-index: 2;
    }
    
    .support-cause-card .card-body {
      padding: 40px 30px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .support-cause-card .card-body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://images.unsplash.com/photo-1550684376-efcbd6e3f031?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=5') center/cover;
      opacity: 0.05;
      z-index: -1;
    }
    
    .support-icon {
      font-size: 4rem;
      color: #e67e22;
      margin-bottom: 25px;
      display: inline-block;
      background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(231, 76, 60, 0.1));
      width: 100px;
      height: 100px;
      line-height: 100px;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .support-cause-card h3 {
      color: white;
      font-weight: 800;
      margin-bottom: 15px;
      font-size: 1.8rem;
    }
    
    .support-cause-card p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 30px;
      font-size: 1.1rem;
    }
    
    .donation-impact {
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 20px;
      margin: 25px 0;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .impact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }
    
    .impact-item:last-child {
      margin-bottom: 0;
    }
    
    .impact-icon {
      width: 40px;
      height: 40px;
      background: rgba(230, 126, 34, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: #e67e22;
      font-size: 1.2rem;
    }
    
    .impact-text {
      text-align: left;
      color: white;
      flex: 1;
    }
    
    .impact-text strong {
      display: block;
      font-size: 1.2rem;
      color: #f1c40f;
    }
    
    .impact-text span {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }
    
    .donate-button {
      background: linear-gradient(135deg, #e67e22, #d35400);
      color: white;
      border: none;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.4s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
    }
    
    .donate-button:hover {
      background: linear-gradient(135deg, #d35400, #e67e22);
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 30px rgba(230, 126, 34, 0.6);
      color: white;
    }
    
    .donate-button i {
      margin-left: 10px;
      transition: transform 0.3s ease;
    }
    
    .donate-button:hover i {
      transform: translateX(5px);
    }

    /* Blog Cards */
    .blog-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: var(--transition);
      margin-bottom: 30px;
      height: 100%;
    }

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

    .blog-card-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-card-img {
      transform: scale(1.05);
    }

    .blog-card-body {
      padding: 25px;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 0.85rem;
      color: #777;
    }

    .blog-meta span {
      display: flex;
      align-items: center;
      margin-right: 15px;
    }

    .blog-meta i {
      margin-right: 5px;
      color: var(--primary-color);
    }

    .blog-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--secondary-color);
      transition: var(--transition);
    }

    .blog-card:hover .blog-card-title {
      color: var(--primary-color);
    }

    .blog-card-excerpt {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .blog-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

    .blog-author {
      display: flex;
      align-items: center;
    }

    .blog-author-img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
      border: 2px solid var(--primary-light);
    }

    .blog-author-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--secondary-color);
    }

    .blog-category {
      background: rgba(230, 126, 34, 0.1);
      color: var(--primary-color);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* News Content */
    .news-content h4 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--secondary-color);
      font-weight: 700;
      transition: var(--transition);
    }

    .news-item:hover .news-content h4 {
      color: var(--primary-color);
    }

    .news-content p {
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .news-content a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      transition: var(--transition);
    }

    .news-content a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
      transform: translateX(5px);
    }

    .news-content a i {
      margin-left: 5px;
      transition: var(--transition);
    }

    .news-content a:hover i {
      transform: translateX(3px);
    }

    .news-date {
      flex: 0 0 50px;
      height: 50px;
      background: rgba(230, 126, 34, 0.15);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: bold;
      color: var(--primary-color);
      transition: var(--transition);
    }

    .news-item:hover .news-date {
      background: rgba(230, 126, 34, 0.25);
      transform: scale(1.05);
    }

    .news-date span:first-child {
      font-size: 1.2rem;
      line-height: 1;
    }

    /* Contact Info */
    .contact-info {
      background: rgba(255, 255, 255, 0.95);
      padding: 25px;
      border-radius: 12px;
      margin-top: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .contact-info p {
      margin-bottom: 15px;
      color: #555;
      display: flex;
      align-items: center;
    }

    .contact-info i {
      color: var(--primary-color);
      margin-right: 15px;
      width: 25px;
      text-align: center;
      font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                  url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      padding: 100px 0;
      color: white;
      text-align: center;
      position: relative;
    }

    .hero-section h1 {
      color: white;
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .hero-section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .hero-buttons .btn {
      margin: 0 10px;
      padding: 12px 30px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* Testimonials */
    .testimonial-section {
      background: #f9f9f9;
      padding: 80px 0;
      margin: 60px 0;
    }

    .testimonial-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      margin-bottom: 30px;
      position: relative;
      transition: var(--transition);
    }

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

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(230, 126, 34, 0.1);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .testimonial-content {
      position: relative;
      z-index: 1;
    }

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

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 3px solid var(--primary-color);
    }

    .author-info h5 {
      margin-bottom: 5px;
      color: var(--secondary-color);
    }

    .author-info p {
      color: #777;
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    /* Gallery Section */
    .gallery-section {
      padding: 60px 0;
      background: #f9f9f9;
    }

    .gallery-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: var(--transition);
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      padding: 20px;
      color: white;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      bottom: 0;
    }

    .gallery-title {
      font-weight: 600;
      margin-bottom: 5px;
    }

    /* Full Width Sections */
    .full-width-section {
      padding: 80px 0;
      position: relative;
    }
    
    .full-width-section h2 {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .full-width-section .section-subtitle {
      text-align: center;
      margin-bottom: 50px;
      color: #666;
    }

    /* New Sections - Clean Backgrounds */
    .upcoming-events-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    
    .icons-heroes-section {
      background: white;
      padding: 80px 0;
    }
    
    .mandirs-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    
    .programs-section {
      background: linear-gradient(to bottom, white, #f8f9fa);
      padding: 80px 0;
    }
    
    .event-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .event-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .event-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    
    .event-date {
      background: var(--primary-color);
      color: white;
      padding: 10px 20px;
      text-align: center;
      font-weight: 700;
      font-size: 1.1rem;
    }
    
    .event-content {
      padding: 25px;
    }
    
    .event-content h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    
    .event-meta {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #666;
      font-size: 0.7rem;
    }
    
    .event-meta i {
      margin-right: 8px;
      color: var(--primary-color);
    }
    
    .event-meta span {
      margin-right: 20px;
    }
    
    .icon-hero-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .icon-hero-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .icon-hero-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid var(--primary-color);
      margin-bottom: 20px;
    }
    
    .icon-hero-card h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--secondary-color);
    }
    
    .icon-hero-card p {
      color: #666;
      font-size: 0.95rem;
    }
    
    .mandir-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .mandir-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .mandir-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    
    .mandir-content {
      padding: 25px;
    }
    
    .mandir-content h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    
    .mandir-location {
      display: flex;
      align-items: center;
      color: #666;
      margin-bottom: 15px;
      font-size: 0.95rem;
    }
    
    .mandir-location i {
      margin-right: 10px;
      color: var(--primary-color);
    }
    
    /* Programs Section - NEW DESIGN */
    .program-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
      position: relative;
    }
    
    .program-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .program-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      z-index: 2;
    }
    
    .program-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .program-card:hover .program-img {
      transform: scale(1.05);
    }
    
    .program-content {
      padding: 25px;
      position: relative;
    }
    
    .program-icon {
      position: absolute;
      top: -25px;
      right: 25px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
      z-index: 3;
    }
    
    .program-content h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--secondary-color);
      padding-right: 60px;
    }
    
    .program-content p {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    
    .program-stats {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }
    
    .program-stat {
      text-align: center;
      flex: 1;
    }
    
    .program-stat strong {
      display: block;
      font-size: 1.2rem;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    
    .program-stat span {
      font-size: 0.8rem;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary-color), #1a252f);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
    }
    
    .cta-section::before {
      content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=5') center/cover;
  opacity: 0.05;
    }
    
    .cta-section h2 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 20px;
      position: relative;
    }
    
    .cta-section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px;
      opacity: 0.9;
      position: relative;
    }
    
    .cta-buttons .btn {
      margin: 0 15px;
      padding: 15px 35px;
      font-weight: 600;
      font-size: 1.1rem;
      position: relative;
      z-index: 1;
    }
    
    .btn-cta-primary {
      background: white;
      color: var(--primary-color);
    }
    
    .btn-cta-primary:hover {
      background: #f8f9fa;
      color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .btn-cta-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    
    .btn-cta-outline:hover {
      background: white;
      color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Blogs Section */
    .blogs-section {
      background: #f8f9fa;
      padding: 80px 0;
    }

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

    .section-header h2 {
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 2px;
    }

    .section-header p {
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Animations */
    @keyframes moveBackground {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(20px, 20px);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200px 0;
      }
      100% {
        background-position: 200px 0;
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 1199.98px) {
      .header-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 991.98px) {
      .header-title {
        font-size: 2rem;
      }
      
      .main-content {
        padding: 25px;
      }
      
      .hero-section h1 {
        font-size: 2.5rem;
      }
      
      .cta-section h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 767.98px) {
      .header-title {
        font-size: 1.8rem;
      }
      
      .tagline {
        font-size: 1rem;
      }
      
      .hero-section {
        padding: 80px 0;
      }
      
      .hero-section h1 {
        font-size: 2rem;
      }
      
      .hero-section p {
        font-size: 1rem;
      }
      
      .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
      }
      
      .blog-card {
        margin-bottom: 20px;
      }
      
      .cta-section {
        padding: 80px 0;
      }
      
      .cta-section h2 {
        font-size: 1.8rem;
      }
      
      .cta-buttons .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
      }
    }

    @media (max-width: 575.98px) {
      .header img {
        max-height: 80px;
        width: 80px;
        margin: 0.5rem;
      }
      
      .header-title {
        font-size: 1.6rem;
      }
      
      .main-content {
        padding: 20px;
      }
      
      .cta-section h2 {
        font-size: 1.6rem;
      }
    }

    /* Mobile Sidebar */
    .offcanvas-start {
      width: 300px;
      background: white;
      box-shadow: 5px 0 30px rgba(0,0,0,0.1);
    }

    .navbar-custom .navbar-toggler {
      border-color: rgba(44, 62, 80, 0.2);
      padding: 5px 10px;
    }

    .navbar-custom .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%2844, 62, 80, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 1.2em;
      height: 1.2em;
    }

    .offcanvas-title {
      color: var(--primary-color);
      font-weight: 700;
      display: flex;
      align-items: center;
    }

    .offcanvas-title img {
      margin-right: 10px;
    }

    .offcanvas-body .nav-link {
      color: var(--secondary-color);
      padding: 10px 15px;
      margin: 5px 0;
      transition: var(--transition);
      border-radius: 6px;
      font-weight: 500;
    }

    .offcanvas-body .nav-link:hover {
      background-color: rgba(230, 126, 34, 0.1);
      color: var(--primary-dark);
    }

    .offcanvas-body .nav-link.active {
      background-color: rgba(230, 126, 34, 0.1);
      color: var(--primary-dark);
      font-weight: 600;
    }

    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      transition: var(--transition);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-5px);
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    
    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: white;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .loader {
      width: 80px;
      height: 80px;
      border: 8px solid rgba(230, 126, 34, 0.1);
      border-top-color: var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Custom Form Styling */
    .form-floating label {
      color: #666;
      font-weight: 500;
    }
    
    .form-floating>.form-control:focus~label, 
    .form-floating>.form-control:not(:placeholder-shown)~label, 
    .form-floating>.form-select~label {
      color: var(--primary-color);
    }

    /* Modal Enhancements */
    .modal-header {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: white;
      border-bottom: none;
      padding: 20px 25px;
    }
    
    .modal-title {
      font-weight: 700;
    }
    
    .modal-footer {
      border-top: none;
      padding: 20px;
    }
    
    /* Login Tabs */
    .login-tabs .nav-link {
      color: var(--secondary-color);
      font-weight: 600;
      border: none;
      padding: 12px 25px;
      transition: var(--transition);
    }
    
    .login-tabs .nav-link.active {
      color: var(--primary-color);
      background: transparent;
      border-bottom: 3px solid var(--primary-color);
    }
    
    /* Social Login Buttons */
    .social-login {
      margin-top: 25px;
    }
    
    .social-login .btn {
      width: 100%;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      border-radius: 6px;
      font-weight: 600;
      transition: var(--transition);
    }
    
    .social-login .btn i {
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    .btn-google {
      background-color: #db4437;
      color: white;
      box-shadow: 0 5px 15px rgba(219, 68, 55, 0.3);
    }
    
    .btn-google:hover {
      background-color: #c23321;
      color: white;
      box-shadow: 0 8px 20px rgba(219, 68, 55, 0.4);
      transform: translateY(-3px);
    }
    
    .btn-facebook {
      background-color: #4267B2;
      color: white;
      box-shadow: 0 5px 15px rgba(66, 103, 178, 0.3);
    }
    
    .btn-facebook:hover {
      background-color: #355089;
      color: white;
      box-shadow: 0 8px 20px rgba(66, 103, 178, 0.4);
      transform: translateY(-3px);
    }

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
              url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
  padding: 100px 0 60px;
  color: white;
  position: relative;
  margin-top: -1px;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: white;
  opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--gold-light);
}
    

/* Responsive Design for About Page */
@media (max-width: 991.98px) {
  .banner-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-banner {
    padding: 80px 0 50px;
  }
  
  .banner-title {
    font-size: 2rem;
  }
  
}




.page-title {
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 2px;
}



    

