﻿body {
    height: 100%;
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.parentcontainer {
    width: 100%;
    height: 500px;
    top: 20px;
    position: relative;
    background-color: #edf4f6;
    display: flex;
    flex-direction: row;
}
.linkedspace {
    margin-left: 2%;
    color: #878787;
}
.parenthousee {
    width: 100%;
    height: auto;
    top: 20px;
    position: relative;
    background-color: #edf4f6;
    display: flex;
    flex-direction: row;
}

.firstdiv {
    width: 50%;
    height: 500px;
    
}
.firstdivv {
    width: 100%;
    height: auto;
}
.seconddiv {
    width: 50%;
    height: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.adminimage {
    width: 100%;
    height:100%; /* Keeps aspect ratio */
    display: block;
    object-fit: cover; /* Optional: 'cover' or 'contain' depending on effect */

}

.box1 {
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.2;
    color: #474747;
    margin-left: 2%;
    margin-top: 38px;
}
.box2 {
    font-size: 14.1px;
    color: #878787;
    line-height: 2.2;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 2%;
    margin-top: 38px;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}
.box3 {
    font-size: 14.1px;
    color: #878787;
    line-height: 2.2;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 2%;
    margin-top: 38px;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

/* ✅ Responsive for screens ≤ 768px */
@media screen and (max-width: 768px) {
    .parentcontainer {
        flex-direction: column;
        height: auto; /* Let content determine height */
    }

    .firstdiv,
    .seconddiv,
    .firstdivv{
        width: 100%;
        height: auto;
    }

    .box1, .box2, .linkedspace {
        margin-left: 5%;
        margin-right: 5%;
    }

    .adminimage {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .box1 {
        font-size: 18px;
        margin-top: 20px;
    }

    .box2 {
        font-size: 14px;
        line-height: 1.8;
    }

    .linkedspace {
        display: inline-block;
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

.div1 {
    width: 100%;
    height: 20px;
    background-color: red;
    
}
.iconbox{
    width: 7%;
    height: 20px;
    float: left;
    background-color: blue;
}

.map-container {
    max-width: 75%;
    margin: 0 auto;
    padding: 10px;
    background: white;
  margin-top: 65px;
}


/* Responsive iframe container */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

    .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 6px;
    }

/* Mobile adjustments */
@media (max-width: 600px) {
    .map-container {
        margin: 10px;
        padding: 8px;
    }

    .map-link {
        font-size: 1rem;
    }
}


.menu-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .menu-section h2 {
        text-align: center;
        color: #b35d2e;
        margin-bottom: 25px;
        font-size: 28px;
    }

ol.list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    ol.list li {
        padding: 12px 10px;
        border-bottom: 1px solid #eee;
        font-size: 14.1px;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        ol.list li:last-child {
            border-bottom: none;
        }

/* Responsive Design */
@media (max-width: 600px) {
    h5.box1 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    p.box3 {
        font-size: 14px;
        line-height: 1.5;
    }

    ol.list li {
        font-size: 13.5px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 400px) {
    h5.box1 {
        font-size: 15px;
    }

    p.box3 {
        font-size: 13px;
    }

    ol.list li {
        font-size: 13px;
    }
}