/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(120deg, #f3e5f5, #e8f5e9);
    color: #4a4a4a;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    max-width: 800px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

/* Typography */
h1, p {
    text-align: center;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #5e35b1;
}

/* Form Styling */
form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #4a148c;
    margin-bottom: 8px;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1c4e9;
    border-radius: 8px;
    font-size: 14px;
    color: #6a1b9a;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #7e57c2;
    box-shadow: 0 0 8px rgba(126, 87, 194, 0.4);
    outline: none;
}

textarea {
    resize: vertical;
}

/* Button Styling */
button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #7e57c2, #512da8);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: linear-gradient(90deg, #512da8, #7e57c2);
    transform: scale(1.02);
}

/* Footer Styles */
.footer {
    background: #4a148c;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-content div {
    flex: 1;
    min-width: 250px;
}

.footer-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffcc80;
    border-bottom: 2px solid #ffcc80;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    text-decoration: none;
    color: #ffcc80;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-content ul li a:hover {
    color: #ffe0b2;
}

.footer-contact p a {
    color: #ffcc80;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #ffe0b2;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px 20px;
    background: #6a1b9a;
    font-size: 14px;
    color: #ffe0b2;
}

/* Icons */
.footer-content ul li a i {
    font-size: 18px;
    color: #ffcc80;
    transition: color 0.3s ease;
}

.footer-content ul li a i:hover {
    color: #ffe0b2;
}


/* Language Toggle Button */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.language-toggle button {
    background: #5e35b1;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.language-toggle button:hover {
    background: #7e57c2;
    transform: scale(1.05);
}

/* Countdown Section for Mobile */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
    padding: 10px; /* Add padding for better spacing */
}

.countdown div {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 70px; /* Prevent excessive width */
    flex: 1; /* Allow flexibility for mobile screens */
}

.countdown div span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #e65100;
}

.countdown div small {
    font-size: 12px;
    color: #666666;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .countdown div {
        padding: 10px 15px; /* Reduce padding on smaller screens */
        min-width: 60px;
    }

    .countdown div span {
        font-size: 18px; /* Adjust font size for smaller devices */
    }

    .countdown div small {
        font-size: 10px;
    }
}


/* Coming Soon Section */
.coming-soon {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #ffe0b2, #ffcc80);
    border-radius: 12px;
    margin-bottom: 20px;
}

.coming-soon h1 {
    font-size: 36px;
    color: #e65100;
}

.coming-soon p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bf360c;
}

 

/* Section and Cards */
.section {
    margin: 40px 0;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 18px;
    color: #7e57c2;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #4a148c;
}

/* Call to Action */
.cta {
    text-align: center;
    margin: 40px 0;
}

.cta button {
    padding: 12px 25px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta button:hover {
    background: linear-gradient(90deg, #ff5722, #ff9800);
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin: 100px auto;
    min-width: 400px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #bf360c;
    font-weight: bold;
}

.modal-content .close:hover {
    color: #e65100;
}
