/* =========================
   Global
========================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Libre Bodoni", serif;
  margin: 0;
  padding: 0;
}
/*about-us*/
.introduction {
    padding-top: 20px;
    padding-bottom: 30px;
    background: linear-gradient(to bottom, #F5EBD6, #fffef8);
}

.introduction h2 {
    font-size: 2rem;
    color: #10131F;
    margin-bottom: 15px;
    text-align: center;
}

.introduction p {
    margin-left: 90px;
    margin-right: 80px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mission-vision {
    background: linear-gradient(to bottom, #fffef8, #F5EBD6);
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.mission,
.vision {
    background-color: #fffef8;
    flex: 1; /* Makes both cards take equal width */
    max-width: 38%; /* Ensures cards don't stretch too much */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for card effect */
}

.mission h2,
.vision h2 {
    color: #1D2233;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.mission p,
.vision p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: 10131F;
}

.mission ul,
.vision ul {
    padding-left: 20px; /* Adds padding to align list items */
    list-style-type: disc;
}

.mission ul li,
.vision ul li {
    margin-bottom: 10px;
}
/* Request a Call Section */
#request-call {
    padding: 50px;
    background: linear-gradient(to bottom, #F5EBD6, #fffef8);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.image-container {
    flex: 1;
    max-width: 50%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-container {
    margin: 0 auto; /* Centers the form */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #10131F;
}
.frm{
    text-align: center;
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #555;
}

.form-container input,
.form-container select {
    display: block;
    width: 100%; /* Ensures all inputs and select fill the container */
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; 
}

.form-container button {
    display: block;
    width: 250px; /* Set the button width to 150px */
    margin: 0 auto; /* Center the button horizontally */
    padding: 12px;
    background-color: #10131F;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.form-container button:hover {
    background-color: #1D2233;
}
/* General video styling */
.video {
    width: 100%;
    height: auto; /* keeps it from stretching too large on desktop */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;

}
/* 📱 Mobile view (≤600px) */
@media (max-width: 600px) {
    /* About Us Intro */
    .introduction p {
        margin-left: 15px;
        margin-right: 15px;
        font-size: 1rem;
        text-align: justify;
    }

    /* Mission & Vision */
    .mission-vision {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .mission,
    .vision {
        max-width: 100%;
        padding: 15px;
    }

    /* Request a Call */
    #request-call {
        padding: 30px 15px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .form-container {
        width: 90%;
        padding: 15px;
    }

    .form-container h2 {
        font-size: 1.3rem;
    }

    .form-container button {
        width: 100%; /* Full-width button for mobile usability */
    }
    .video {

        max-width: 100%;  /* video takes full width */
    }
}

/* 💻 Tablet view (601px–900px) */
@media (min-width: 601px) and (max-width: 900px) {
    /* About Us Intro */
    .introduction p {
        margin-left: 40px;
        margin-right: 40px;
        font-size: 1.1rem;
    }

    /* Mission & Vision */
    .mission-vision {
        gap: 40px;
        flex-wrap: wrap;
    }

    .mission,
    .vision {
        max-width: 40%; /* 2 cards side by side */
        padding: 18px;
    }

    /* Request a Call */
    #request-call {
        padding: 40px 20px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
    }

    .image-container {
        max-width: 45%;
    }

    .form-container {
        flex: 1;
        padding: 20px;
        width: 90%;
    } 

    .form-container button {
        width: 200px;
    }
        .video {
        max-width: 100%; /* keep within container */
    }
}
