﻿﻿ /* Contact.css */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 2vw, 25px);
}

.contact-wrapper {
    padding: clamp(40px, 8vh, 80px) 0;
    display: flex;
    justify-content: center;
}

.contact-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: clamp(20px, 4vw, 40px);
    width: clamp(300px, 80%, 800px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    display: block;
    width: clamp(60px, 10vw, 100px);
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
}

/* Contact Form */
.contact-form {
    margin-top: clamp(20px, 4vw, 40px);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: clamp(0.9rem, 1.6vw, 1rem);
        color: #333;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: clamp(8px, 1.5vw, 12px);
        font-size: clamp(0.85rem, 1.5vw, 1rem);
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #f9f9f9;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1a2a6c;
            background: #fff;
        }

    .form-group textarea {
        min-height: clamp(80px, 15vw, 120px);
        resize: vertical;
    }

.submit-btn {
    display: block;
    width: 100%;
    padding: clamp(10px, 2vw, 14px);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #fff;
    background: #1a2a6c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .submit-btn:hover {
        background: #b21f1f;
    }

/* Contact Info */
.contact-info {
    margin-top: clamp(30px, 6vw, 60px);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
}

    .info-list li {
        font-size: clamp(0.9rem, 1.6vw, 1rem);
        color: #333;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .info-list li i {
            color: #28a745;
            margin-right: 12px;
            font-size: 1.2em;
        }

        .info-list li a {
            color: #1a2a6c;
            text-decoration: none;
            transition: color licensing: 0.3s ease;
        }

            .info-list li a:hover {
                color: #b21f1f;
            }

@media screen and (max-width: 428px) {
    .g-recaptcha {
        transform: scale(0.77); /* Adjust scale for small screens */
        transform-origin: 0 0;
    }
}

@media screen and (max-width: 435px) {
    .g-recaptcha {
        transform: scale(0.76); /* Adjust scale for small screens */
        transform-origin: 0 0;
    }
}