<style>

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

body{
  font-family:'Noto Sans Devanagari',sans-serif;
  background:#4b0000;
  color:#fff;
  overflow-x:hidden;
}
.corner-notify{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    animation: slideIn .5s ease;
}

.notify-box{
    width: 340px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    overflow: hidden;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

/* IMAGE */
.notify-img{
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT BANNER STYLE (IF NO IMAGE) */
.text-banner{
    background: linear-gradient(135deg,#8b0000,#c62828);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.text-banner h4{
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.text-banner p{
    font-size: 13px;
    margin: 0;
}

/* DATE */
.notify-date{
    padding: 10px 15px;
    font-size: 13px;
    background: #f5f5f5;
    color: #555;
    text-align: center;
}

/* CLOSE BUTTON */
.close-btn{
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    z-index: 2;
}

.notify-box:hover .close-btn{
    color: #ffcccc;
}

/* SLIDE ANIMATION */
@keyframes slideIn{
    from{
        transform: translateX(100%);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}

/* MOBILE RESPONSIVE */
@media(max-width:480px){
    .corner-notify{
        right: 10px;
        bottom: 10px;
    }
    .notify-box{
        width: 90vw;
    }
}
/* ================= OM ANIMATION ================= */
.om-floating {
    position: fixed;
    font-size: 120px;
    color: rgba(255, 180, 0, 0.15);
    pointer-events: none;
    z-index: 1;
    animation: float-up 15s infinite ease-in;
    font-weight: 700;
    letter-spacing: 10px;
}

.om-floating:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 20s; }
.om-floating:nth-child(2) { left: 20%; animation-delay: 5s; animation-duration: 25s; }
.om-floating:nth-child(3) { right: 15%; animation-delay: 10s; animation-duration: 22s; }
.om-floating:nth-child(4) { right: 5%; animation-delay: 15s; animation-duration: 28s; }

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg) scale(1);
    }
}

/* ================= COMMON ANIMATION ================= */
.fade-up {
    opacity:0;
    transform:translateY(40px);
    transition:all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-left {
    opacity:0;
    transform:translateX(-60px);
    transition:all 1s ease;
}

.fade-right {
    opacity:0;
    transform:translateX(60px);
    transition:all 1s ease;
}



/* Pulse Animation */
.pulse {
    animation: pulse-animate 2s infinite;
}

@keyframes pulse-animate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Glow Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.8), 
                 0 0 20px rgba(232, 92, 26, 0.6);
}

/* ================= HERO SECTION CLEAN ================= */

.hero {
    background: url('assest/images/BH.jpg') no-repeat center center;
    background-size: cover;           /* No stretch */
    background-position: center;
    min-height: 92vh;                 /* Desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Remove any overlay */
.hero::before {
    display: none;
}

/* Hero content (if you enable text later) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

/* Responsive */

@media (max-width: 1200px) {
    .hero {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        background-position: center top;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 50vh;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
}

.logo {
    color: #ffb400;
    font-size: 26px;
    font-weight: 700;
    animation: logo-glow 2s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,180,0,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,180,0,0.9), 0 0 30px rgba(232,92,26,0.6); }
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 250px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}


.hero-text {
    max-width: 620px;
   
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    animation: text-glow-in 1.5s ease-out;
}

@keyframes text-glow-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        text-shadow: none;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 20px rgba(255,180,0,0.6);
    }
}

.hero-text p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 12px;
   
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 6px;
    background: #e85c1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: #d73b4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 92, 26, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.hero-img img {
    width: 380px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.7));
}

/* ================= ABOUT ================= */
.about {
    background: linear-gradient(rgba(90,0,0,.85),rgba(90,0,0,.85));
    padding: 80px 0;
    position: relative;
}

.about::before {
    content: '✦';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #ffb400;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.about-top {
    display: flex;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    color: #ffb400;
    margin-bottom: 25px;
    font-size: 32px;
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.5);
    animation: title-shine 3s ease-in-out infinite;
}

@keyframes title-shine {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 180, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 180, 0, 0.8), 0 0 30px rgba(232, 92, 26, 0.4);
    }
}

.about-left p {
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-right {
    width: 300px;
    text-align: center;
}

.about-right img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about-right img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(255,180,0,0.3);
}

.hero-image {
    transition: all 0.4s ease !important;
}

.hero-image:hover {
    transform: scale(1.05);
}

.about-right span {
    display: block;
    margin-top: 10px;
    color: #ffb400;
}

/* ===== ABOUT CONTINUATION ===== */
.about-continue {
    display: flex;
    margin-top: 60px;
}

.about-continue-left {
    flex: 1;
}

.about-continue-left p {
    line-height: 1.9;
    margin-bottom: 22px;
}

.highlight-title {
    color: #ffb400;
    margin: 30px 0 15px;
}

.about-continue-right {
    width: 320px;
}

.info-box {
    margin-bottom: 35px;
}

.info-box h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.info-box a {
    color: #ffd27a;
    text-decoration: none;
    word-break: break-all;
}

.date {
    display: block;
    margin-top: 8px;
    color: #ffb400;
    font-size: 14px;
}

.download-btn {
    display: block;
    padding: 14px;
    margin-bottom: 15px;
    background: #d73b4a;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #e85c1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 92, 26, 0.4);
    animation: bounce-scroll 2s infinite;
}

.scroll-top:hover {
    background: #d73b4a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 92, 26, 0.6);
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px ){
    .hero-content,
    .about-top,
    .about-continue,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .nav {
        padding: 20px;
    }
    .about-right,
    .about-continue-right {
        width: 100%;
    }

}

@media(min-width:1200px ){
    .hero-content{
        height: 92vh !important;
    }
}

@media(max-width:900px) {
    .hero-content,
    .about-top,
    .about-continue,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .nav {
        padding: 20px;
    }
    .about-right,
    .about-continue-right {
        width: 100%;
    }
}

@media(max-width:576px) {
    .hero-content {
        gap: 10px;
        padding: 40px 20px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-text p {
        font-size: 14px;
    }
    .about-container {
        padding: 0 10px;
    }
    .about-left h2 {
        font-size: 22px;
    }
    .btn {
        width: 40%;
        text-align: center;

    }
    .about-right img {
    width: 30%;
    border-radius: 30px;
}

}
.about-continue-left {
    margin-top: 60px;
}

.about-continue-left .row {
    display: flex;
    justify-content: space-between; /* Ensures the images have space between them */
}

.about-continue-left img {
    width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-continue-left img:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(255,180,0,0.4));
}

@media (max-width: 576px) {
    .about-continue-left .row {
        gap: 10px; /* Adds gap between the two images for mobile view */
    }
}


/* ================= COMMON CARD STYLE ================= */
.card{
  border:0;
  border-radius:16px;
  transition:.4s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card-header{
  background:linear-gradient(135deg,#a40000,#d00000);
  color:#fff;
  font-weight:600;
  font-size:18px;
  border-radius:16px 16px 0 0 !important;
}

/* ================= SECTION TITLE ================= */
.section-title{
  text-align:center;
  margin:40px 0 20px;
}

.section-title h2{
  font-weight:700;
  color:#ffb400;
}

/* ================= AARTI ================= */
.aarti-list{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.aarti-card{
  background:#fff;
  border-radius:12px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s ease;
}

.aarti-card:hover{
  transform:scale(1.02);
  background:rgba(255,255,255,.9);
}

.aarti-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  flex:0 0 52px;
}

.aarti-sun{background:linear-gradient(135deg,#ffb400,#f07a2f);}
.aarti-moon{background:linear-gradient(135deg,#7aa7ff,#5b8cff);}

.aarti-label{font-size:14px;color:#666;}
.aarti-time{font-size:20px;color:#4b0000;font-weight:700;}

/* ================= PANCHANG TABLE ================= */
.panchang-table th{
  background:#fff3f3;
  color:#a40000;
  font-weight:600;
}

.panchang-table td{
  padding:10px;
  vertical-align:middle;
  white-space:nowrap;
  transition:.3s;
}

.panchang-table tbody tr:hover{
  background:rgba(164,0,0,.08);
  transform:scale(1.01);
}

.panchang-table tbody tr td:first-child{
  font-weight:600;
  color:#a40000;
}

/* ================= OM FLOAT ================= */
.om-floating{
  position:fixed;
  font-size:120px;
  color:rgba(255,180,0,.15);
  pointer-events:none;
  z-index:1;
  animation:float-up 20s infinite ease-in;
  font-weight:700;
}

@keyframes float-up{
  0%{opacity:0;transform:translateY(100vh) rotate(0) scale(.8);}
  20%{opacity:.15;}
  80%{opacity:.1;}
  100%{opacity:0;transform:translateY(-100vh) rotate(360deg) scale(1);}
}

/* ================= HERO ================= */
.hero{
  background:url('assest/images/BH.jpg') no-repeat center/cover;
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .aarti-icon{width:44px;height:44px;font-size:18px;}
  .aarti-time{font-size:18px;}
}

@media(max-width:576px){
  .hero{min-height:55vh;}
  .section-title h2{font-size:22px;}
}

</style>
