.daily-hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding:120px 0 80px; 
    background: url("/assets/images/star.png") center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(3,7,30,0.22),rgba(3,7,30,1));
}

.daily-hero .container{
    position:relative;
    z-index:1;
}

.hero-logo i {
    font-size: 45px;
    color: #ffd86b;
}
.hero-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-text {
    font-size: 18px;
    opacity: 0.85;
}
.hero-clock {
    margin-top: 40px;
}
#localTime {
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
}
#localDate {
    margin-top: 15px;
    font-size: 18px;
}
.hero-clock span {
    display: block;
    margin-top: 12px;
    opacity: 0.8;
}
/* SEARCH CARD */
.search-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 30px;
}
.search-card label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}
.search-card .form-select {
    height: 58px;
    border-radius: 16px;
    border: none;
}
.search-card .btn {
    background-color: #198754;
    height: 58px;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: none;
    border: none;
    transition: none;
}

.search-card .btn:hover,
.search-card .btn:focus,
.search-card .btn:active {
    box-shadow: none;
    transform: translate(0px, 1px);
}
/* RESULT SECTION */
.prayer-result {
    padding: 70px 0;
    background: #f5f7fb;
}
.result-wrapper {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.result-header {
    position: relative;
    padding: 45px;
    color: white;
    background: url("/assets/images/star.png") center/cover no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 30, 0.6);
}
.result-header > div {
    position: relative;
    z-index: 1;
}
.result-header span {
    opacity: 0.75;
}
.result-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
}
.zone-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
}
.result-body {
    padding: 40px;
}
/* PRAYER CARD */
.prayer-card {
    height: 100%;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid #edf0f3;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    transition: 0.3s;
}
.prayer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.prayer-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.prayer-name {
    color: #6c757d;
    font-size: 15px;
}
.prayer-time {
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
}

.active-prayer {

    border:2px solid #198754 !important;

    animation: prayerPulse 1.5s infinite;

}


@keyframes prayerPulse {

    0% {
        box-shadow:0 0 0 rgba(25,135,84,0);
    }


    50% {

        box-shadow:
        0 0 30px rgba(25,135,84,.6);

        transform:translateY(-5px);

    }


    100% {

        box-shadow:
        0 0 0 rgba(25,135,84,0);

    }

}

/* MOBILE */
@media (max-width: 992px) {
    .daily-hero {
        padding-top: 150px;
    }
    .hero-title {
        font-size: 42px;
    }
    #localTime {
        font-size: 60px;
    }
    .result-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .daily-hero {
        min-height: 600px;
        padding-top: 110px;
        padding-bottom: 80px;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    .hero-text {
        font-size: 15px;
    }
    #localTime {
        font-size: 45px;
    }
    #localDate {
        font-size: 15px;
    }
    .search-card {
        padding: 22px;
        border-radius: 22px;
    }
    .search-card .btn {
        width: 100%;
    }
    .result-header {
        padding: 30px 20px;
    }
    .result-header h2 {
        font-size: 28px;
    }
    .result-body {
        padding: 20px;
    }
    .prayer-card {
        padding: 20px;
    }
    .prayer-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .prayer-time {
        font-size: 24px;
    }
}

