/* =========================================
   FACULTY SECTION START
========================================= */

.faculty-section .container{
    max-width:1050px;
}

/* =========================================
   FACULTY SECTION
========================================= */

.faculty-section{
    padding:100px 0;
    background:#002147;
    position:relative;
    overflow:hidden;
}

/* =========================================
   LEFT DOTS
========================================= */

.faculty-section::before{
    content:"";
    position:absolute;
    left:40px;
    top:100px;
    width:90px;
    height:120px;
    background-image:radial-gradient(
        rgba(255,255,255,.25) 2px,
        transparent 2px
    );
    background-size:16px 16px;
}

/* =========================================
   RIGHT DOTS
========================================= */

.faculty-section::after{
    content:"";
    position:absolute;
    right:40px;
    top:100px;
    width:90px;
    height:120px;
    background-image:radial-gradient(
        rgba(255,255,255,.25) 2px,
        transparent 2px
    );
    background-size:16px 16px;
}

/* =========================================
   HEADING
========================================= */

.faculty-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.faculty-heading span{
    display:inline-block;
    background:rgba(255,180,0,.15);
    color:#ffb400;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.faculty-heading h2{
    font-family:'Manrope',sans-serif;
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:#ffffff;
    margin-bottom:15px;
}

.faculty-heading p{
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.80);
    max-width:700px;
    margin:auto;
}

/* =========================================
   GRID
========================================= */

.faculty-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    column-gap:15px;
    row-gap:15px;
    justify-items:center;
}

/* =========================================
   CARD
========================================= */

.faculty-card{
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #edf5ff 50%,
        #dcecff 100%
    ) !important;
    overflow:hidden;
    border:1px solid #dfeaff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-radius:24px;
    min-height:260px;
    padding:25px;
    max-width:300px;
    height:420px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    position:relative;
    transition:.35s;
}

/* =========================================
   CARD DOT DESIGN
========================================= */

.faculty-card::before{
    content:"";
    position:absolute;
    top:10px;
    right:10px;
    width:60px;
    height:60px;
    background-image:radial-gradient(
        #ffb400 2px,
        transparent 2px
    );
    background-size:12px 12px;
    opacity:.35;
    pointer-events:none;
}

.faculty-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}

/* =========================================
   IMAGE
========================================= */

.faculty-image{
    width:130px;
    height:130px;
    margin-bottom:15px;
}

.faculty-image img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #edf5ff;
}

/* =========================================
   CONTENT
========================================= */

.faculty-content{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.faculty-content h3{
    display:inline-block;
    background:#fff4d6;
    color:#002147;
    padding:10px 20px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    border:1px solid #ffe4a3;
}

.faculty-content span{
    display:block;
    font-size:15px;
    font-weight:500;
    color:#666;
    margin-bottom:15px;
}

.faculty-content p{
    font-size:13px;
    line-height:1.6;
    color:#777;
    max-width:220px;
    margin:auto;
}

/* =========================================
   EXPERIENCE BADGE
========================================= */

.faculty-exp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff4d6;
    color:#ffb400;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-top:12px;
}

/* =========================================
   BUTTON
========================================= */

.faculty-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.faculty-btn{
    display:inline-block;
    padding:18px 38px;
    background:#ffb400;
    color:#002147;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    border-radius:50px;
    transition:.35s;
}

.faculty-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,180,0,.30);
}

/* =========================================
   FACULTY MESSAGE
========================================= */

.faculty-message{
    text-align:center;
    max-width:750px;
    margin:50px auto 30px;
}

.faculty-message h3{
    font-size:32px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:15px;
}

.faculty-message p{
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

/* =========================================
   RESPONSIVE FACULTY
========================================= */

@media(max-width:1100px){

    .faculty-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .faculty-grid{
        grid-template-columns:1fr;
    }

    .faculty-heading h2{
        font-size:34px;
    }

    .faculty-card{
        min-height:auto;
    }

}

/* =========================================
   FACULTY SECTION END
========================================= */