
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.main-image {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 30px auto;
}


.hero {
    text-align: center;
    padding: 20px;
}

.overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
}

.text-color-black {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    margin-top: 8px;
}


.btn {
    background: #002f6c;
    color: white;
    font-size: 18px;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 20px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.btn.blue:hover {
    background: #0055a5;
}


.form-section {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    margin: 30px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

input, select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #d0d0d0;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.currency-input {
    display: flex;
    gap: 10px;
}

small {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}


.footer {
    height: 60px;
    width: 100%;
    background: #002f6c;
    color: white;
    text-align: center;
    padding: 20px;
}


@media (max-width: 768px) {
    .main-image {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .hero {
        padding: 15px;
    }

    .overlay {
        padding: 20px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .form-section {
        padding: 40px 15px;
    }

    input, select {
        padding: 12px;
    }
}


.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
}

.scroll-down img {
    width: 100%;
    height: auto;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}


.success-modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background: transparent;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal.show {
    visibility: visible;
    opacity: 1;
}

.success-modal-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}


.success-icon {
    font-size: 70px;
    margin-bottom: 15px;
    color: #04641b; 
}

.success-text {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}



/* eroor */

.error-message{
    display:block;
    font-size:12px;
    margin-bottom:5px;
    color:#8a8a8a; 
}

.error-message.active{
    color:#ff2b2b;
}


.input-error {
    border: 2px solid #ff2b2b !important;
}