body {
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(to right, #dee1fa, #ecfeff, #ecfeff, #dee1fa);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-animate {
    transition: transform 0.3s ease-in-out, border-radius 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-animate:hover {
    transform: scale(1.03);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.focus-animate {
    transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.focus-animate:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
    border-color: #4299e1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #387ae7, #a1b7e7);
    color: white;
    text-align: center;
    padding: 110px 20px 50px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 10px 30px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: #1e40af;
    color: white;
    padding: 10px 30px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Information */
.contact-info {
    padding: 60px 0;
}

.info-card {
    background: #ffffff75;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info-card i {
    color: #3b82f6;
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-card p {
    color: #4b5563;
    margin-bottom: 16px;
}

.info-card a {
    color: #3b82f6;
}

/* Contact Form */
.contact-form {
    padding: 20px 0;
}

.form-container {
    background: #ffffff75;
    padding: 2rem;
    border-radius: 2.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 32px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    background: #ffffff75;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 1.5rem;
}

.form-container textarea {
    resize: vertical;
}

/* Submit Button */
.btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 9999px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Loader */
.btn-loader {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    position: absolute;
    animation: spin 1s infinite linear;
}

.btn-submit.loading {
    color: transparent;
}

.btn-submit.loading .btn-loader {
    display: flex;
    align-self: center;
}



/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    background: #ffffff75;
    padding: 1.2rem;
    border-radius: 1.5rem;
    color: #000000;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    margin-bottom: 12px;
}

/* Urgent Assistance */
.urgent-assistance {
    background: linear-gradient(to right, #4299e1, #387ae7, #4299e1);
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-card {
    background: #ffffff75;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.faq-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-card p {
    color: #4b5563;
}

/* Footer */
.footer {
    padding: 0 0 30px 0;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer a {
    color: #3b82f6;
    font-size: 1.5rem;
}


@media (max-width: 300px) {
    .form-container {
        padding: 1.2rem;
    }
}


/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(3px) grayscale(1);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

canvas.confetti {
    z-index: 999999 !important;
}

/* Modal Content */
.modal-content {
    background: #ffffff75;
    padding: 15px;
    border-radius: 2rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: absolute;
    /* bottom: 20px; */
    /* left: 20px; */
    /* right: 20px; */
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.ty-content{
    padding: 20px 40px;
}

/* Thank You Modal */
.thank-you {
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.modal.show .thank-you {
    transform: scale(1);
    opacity: 1;
}

.thank-you i {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}

/* Snackbar */
#snackbar {
    visibility: hidden;
    background-color: #ffffff;
    color: #4b2222;
    box-shadow: 0px 0px 5px 0 #80808099;
    border-radius: 1.5rem;
    padding: 10px 22px;
    position: fixed;
    text-align: center;
    justify-self: center;
    width: 90%;
    max-width: 500px;
    right: 20px;
    left: 20px;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#snackbar.show {
    visibility: visible;
    opacity: 1;
    top: 70px;
}


.socialqr{
    justify-self: center;
    width: 175px;
    margin-top: 0.75rem;
    border-radius: 1rem;
    box-shadow: 1px 2px 5px 0px #88388e70;
}