body {
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    background: rgba(0,0,0,0.6);
}

/* HERO */
.hero {
    height: 85vh;
    background: url('../../images/BG.jpg') center/cover no-repeat;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

.btn-custom {
    padding: 12px 28px;
    border-radius: 30px;
}

.section {
    padding: 80px 0;
}

/* container */
.celebration-box {
    height: 300px;
    overflow: hidden;
    position: relative;
}

/* scroll area */
.scroll-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}


/* each item */
.item {
    padding: 10px;
    margin: 5px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

@keyframes fadeScroll {
    0%   { transform: translateY(0); opacity: 1; }
    50%  { opacity: 0.6; }
    100% { transform: translateY(-50%); opacity: 1; }
}

.scroll-content {
    display: flex;
    flex-direction: column;
    animation: fadeScroll 12s linear infinite;
}

.scroll-container {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    animation: scrollUp 20s linear infinite;
}

.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}

.celebration-item {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    font-weight: 500;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .celebration-box {
        height: auto;
    }

    .scroll-box {
        height: 180px;
    }
}

.scroll-box:hover .scroll-content {
    animation-play-state: paused;
    cursor: pointer;
}

.verse-scroll {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.verse-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollVerse 25s linear infinite;
}

@keyframes scrollVerse {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.verse-scroll:hover .verse-text {
    animation-play-state: paused;
}

.prayer-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #198754;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.prayer-btn:hover {
    background: #146c43;
    transform: scale(1.05);
}

body.dark-mode {
    background: #121212;
    color: #fff;
}

body.dark-mode .bg-light {
    background: #1e1e1e !important;
}

body.dark-mode .card {
    background: #2a2a2a;
    color: white;
}

.whatsapp-float {

    position: fixed;
    width: 60px;
    height: 60px;

    bottom: 20px;
    right: 20px;

    background: #25D366;
    color: white;

    border-radius: 50%;
    text-align: center;

    font-size: 28px;
    line-height: 60px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    z-index: 999;

    text-decoration: none;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.mag-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
    transition: 0.3s;
}

.mag-card:hover {
    transform: translateY(-5px);
}

.mag-img {
    height: 220px;
    object-fit: cover;
}
.profile-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    background:#fff;
}
.profile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.profile-img-wrapper{
    padding-top:30px;
    text-align:center;
    background:linear-gradient(135deg,#ffffff,#f2f4f8);
}
.profile-img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}
.profile-body{
    padding:25px;
    text-align:center;
}

.profile-name{
    font-size:1.3rem;
    font-weight:700;
    color:#212529;
    margin-bottom:8px;
}

.profile-qualification{
    font-size:.95rem;
    color:#6c757d;
    margin-bottom:12px;
}

.profile-designation{
    background:linear-gradient(135deg,#7b1e1e,#a52a2a);
    color:#fff;
    padding:12px;
    font-weight:500;
    border-radius:12px;
}

.section-title{
    font-weight:700;
    color:#343a40;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,.7);
    }
    70% {
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}