 .pro-footer {
    background: #05070d;
    padding: 30px 15px;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.footer-left h2 {
    color: #67ee49;
    margin-bottom: 8px;
}

.footer-buttons {
    margin-top: 12px;
}

.btn {
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 8px;
    font-size: 14px;
    display: inline-block;
}

.btn-primary {
    background: #5a6cff;
    color: white;
}

.btn-success {
    background: #1ecb6b;
    color: white;
}

/* CENTER CLOCK */
.footer-center {
    text-align: center;
}

#clock-box {
    padding: 18px 25px;
    border-radius: 14px;
    border: 1px solid rgba(103, 238, 73, 0.4);
    box-shadow: 0 0 15px rgba(103, 238, 73, 0.2);
    transition: 0.3s;
}

#time {
    font-size: 26px;
    color: #67ee49;
    font-weight: bold;
    letter-spacing: 2px;
}

.date-row {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 13px;
}

#date-left {
    color: #ffffff;
}

#date-right {
    color: #00ffd5;
}

/* RIGHT */
.footer-right {
    text-align: right;
}

.footer-links a {
    display: inline-block;
    margin: 4px 8px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.social-links {
    margin-top: 8px;
}

.social-links a {
    display: inline-block;
    margin: 4px 6px;
    color: #fff;
    text-decoration: none;
}

.welcome-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 20px;
    background: linear-gradient(45deg, #5a6cff, #00c3ff);
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
        margin-top: 20px;
    }

    .footer-left {
        margin-bottom: 20px;
    }
}
/*=============== sura==================*/
.surah-container{
    max-width:900px;
    margin:auto;
    padding:20px;
    color:#fff;
    font-family:'Segoe UI',sans-serif;
}

.surah-card{
    background:#160279;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.surah-title{
    font-size:20px;
    color:#67ee49;
    margin-bottom:10px;
}

.arabic{
    font-size:22px;
    text-align:right;
    line-height:1.8;
    margin-bottom:10px;
}

.transliteration{
    font-size:15px;
    color:#ccc;
    margin-bottom:10px;
}

.translation{
    font-size:15px;
    color:#f1f1f1;
    margin-bottom:15px;
}

audio{
    width:100%;
    outline:none;
}
/*================= repit=====================*/ 
.btn{
    padding:6px 14px;
    border:none;
    border-radius:20px;
    font-size:13px;
    cursor:pointer;
    transition:0.3s;
    opacity:0.6;
}

/* Default OFF */
.repeat-one{
    background:#1ecb6b;
    color:white;
}

.repeat-all{
    background:#5a6cff;
    color:white;
}

/* ACTIVE ON */
.btn.active{
    opacity:1;
    transform:scale(1.08);
    box-shadow:0 0 12px #00ffd5;
}

/* Extra highlight */
.repeat-one.active{
    background:#00ff95;
}

.repeat-all.active{
    background:#00c3ff;
}