.about
{
    padding: 90px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .title-container
{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.about .title-container h1
{
    position: relative;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--nav-color);
}

.about .title-container h1 span
{
    color: var(--nav-hover);
}

.about .title-container p
{
    width: 80%;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 900px)
{
    .about .title-container h1
    {
        font-size: 2rem;
        width: 90%;
        text-align: center;
        margin-bottom: 15px;
    }
    .about .title-container p
    {
        font-size: 15px;
    }
}

@media (max-width: 500px)
{
    .about .title-container h1
    {
        font-size: 1.5rem;
        width: 100%;
    }
    .about .title-container p
    {
        font-size: 13px;
        width: 90%;
    }
}

.about .double
{
    display: flex;
    justify-content: space-around;
    width: 90%;
    text-align: center;
    gap: 20px;
    min-height: 60vh;
}

.about .double .mission
{
    background-color: var(--nav-color);
    height: 320px;
}

.about .double .mission h2
{
    color: var(--nav-hover);
    font-size: 2.5rem;
}

.about .double .mission h2 span
{
    color: white;
}

.about .double .mission p
{
    color: white;
    width: 90%;
}

@media (max-width: 750px)
{
    .about .double
    {
        flex-direction: column;
    }
}

@media (max-width: 500px)
{
    .about .double .mission h2
    {
        font-size: 2rem;
    }
}

.about .area
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem;
    max-width: 1200px;
    width: 90%;
    margin-bottom: 20px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease-out;
}

.about .area.show
{
    opacity: 1;
    transform: translateY(0);
}

.about .others h2
{
    font-size: 2rem;
    margin-bottom: 20px;
}

.about .others .divide
{
    display: flex;
    width: 90%;
    justify-content: space-around;
    align-items: center;
}

.about .others .divide .circle_container {
    position: relative;
    width: 50vw; /* Responsive width */
    height: 50vw; /* Keep aspect ratio */
    max-width: 500px;
    max-height: 500px;
    right: 12%;
}

.about .others .divide .circle_container .circle
{
    position: absolute;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: -4px 8px 15px rgba(0, 0, 0, 0.3);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: slide-in 1.2s ease-out forwards;
}

/* Large Circle */
.about .others .divide .circle_container .large
{
    width: 80%;
    height: 80%;
    background-image: url('../img/LOMHS/About_Main\ Image.jpg');
    background-size: cover;
    top: 0;
    left: 10%;
    animation-delay: 0.2s;
}

/* Small Circle */
.about .others .divide .circle_container .small
{
    width: 20%; /* Scales with parent */
    height: 20%;
    background-image: url('../img/LOMHS/About_Image\ 3.jpg');
    background-size: cover;
    bottom: 30%;
    left: 5%;
    animation-delay: 0.4s;
}

/* Medium Circle */
.about .others .divide .circle_container .medium
{
    width: 40%;
    height: 40%;
    background-image: url('../img/LOMHS/About_Image\ 2.jpg');
    background-size: cover;
    top: 0;
    right: -5%;
    animation-delay: 0.3s;
}

@media (max-width:1250px)
{
    .about .others .divide
    {
        flex-direction: column;
    }
    .about .others .divide .circle_container
    {
        right: 0;
    }
    .about .others .divide ul
    {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
    }
    .about .others .divide ul li 
    {
        display: flex;
        width: 90%;
    }
}

@media (max-width:1250px)
{
    .about .others .divide ul li
    {
        flex-direction: column;
    }
}

.about .others .divide ul 
{
    margin-bottom: 0.7rem;
}

.about .others .divide ul li
{
    list-style: none;
    font-size: 18px;
    margin-bottom: 0.7rem;
}

.about .others .divide ul li strong
{
    color: var(--nav-hover);
}

.about .others .grid
{
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.about .others .grid .grid-item
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    background: var(--nav-color);
}

.about .others .grid .grid-item h3
{
    color: var(--nav-hover);
    width: 90%;
}

.about .others .grid .grid-item p
{
    width: 90%;
    color: var(--text-color);
}

.contact-section
{
    background: var(--nav-color);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 60vh;
}
  
.contact-section h2
{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}
  
.contact-section p
{
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
  
.contact-icons
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
  
.icon-box
{
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    width: 120px;
    height: 120px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
  
.icon-box:hover
{
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
  
.icon
{
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007b62;
    animation: popUp 1s infinite alternate ease-in-out;
}
  
.contact-icons .icon-box .label
{
    font-weight: bold;
    color: #006d5b;
}
  
@keyframes popUp
{
    from
    {
      transform: scale(1);
    }
    to
    {
      transform: scale(1.1);
    }
}
  
@media (max-width: 600px)
{
    .contact-icons
    {
      flex-direction: column;
      align-items: center;
    }
}