

/* Video Banner Section */
.video-banner-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
/* Container to prevent layout jumping */
.sanskrit-container {
    min-height: 50px; /* Reserves space so buttons don't jump */
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Text Style */
.fade-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffa500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    
    /* CRITICAL FIX: Transforms only work on block/inline-block */
    display: inline-block !important; 
    
    /* The Transition Setup */
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out !important;
}

/* The 'Hidden' State */
.fade-text.hide-text {
    opacity: 0;
    transform: translateY(10px); /* Slides down slightly */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .fade-text {
        font-size: 1.4rem;
    }
}

/* Floating Navigation Bar */
.main-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 35px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.navbar-brand {
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  /* Keep original colors - no filter applied */
}

.main-navbar.scrolled .logo {
  /* Keep original colors when scrolled */
}

.navbar-nav {
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0 !important;
  position: relative;
}

.main-navbar.scrolled .nav-link {
  color: #666 !important;
}

.nav-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.main-navbar.scrolled .nav-link:hover {
  color: #333 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.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%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar.scrolled .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%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Video Content */
.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 80px;
}

.video-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-content p {
  font-size: 2.0rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.video-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: white;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top-btn.scroll-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: white;
}

.scroll-top-svg {
  width: 20px;
  height: 20px;
}

/* Demo Content */
.demo-content {
  height: 200vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .main-navbar {
    border-radius: 20px;
    margin: 1px;
    padding: 15px 20px;
    width: calc(100% - 20px);
  }

  .navbar-nav {
    gap: 15px;
    margin-top: 20px;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .video-content h1 {
    font-size: 2.5rem;
  }

  .video-content p {
    font-size: 1.1rem;
  }

  .logo {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .video-content h1 {
    font-size: 2rem;
  }

  .video-content p {
    font-size: 1rem;
  }

  .video-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .logo {
    height: 30px;
  }
}

/*NAV BAR END*/

/* Footer Styles Start */
.main-footer {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
  color: #f5f5f5;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ffa500, #ff6b6b);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-section h5 {
  color: #ffa500;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d4d4d4;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffa500;
  transform: translateX(5px);
}

.contact-info {
  color: #d4d4d4;
  line-height: 1.8;
}

.contact-info i {
  color: #ffa500;
  margin-right: 10px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 50%;
  color: #ffa500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffa500;
  color: #1a0f0a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}



.footer-bottom {
  border-top: 1px solid rgba(255, 165, 0, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #b0b0b0;
}

.footer-logo {
  height: 35px;
  margin-bottom: 15px;
}

.spiritual-quote {
  font-style: italic;
  color: #ffa500;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .social-links {
    justify-content: center;
  }
}

.demo-content {
  height: 200vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}


@media (max-width: 768px) {
  .video-content h1 {
    font-size: 2rem;
  }

  .video-content p {
    font-size: 1rem;
  }

  .video-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .logo {
    height: 30px;
  }
}

/* Footer Styles End*/
/* ==== about us start ==== */

.about-us-section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/*3.1 ==== Container & Layout ==== */
.about-us-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-us-col-left,
.about-us-col-right {
  width: 100%;
  max-width: 50%;
  padding: 20px;
}

/*3.2==== Section Title ==== */
.about-us-title-wrapper .about-us-subtitle {
  font-size: 16px;
  color: #ff5e14;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-us-title-wrapper .about-us-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
  /* Added based on the original HTML's section-title text-left class */
}

/*3.3==== Paragraph ==== */
.about-us-section p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/*3.4 ==== Image Styling ==== */
.about-us-image-wrapper-outer {
  position: relative;
  margin-right: 30px;
  /* Corresponds to mr-lg-30 */
}

.about-us-dots-wrapper {
  position: relative;
}

.about-us-dots-wrapper img {
  width: 100%;
  border: 10px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-us-dots.about-us-dots-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px dashed #eee;
  z-index: -1;
}

/*3.5 ==== Responsive ==== */
@media screen and (max-width: 768px) {

  .about-us-col-left,
  .about-us-col-right {
    max-width: 100%;
  }

  .about-us-title-wrapper .about-us-title {
    font-size: 24px;
  }

  .about-us-image-wrapper-outer {
    margin-right: 0;
    /* Remove margin on smaller screens */
  }
}

/* ==== About Us Section End ==== */
.divine-services {
  padding: 5rem 1rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.divine-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('ASSETS/IMAGES/mandala-pattern.png') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.sacred-symbol {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #b78d65;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  color: #ff5e14;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: poppins, sans-serif;
}

.section-description {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background-color: #b78d65;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background-color: #b78d65;
  border-radius: 50%;
  margin: 0 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-icon img {
  transform: scale(1.05);
}

.icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(183, 141, 101, 0.2), rgba(0, 0, 0, 0.5));
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sacred-link {
  color: #b78d65;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.sacred-link:hover {
  color: #8a6a4b;
}

.link-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.sacred-link:hover .link-arrow {
  transform: translateX(3px);
}

/*about us end*/

/*homas section start*/



.homam-categories-hub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.title {
  text-align: center;
  margin-bottom: 3rem;
  color: #ff5e14;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: poppins, sans-serif;
}

.title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

/* Desktop Layout - Hub Circle */
.hub-desktop {
  display: block;
  position: relative;
  width: 800px;
  height: 800px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 70%, transparent 70%);
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  z-index: 10;
  animation: centerPulse 4s ease-in-out infinite;
}

.hub-center::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 3px solid var(--bs-warning-border-subtle);
  border-radius: 50%;
  border-top-color: var(--bs-orange);
  animation: spin 15s linear infinite;
}

.logo-symbol {
  font-size: 4rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.hub-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 20px 25px;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.hub-item::before {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to center, #ff6b35, rgba(255, 107, 53, 0.3));
  border-radius: 2px;
  z-index: -1;
}

.hub-item a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  transition: all 0.3s ease;
}

.hub-item:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.hub-item:hover a {
  color: white;
}

/* Positioning items around the circle */
.item1 {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.item1::before {
  height: 150px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.item2 {
  top: 150px;
  right: 80px;
}

.item2::before {
  height: 120px;
  top: 80%;
  right: 60%;
  transform: rotate(-30deg);
}

.item3 {
  top: 350px;
  right: 20px;
}

.item3::before {
  height: 100px;
  top: 50%;
  right: 100%;
  transform: translateY(-50%) rotate(-90deg);
}

.item4 {
  bottom: 150px;
  right: 80px;
}

.item4::before {
  height: 120px;
  bottom: 80%;
  right: 60%;
  transform: rotate(30deg);
}

.item5 {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.item5::before {
  height: 150px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.item6 {
  bottom: 150px;
  left: 80px;
}

.item6::before {
  height: 120px;
  bottom: 80%;
  left: 60%;
  transform: rotate(-30deg);
}

.item7 {
  top: 350px;
  left: 20px;
}

.item7::before {
  height: 100px;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) rotate(90deg);
}

.item8 {
  top: 150px;
  left: 80px;
}

.item8::before {
  height: 120px;
  top: 80%;
  left: 60%;
  transform: rotate(30deg);
}

/* Mobile Layout - Completely Different UI */
.hub-mobile {
  display: none;
}

.mobile-header {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.mobile-subtitle {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.mobile-card:hover::before {
  left: 100%;
}

.mobile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.mobile-card:hover a {
  color: white;
}

.mobile-card a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

@keyframes centerPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .hub-desktop {
    width: 600px;
    height: 600px;
  }

  .hub-center {
    width: 140px;
    height: 140px;
  }

  .logo-symbol {
    font-size: 3rem;
  }

  .hub-item {
    padding: 15px 20px;
    min-width: 120px;
  }

  .title {
    font-size: 2.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hub-desktop {
    display: none;
  }

  .hub-mobile {
    display: block;
  }

  .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mobile-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .homam-categories-hub {
    padding: 1rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .mobile-header {
    padding: 1.5rem;
  }

  .mobile-logo {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .mobile-card {
    padding: 1.5rem 1rem;
  }

  .mobile-card a {
    font-size: 0.9rem;
  }
}


/*homas section end*/


/* Gallery start */


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Gallery Section */
        .gc-gallery-section {
            padding: 40px 15px;
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .gc-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Heading Styles */
        .gc-gallery-heading {
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
            margin-bottom: 30px;
        }

        .gc-gallery-heading.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .gc-gallery-subtitle {
            font-size: clamp(12px, 2.5vw, 14px);
            font-weight: 600;
            letter-spacing: 1px;
            color: #000;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .gc-gallery-subtitle .gc-om-symbol {
            color: #ff6600;
            margin-right: 5px;
            font-weight: bold;
            font-size: 1.2em;
        }

        .gc-gallery-title {
            font-size: clamp(24px, 6vw, 42px);
            font-weight: 800;
            color: #000;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .gc-gallery-underline {
            width: 60px;
            height: 2px;
            background-color: #ff6600;
            margin: 15px auto 0;
            transition: width 0.5s ease;
        }

        .gc-gallery-heading:hover .gc-gallery-underline {
            width: 100px;
        }

        /* Carousel Styles */
        .gc-carousel {
            width: 100%;
            position: relative;
            perspective: 1000px;
            overflow: hidden;
        }

        .gc-carousel input {
            display: none;
        }

        .gc-cards {
            height: clamp(300px, 50vh, 500px);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 25px;
            padding: 0 10px;
        }

        .gc-card {
            width: clamp(280px, 85%, 600px);
            height: clamp(250px, 75%, 400px);
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
        }

        .gc-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gc-card:hover img {
            transform: scale(1.05);
        }

        /* Active Card Styles */
        #gc-slide1:checked ~ .gc-cards #gc-card1,
        #gc-slide2:checked ~ .gc-cards #gc-card2,
        #gc-slide3:checked ~ .gc-cards #gc-card3,
        #gc-slide4:checked ~ .gc-cards #gc-card4,
        #gc-slide5:checked ~ .gc-cards #gc-card5,
        #gc-slide6:checked ~ .gc-cards #gc-card6 {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
        }

        /* Next Cards */
        #gc-slide1:checked ~ .gc-cards #gc-card2,
        #gc-slide2:checked ~ .gc-cards #gc-card3,
        #gc-slide3:checked ~ .gc-cards #gc-card4,
        #gc-slide4:checked ~ .gc-cards #gc-card5,
        #gc-slide5:checked ~ .gc-cards #gc-card6,
        #gc-slide6:checked ~ .gc-cards #gc-card1 {
            opacity: 0.6;
            transform: scale(0.85) translateX(40%);
            z-index: 2;
        }

        /* Previous Cards */
        #gc-slide1:checked ~ .gc-cards #gc-card6,
        #gc-slide2:checked ~ .gc-cards #gc-card1,
        #gc-slide3:checked ~ .gc-cards #gc-card2,
        #gc-slide4:checked ~ .gc-cards #gc-card3,
        #gc-slide5:checked ~ .gc-cards #gc-card4,
        #gc-slide6:checked ~ .gc-cards #gc-card5 {
            opacity: 0.6;
            transform: scale(0.85) translateX(-40%);
            z-index: 2;
        }

        /* Navigation Dots */
        .gc-navigation {
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .gc-nav-dot {
            cursor: pointer;
            width: 12px;
            height: 12px;
            background: #cd1818;
            border-radius: 50%;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .gc-nav-dot.active,
        .gc-nav-dot:hover {
            background: #e65c00;
            transform: scale(1.2);
            opacity: 1;
        }

        /* Button Styles */
        .gc-readmore-wrapper {
            text-align: center;
        }

        .gc-btn-readmore {
            background: linear-gradient(45deg, #cd1818, #e65c00);
            color: #fff;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(14px, 2.5vw, 16px);
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(205, 24, 24, 0.3);
        }

        .gc-btn-readmore:hover {
            background: linear-gradient(45deg, #e65c00, #ff7700);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(205, 24, 24, 0.4);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .gc-gallery-section {
                padding: 30px 10px;
            }

            .gc-cards {
                height: clamp(250px, 40vh, 350px);
                padding: 0 5px;
            }

            .gc-card {
                width: clamp(260px, 90%, 350px);
                height: clamp(200px, 70%, 280px);
                border-radius: 10px;
            }

            /* Hide side cards on mobile for better performance */
            .gc-card:not(.active-card) {
                display: none;
            }

            #gc-slide1:checked ~ .gc-cards #gc-card1,
            #gc-slide2:checked ~ .gc-cards #gc-card2,
            #gc-slide3:checked ~ .gc-cards #gc-card3,
            #gc-slide4:checked ~ .gc-cards #gc-card4,
            #gc-slide5:checked ~ .gc-cards #gc-card5,
            #gc-slide6:checked ~ .gc-cards #gc-card6 {
                display: block;
                opacity: 1;
                transform: scale(1);
            }

            .gc-nav-dot {
                width: 10px;
                height: 10px;
            }

            .gc-gallery-heading {
                margin-bottom: 20px;
            }

            .gc-navigation {
                margin-bottom: 25px;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .gc-gallery-section {
                padding: 20px 8px;
            }

            .gc-cards {
                height: clamp(200px, 35vh, 280px);
            }

            .gc-card {
                width: clamp(240px, 95%, 300px);
                height: clamp(180px, 65%, 230px);
            }

            .gc-nav-dot {
                width: 8px;
                height: 8px;
            }

            .gc-navigation {
                gap: 6px;
            }
        }

        /* Touch indicators */
        @media (hover: none) {
            .gc-card::after {
                content: '👆 Tap to view';
                position: absolute;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 4px 8px;
                border-radius: 12px;
                font-size: 12px;
                opacity: 0;
                animation: fadeInOut 3s ease-in-out infinite;
            }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        /* Loading animation */
        .gc-card img {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 2s infinite;
        }

        .gc-card img[src] {
            animation: none;
            background: none;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

  /* Gallery end */
/* Poojas Section Start */
.poojas-section {
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fcfcfc; /* Subtle background difference */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #8e2323; /* Dark Red/Maroon for header */
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #ff6600;
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

/* Grid Layout */
.poojas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 10px;
}

/* Card Styling */
.pooja-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pooja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #ffcc99;
}

/* Image Area */
.pooja-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pooja-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pooja-card:hover .pooja-image {
    transform: scale(1.1);
}

/* Overlay gradient on image */
.pooja-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Content Area */
.pooja-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pooja-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.pooja-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

/* Button */
.read-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: #ff6600;
    text-decoration: none;
    border: 2px solid #ff6600;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #ff6600;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

/* Read More Wrapper (Bottom of Section) */
.readmore-wrapper {
    padding-top: 50px;
    text-align: center;
}

.gc-btn-readmore {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: transform 0.3s ease;
}

.gc-btn-readmore:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .poojas-container {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        padding: 0;
    }

    .pooja-img-wrapper {
        height: 200px;
    }
}
/* Poojas Section End */
    /* Trustee Section Start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.heass {
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

/* Keep the grainy texture background */
.heass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 30px);
    position: relative;
    z-index: 1;
}

/* Titles */
.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(218, 84, 0, 0.9);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.subtitle span {
    display: inline-block;
    width: clamp(30px, 8vw, 50px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0 15px;
    animation: shimmer 2s ease-in-out infinite;
}

.title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: #ff5e14;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Grid Layout */
.trustees-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(30px, 5vw, 50px);
}

/* Card Styling (Text Box Only) */
.trustee-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px; /* Added padding for better text spacing */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease forwards;
    
    /* Center content vertically and horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px; /* Ensure all boxes are same minimum height */
    border-top: 4px solid #ff6600; /* Nice orange accent on top */
}

/* Staggered Animation Delays */
.trustee-card:nth-child(1) { animation-delay: 0.1s; }
.trustee-card:nth-child(2) { animation-delay: 0.2s; }
.trustee-card:nth-child(3) { animation-delay: 0.3s; }
.trustee-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects */
.trustee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #ff6600; /* Card turns orange on hover */
}

.trustee-card:hover .trustee-info h5,
.trustee-card:hover .trustee-info p {
    color: white; /* Text turns white on hover */
}

/* Text Styling */
.trustee-info {
    text-align: center;
    width: 100%;
}

.trustee-info h5 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #333; /* Dark text by default */
    transition: color 0.3s ease;
}

.trustee-info p {
    color: #ff6600; /* Orange text for title by default */
    font-size: clamp(13px, 2.5vw, 14px);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .trustees-slider {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
    }
}

@media (max-width: 480px) {
    .trustees-slider {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 20px;
    }

    .trustee-card {
        min-height: auto; /* Allow auto height on mobile */
        padding: 30px 20px;
    }
    
    .subtitle span {
        width: 25px;
        margin: 0 10px;
    }
}
    /* Loading state */
    .trustee-img.loading {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 2s infinite;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    /* Hover effects for better interactivity */
    .trustee-card {
        cursor: pointer;
    }

    .trustee-card:active {
        transform: translateY(-10px) scale(0.98);
    }


        /*truste section end*/


    /*cotact us section start*/
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .contact-container {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
            margin: 20px 10px;
        }

        /* Left Side - Contact Info */
        .contact-left {
            background: linear-gradient(135deg, #ff6600 0%, #e65c00 100%);
            padding: 40px;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
        }

        .contact-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }

        .contact-info {
            position: relative;
            z-index: 2;
            max-width: 500px;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 0.8s ease forwards;
            margin: 0 auto;
            width: 100%;
        }

        .contact-info h3 {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            border-radius: 2px;
        }

        .contact-info > p:first-of-type {
            font-size: clamp(14px, 2.5vw, 16px);
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-name {
            display: block;
            font-size: clamp(18px, 3vw, 22px);
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffd700;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            padding-left: 10px;
            border-bottom-color: #ffd700;
        }

        .contact-item i {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 15px;
            color: #ffd700;
            font-size: 12px;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            font-size: clamp(14px, 2.5vw, 16px);
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #ffd700;
        }

        .contact-item address {
            font-style: normal;
            line-height: 1.5;
            font-size: clamp(14px, 2.5vw, 16px);
        }

        /* Right Side - Contact Form */
        .contact-right {
            background: #f8f9fa;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .contact-right::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(230, 92, 0, 0.1));
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .form-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 0.8s ease forwards;
            animation-delay: 0.2s;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff6600, #e65c00);
            border-radius: 2px;
        }

        #contactForm {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            margin: 0 auto;
            width: 100%;
            max-width: 500px;
        }

        .form-fields {
            display: grid;
            gap: 20px;
            margin-bottom: 30px;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6600;
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #9ca3af;
            transition: opacity 0.3s ease;
        }

        .form-group input:focus::placeholder,
        .form-group textarea:focus::placeholder {
            opacity: 0.7;
        }

        .form-messages {
            min-height: 20px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .form-messages.success {
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            border-left: 4px solid #10b981;
        }

        .form-messages.error {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            border-left: 4px solid #ef4444;
        }

        .submit-button {
            background: linear-gradient(135deg, #ff6600, #e65c00);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-button:hover::before {
            left: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        .submit-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading state */
        .submit-button.loading {
            position: relative;
        }

        .submit-button.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Animations */
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-left {
                order: 2;
                padding: 30px;
            }

            .contact-right {
                order: 1;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-left,
            .contact-right {
                padding: 20px;
            }

            .form-fields {
                gap: 15px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px 16px;
                font-size: 16px;
            }

            .submit-button {
                width: 100%;
                padding: 15px 20px;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px 0;
            }

            .contact-item i {
                margin-bottom: 8px;
                margin-right: 0;
            }
        }

        @media (max-width: 480px) {
            .contact-info h3,
            .form-title {
                text-align: center;
            }

            .contact-info h3::after,
            .form-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* High contrast mode */
        @media (prefers-contrast: high) {
            .form-group input,
            .form-group textarea {
                border-width: 3px;
            }

            .submit-button {
                border: 2px solid white;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .contact-right {
                background: #1a1a1a;
                color: #fff;
            }

            .form-title {
                color: #fff;
            }

            .form-group input,
            .form-group textarea {
                background: #2a2a2a;
                border-color: #404040;
                color: #fff;
            }

            .form-group input::placeholder,
            .form-group textarea::placeholder {
                color: #888;
            }
        }
    /*contact us section end*/
   /* =========================================
   NEW ADDITIONS: Marquee & Book Launch
   ========================================= */

/* --- 1. Marquee Section Styles --- */
.marquee-container {
    background: linear-gradient(135deg, #ff6600 0%, #e65c00 100%); /* Matches Contact Section Gradient */
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 999; /* Below navbar, above content */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    padding-left: 100%; /* Start from right */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.marquee-text .highlight {
    margin: 0 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Add a separator dot between items */
.marquee-text .highlight:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -28px;
    color: rgba(255,255,255,0.6);
}

.marquee-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Pause on hover */
.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

/* --- 2. Book Launch Section Styles --- */
.book-launch-wrapper {
    padding: 80px 0;
    background-color: #fdfdfd; /* Very light offset from white */
    overflow: hidden;
}

.description-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

/* Image Styling */
.book-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.img-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Matches Trustee Card shadows */
    transform: rotate(-2deg); /* Slight artistic tilt */
    transition: transform 0.3s ease;
}

.img-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.book-image img {
    max-width: 100%;
    width: 350px; /* Fixed width for consistency */
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Text Content Styling */
.book-details {
    flex: 1.2;
    font-family: 'Poppins', sans-serif;
}

.book-details h2.title {
    margin-bottom: 25px;
    color: #2c3e50; /* Darker heading color */
}

.book-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.book-details strong {
    color: #ff6600; /* Highlight color matches theme */
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .description-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .book-details h2.title,
    .book-details .readmore-wrapper {
        text-align: center !important;
    }
    
    .img-frame {
        transform: rotate(0deg); /* Remove tilt on mobile */
    }
}

@media (max-width: 768px) {
    .marquee-text {
        font-size: 13px;
    }
    
    .book-launch-wrapper {
        padding: 50px 0;
    }

    .book-image img {
        width: 100%;
        max-width: 280px;
    }
}