.elementor-20057 .elementor-element.elementor-element-b6ef1f4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-efcc382 *//* Hero Section */
.hero-section1 {
  background-image: url('https://images.unsplash.com/photo-1523987355523-c7b5b1b4db00?auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  text-align: center;
  position: relative;
}

.hero-section1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #fffbe6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); /* stronger glow for better contrast */
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffe9a7;
}

.hero-content p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #fff0cc;
}

.hero-content .english {
  font-size: 1rem;
  font-style: italic;
  color: #ffedc2;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .hero-section1 {
    height: 60vh; /* Reduced height for mobile */
    padding-top: 10px; /* Adjust padding */
    align-items: center; /* Center the content on smaller screens */
  }

  .hero-content h1 {
    font-size: 2rem; /* Smaller font size for h1 */
  }

  .hero-content p {
    font-size: 1rem; /* Smaller font size for paragraph */
  }

  .hero-content .english {
    font-size: 0.9rem; /* Smaller font size for English */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-25ee05a */<style>
  /* === Background Animation === */
  @keyframes float-bg {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
  }

  /* === Parallax Background === */
  .parallax-bg {
    background-image: url('your-image.jpg'); /* Replace with actual image URL */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    animation: float-bg 30s linear infinite;
  }

  /* === Deity Section Styling === */
  .deity-section {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
    text-align: center;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fffbe6;
    transition: all 0.4s ease;
  }

  .deity-section h2 {
    color: #ffe066;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }

  .deity-section p {
    color: #fdfdfd;
  }

  .deity-section .english {
    color: #dcdcdc;
    font-style: italic;
  }

  /* === Hover Effects === */
  .deity-section:hover {
    box-shadow: 0 0 25px 5px rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .deity-section:hover img {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    transform: scale(1.05);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  /* === Divider Animation === */
  .divider {
    width: 60%;
    height: 2px;
    margin: 30px auto;
    background: linear-gradient(to right, transparent, #e67e22, transparent);
    animation: pulse-divider 2s infinite ease-in-out;
  }

  @keyframes pulse-divider {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }

  /* === Responsive Design === */
  @media (max-width: 600px) {
    .deity-section {
      padding: 25px 15px;
    }

    .deity-section img {
      max-width: 130px;
    }

    .deity-section h2 {
      font-size: 1.4rem;
    }

    .deity-section p {
      font-size: 1rem;
    }
  }
</style>/* End custom CSS */