* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global styles */
.contactUs {
    font-family: "Nunito", serif !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive columns */
    gap: 20px;
    padding: 20px;
}

.mainweb1 {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: relative;
}

.main-image {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    filter: brightness(30%);
    overflow: hidden;
}

.headline {
    background: #ffffff;
    position: absolute;
    top: 15vh;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: black;
    text-align: center;
    z-index: 9;
    width: 80%;
    max-width: 100%;
    overflow: hidden;
}

.headline p {
    background: #000;
    border-radius: 20px;
    padding: 10px;
    color: white;
    word-wrap: break-word;
}

.headline img {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.headline h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.headline h2 {
    font-size: 1.2rem;
}

.headline1 h2 {
    text-align: center;
    margin: 10px;
}

.headcontent {
    font-size: 1.2rem;
    margin: 10px;
}

.headline1 {
    padding: 20px;
    color: rgb(2, 2, 2);
    text-align: center;
    margin: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.headline1 span {
    color: blue;
}

.headline1 p {
    font-size: larger;
}

/* read more functionality */
.full-text {
    display: block;
    /* Show full text by default on large screens */
}

.read-more {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

.clamped-text {
    display: none;
}

.read-more {
    display: none;
}

/* For small screens, apply line clamp and hide the full text */
@media (max-width: 768px) {
    .clamped-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        /* Number of lines to show */
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5em;
        max-height: 4.5em;
    }

    .full-text {
        display: none;
        /* Hide the full text by default on small screens */
    }

    .read-more {
        display: inline-block;
    }
}

/* For very small screens, show the "Read More" link */
@media (max-width: 480px) {
    .read-more {
        display: inline-block;

    }
}



/*================================================================== */
/* Support Section Styles */
.support-container {
    background-color: #b3b3b3;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 900px;
    font-family: 'Nunito', sans-serif;
}

.support-content h2 {
    font-size: 2.2rem;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.support-content .contact-info {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333;
}

.support-content .contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.support-content .contact-info a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/*------------------------------form and contact info------------------------------*/

.contact-section {
    /* display: flex; */
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* First Div: Contact Information */
.contact-info1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(1, 1, 1);
    width: 30%;
    min-width: 250px;
    text-align: center;
}
.info-card h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}
.info-card p {
    font-size: 14px;
    color: #555;
}
.info-card a {
    color: #007bff;
    text-decoration: none;
}
.info-card a:hover {
    text-decoration: underline;
}
.card-icon {
    margin-bottom: 15px;
}
.card-icon img {
    width: 50px;
    height: 50px;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .info-card {
        width: 100%; /* Full width on smaller screens */
    }
    .contactUs{
        padding: 0px;
    }
}

/* Second Div: Contact Form */
.contact-map,
.contact-form {
    flex: 1 1 48%;
    /* Each div takes 48% of the width */
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 40px;
}
.contact-map{
    margin-right: 20px;
}
.contact-form{
    /* margin-right: 20px; */
}


/* Map iframe styling */
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Form Styling */
.contact-form {
    padding: 20px;
    background-color: #8d8d8d5d;
    border-radius: 10px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 10px;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }
}