/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #f786ca 0%, #f0f7fa 100%); */
    color: #333;
    
  
}

header {
    width: 100%;
    background-image: url(Images/back/back\ \ \(4\).jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .wt {
    color: rgb(0, 0, 0);
    margin-top: -15px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.ayat {
    font-size: 40px;
}

.mw {
    font-size: 37px;
    color: #333;
    margin-top: -20px;
    white-space: nowrap;
    position: absolute;
    width: 100%;
    color: rgb(255, 25, 0);
    animation: moveCentreLeftRight 10s linear infinite;
}

@keyframes moveCentreLeftRight {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5%); }
    50% { transform: translateX(0); }
    75% { transform: translateX(5%); }
    100% { transform: translateX(0); }
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: black;
}

section img {
    
    gap: 20px;
    border-radius: 40px;
    transition: 0.5s;
    cursor: pointer;
}

section img:hover {
    transform: scale(1.05);
}

body h2 {
    font-size: 40px;
}

p {
    font-size: 20px;
    margin-top: -20px;
}

.cta {
    background-image: url(Images/back/back\ \ \(3\).jpg);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 50px 20px;
    background-color: #c95a7d;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta .cta-button {
    background-color: white;
    color: #4CAF50;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.cta .cta-button:hover {
    background-color: #e0f7fa;
    color: #333;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    border-top: 1px solid #e9ecef;
    color: white;
}
footer p{
    margin-top: 20px;
}

.social-links {
    margin-top: 10px;
}

.social-icon {
    margin: 0 10px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}


/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .mw {
        font-size: 28px;
    }

    .ayat {
        font-size: 29px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    body h2 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    section img {
        width: 70%;
        height: 5%;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    header .mw {
        font-size: 25px;
    }   

    body h2 {
        font-size: 25px;
    }
    

    p {
        font-size: 14px;
    }

    section img {
        width: 100%;
    }
    .cta h2 {
        font-size: 1.5em;
        margin-top: -10px;
    }

    .cta p {
        font-size: 0.9em;
        margin-top: 20px;

    }

    .cta .cta-button {
        font-size: 0.9em;
    }

    footer {
        height: auto;
        padding: 20px 10px;
    }

    footer p {
        font-size: 14px;
    }
}