*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#f6f6f6;
    color:#333;
    line-height:1.6;

}

header{

    position:absolute;
    width:100%;
    top:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 60px;

    z-index:10;

}

.logo h1{

    color:#fff;
    font-size:34px;

}

.logo span{

    color:#FFD700;
    font-size:16px;

}

.login-btn{

    background:#FFD700;
    color:#0B6E4F;

    text-decoration:none;

    padding:14px 28px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;

}

.login-btn:hover{

    background:white;

}

.tajweed{

    height:100vh;

    background:url("../images/tajweed.jpg") center center/cover no-repeat;

    position:relative;

}

.overlay{

    width:100%;
    height:100%;

    background:rgba(0,60,40,.70);

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;

    padding:20px;

}

.overlay h2{

    color:white;

    font-size:56px;

    margin-bottom:20px;

}

.overlay p{

    color:white;

    max-width:800px;

    font-size:20px;

    margin-bottom:40px;

}

.tajweed-btn{

    background:#FFD700;

    color:#0B6E4F;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.tajweed-btn:hover{

    background:white;

}

.about{

    padding:90px 12%;
    text-align:center;

}

.about h2{

    color:#0B6E4F;

    margin-bottom:25px;

    font-size:38px;

}

.about p{

    max-width:900px;

    margin:auto;

    font-size:18px;

}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    padding:80px 10%;

    background:#eef5f1;

}

.card{

    display:block;
    text-decoration:none;
    color:#333;

    background:white;

    padding:35px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.1);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);
    background:#0B6E4F;
    color:white;

}

.card:hover h3{

    color:#FFD700;

}

.card h3{

    color:#0B6E4F;

    margin-bottom:15px;

}

.cta{

    background:#0B6E4F;

    color:white;

    text-align:center;

    padding:80px 20px;

}

.cta h2{

    font-size:40px;

    margin-bottom:20px;

}

.cta p{

    margin-bottom:35px;

}

footer{

    background:#073b2a;

    color:white;

    text-align:center;

    padding:25px;

}

@media(max-width:768px){

header{

    padding:20px;

    flex-direction:column;

}

.overlay h2{

    font-size:38px;

}

.overlay p{

    font-size:17px;

}

.login-btn{

    margin-top:20px;

}

}