/* =========================================
   HLC ABOUT PAGE CSS
========================================= */

.hlcab-hero{
    position:relative;
    height:450px;
    background:url('images/reading-room-in-bhubaneswar.webp') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hlcab-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hlcab-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:800px;
    padding:20px;
}

.hlcab-hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hlcab-hero-content p{
    font-size:20px;
    line-height:1.8;
}

/* COMMON */

.hlcab-about-section,
.hlcab-director-section,
.hlcab-mission-vision-section,
.hlcab-why-section{
    padding:80px 20px;
}

.hlcab-about-container,
.hlcab-director-container,
.hlcab-mission-vision-container,
.hlcab-why-container{
    max-width:1200px;
    margin:auto;
}

.hlcab-tag{
    display:inline-block;
    background:#0b4ea2;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

/* ABOUT */

.hlcab-about-container,
.hlcab-director-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hlcab-about-image img,
.hlcab-director-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.hlcab-about-content h2,
.hlcab-director-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111;
}

.hlcab-about-content p,
.hlcab-director-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.hlcab-director-section{
    background:#f7faff;
}

/* MISSION VISION */

.hlcab-mission-vision-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.hlcab-mv-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.hlcab-mv-card:hover{
    transform:translateY(-10px);
}

.hlcab-mv-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:#0b4ea2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.hlcab-mv-icon i{
    color:#fff;
    font-size:40px;
}

.hlcab-mv-card h3{
    font-size:32px;
    margin-bottom:18px;
}

.hlcab-mv-card p{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

/* WHY SECTION */

.hlcab-why-section{
    background:#f4f8ff;
    text-align:center;
}

.hlcab-why-section h2{
    font-size:42px;
    margin-bottom:50px;
    color:#111;
}

.hlcab-why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.hlcab-why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.hlcab-why-card:hover{
    transform:translateY(-8px);
}

.hlcab-why-card i{
    font-size:50px;
    color:#0b4ea2;
    margin-bottom:20px;
}

.hlcab-why-card h3{
    font-size:24px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .hlcab-about-container,
    .hlcab-director-container{
        grid-template-columns:1fr;
    }

    .hlcab-hero-content h1{
        font-size:40px;
    }

    .hlcab-about-content h2,
    .hlcab-director-content h2,
    .hlcab-why-section h2{
        font-size:32px;
    }

}