* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

/* Horizontal Section */
.horizontal-section {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Each column */
.media-box,
.para-box,
.enquiry-form {
    flex: 1 1 30%;
    /* Flex-grow: 1, Flex-shrink: 1, Flex-basis: 30% */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Media Box (Images) */
.media-box {
    gap: 15px;
}

.media-box img {
    width: 100%;
    height: 350px;
    /* Let the image height adjust naturally */
    object-fit: fill;
    border-radius: 10px;
    border: 3px solid #0c2d62;
}

/* Paragraph Box */
.para-box {
    background-color: #fff3e0;
    text-align: justify;
}

.para-box h3 {
    color: #e67e22;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.para-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.para-video {
    width: 100%;
    border: 4px solid;
    border-image: linear-gradient(to right, #ff6f00, #ffcc80) 1;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 50px;
    object-fit: fill;
}

.para-video video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Enquiry Form */
.enquiry-form {
    background-color: #f1f5fb;
    border: 2px solid #0c2d62;
}

.enquiry-form h4 {
    margin-top: 25px;
    text-align: center;
    font-size: 22px;
    color: #0c2d62;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #0c2d62;
    border-radius: 6px;
    background-color: #ffffff;
}

.enquiry-form label {
    font-weight: bold;
    margin-top: 10px;
    color: #0c2d62;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    padding: 8px;
    font-size: 14px;
    margin-bottom: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.state-district-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.enquiry-form textarea {
    height: 80px;
}

.btns {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btns button {
    flex: 1;
    background-color: #0c2d62;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btns button:hover {
    background-color: #ff6f00;
}

/* ✅ Responsive Media Queries */
@media (max-width: 1024px) {
    .horizontal-section {
        flex-direction: column;
        /* Stack the columns for smaller screens */
        padding: 20px;
    }

    .media-box img {
        height: 250px;
        /* Fixed height for images on smaller screens */
    }

    .para-video video {
        height: 180px;
        /* Fixed height for video on smaller screens */
    }

    .btns {
        flex-direction: column;
    }

    .btns button {
        width: 100%;
    }
}

.tooltip-container {
    position: relative;
    display: inline-block;
    margin-right: 45px;
}

.tooltip-container .custom-tooltip {
    visibility: hidden;
    background-color: #0c2d62;
    color: orange;
    border-radius: 4px;
    padding: 8px 8px 8px 8px;
    /* Extra right padding for margin */
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    /* Single line */
    z-index: 10;
    text-align: justify;
}

.tooltip-container:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}