body {
    background-color: rgba(204, 216, 225, 1);
    line-height: 1.6;
}
/* background-image-section */
.background-image-section {
    background-image: url(../images/background/rehal-quran.jpg);
    opacity: 0.8;
    padding-top: 100px;
    padding-bottom: 100px;
    height: 550px;
    background-attachment: fixed;
    background-position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-section > .sign {
    margin-top: -85px;
    margin-left: 1150px;
}
.background-image-section > .login {
    margin-top: -32px;
    margin-left: 1230px;
}
/* Style the links */
.background-image-section > .sign > a,
.background-image-section > .login > a {
    position: relative;
    display: inline-block;
    color: rgba(1, 4, 37, 1);
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
}
/* Animated underline */
.background-image-section > .sign > a::after,
.background-image-section > .login > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.background-image-section > .sign > a:hover::after,
.background-image-section > .login > a:hover::after {
    transform: scaleX(1);
}
.background-image-section > .admin-link a{
    color: rgb(19, 16, 16);
}
.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: rgba(204, 216, 225, 1);
}
.why-choose {
    animation: fadeUp 0.8s ease forwards;
    margin-bottom: 40px;
    background: rgba(102, 138, 167, 1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.why-choose:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.why-choose:hover h2 {
    color:rgba(36, 80, 106, 1);
    border-color: rgba(36, 80, 106, 1);
}
.why-choose h2 {
    color: rgba(1, 4, 37, 1);
    margin-bottom: 15px;
    font-size: 1.8em;
    border-bottom: 3px solid rgba(1, 4, 37, 1);
    padding-bottom: 10px;
    transition: all 0.4s ease;
}
.why-choose p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.05em;
}
/* services section */
.services-wrapper {
    animation: fadeUp 0.8s ease forwards;
    margin-bottom: 40px;
    background: rgba(102, 138, 167, 1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.services-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.services-wrapper > .columns-wrapper {
    width: 1000px;
    display: flex;
    justify-content: space-between;
}
.services-wrapper > .columns-wrapper > .column {
    padding: 20px;
    margin: 42px;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.4s ease;
    animation: float 4s ease-in-out infinite;
    transition: all 0.4s ease;
}
.services-wrapper > .columns-wrapper > .column:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    
}
.services-wrapper > .columns-wrapper > #co-3 {
    margin-right: 100px;
}
.services-wrapper > .columns-wrapper > .column p {
    font-size: 1.4em;
    line-height: 1.8;
    transition: letter-spacing 0.4s ease;
    transition: text-shadow 0.4s ease;
    color: white;
    transition: color 0.4s ease;
    transition: all 0.4s ease;
}
.services-wrapper > .columns-wrapper > .column:hover p {
    text-shadow:
        0 0 10px white,
        0 0 20px white;
        color: white;
    text-shadow: 0 0 10px white;
    letter-spacing: 2px;
}
.services-wrapper > .columns-wrapper > .column:nth-child(2) {
    animation-delay: 0.5s;
}

.services-wrapper > .columns-wrapper > .column:nth-child(3) {
    animation-delay: 1s;
}
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.about {
    animation: fadeUp 0.8s ease forwards;
    margin-bottom: 40px;
    background: rgba(102, 138, 167, 1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.about:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about:hover h2 {
    color:rgba(36, 80, 106, 1);
    border-color: rgba(36, 80, 106, 1);
}
.about h2 {
    color: rgba(1, 4, 37, 1);
    margin-bottom: 15px;
    font-size: 1.8em;
    border-bottom: 3px solid rgba(1, 4, 37, 1);
    padding-bottom: 10px;
    transition: all 0.4s ease;
}
.about p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.05em;
}
.about ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    letter-spacing: 2px;
    gap: 10px;
    font-size: 1.2em;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}