@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap');
* {
    font-family: 'Poppins' , sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #e6f0ff, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Water-like effect */
.water-effect {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: #e6f0ff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: water 10s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes water {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 45% 55% 49% 51% / 53% 48% 52% 47%;
        transform: rotate(3deg);
    }
    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(0deg);
    }
}

/* Background Elements */
.balloon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z"/></svg>');
    background-size: contain;
    animation: float 15s infinite;
}

.balloon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.balloon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.mosque {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" fill="%23333333"><path d="M0,30 L100,30 L100,25 C80,25 70,10 50,10 C30,10 20,25 0,25 Z"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 16px;
}
select:invalid {
    color: #999;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-btn {
    background: transparent;
    color: #ff6b00;
    border-radius: 20px;
    border: 1px solid orange;
    
}

.next-btn {
    background: #004b93;
    color: white;
    border-radius: 20px;
}

button:hover {
    opacity: 0.8;
}
button a{
    text-decoration:none ;
    color: inherit;
}
button a:hover{
    text-decoration:none ;
    color: inherit;
}
