/*=========================================================
  SCPM LEADERSHIP CSS
  Part 1
=========================================================*/

/*==========================
ROOT
==========================*/

:root{

    --primary:#E1600F;
    --primary-dark:#B94B08;
    --primary-light:#F48A1D;

    --secondary:#1F2937;

    --gold:#D4AF37;

    --white:#ffffff;

    --black:#111827;

    --text:#4B5563;

    --border:#ECECEC;

    --bg:#FFFDF9;

    --card:#FFFFFF;

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --radius:22px;

    --transition:.35s ease;

}


/*==========================
GLOBAL
==========================*/

body{

    background:var(--bg);

    color:var(--text);

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#FFF1E6;

    color:var(--primary);

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

}


/*==========================
HERO
==========================*/

.leadership-hero{

    position:relative;

    padding:140px 0;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(20,20,20,.62),
    rgba(20,20,20,.62)),
    url("../images/leadership/banner.jpg")
    center/cover no-repeat;

}

.leadership-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(255,255,255,.08),

    transparent 40%);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.hero-tag{

    display:inline-block;

    padding:9px 20px;

    background:rgba(255,255,255,.12);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    border-radius:40px;

    margin-bottom:22px;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-content h1{

    color:#fff;

    font-size:58px;

    margin-bottom:20px;

    font-weight:800;

}

.hero-content p{

    color:#F4F4F4;

    font-size:20px;

    line-height:1.9;

}


/*==========================
CHAIRMAN
==========================*/

.chairman-section{

    background:#FFF9F2;

}

.chairman-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.image-box{

    position:relative;

}

.image-box::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background:var(--primary);

    left:-18px;

    top:-18px;

    border-radius:24px;

    z-index:0;

}

.image-box img{

    position:relative;

    z-index:2;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.chairman-content h2{

    color:var(--secondary);

    font-size:40px;

    margin-bottom:18px;

    line-height:1.3;

}

.chairman-content h3{

    color:var(--primary);

    font-size:30px;

    margin-bottom:8px;

}

.chairman-content h4{

    color:#777;

    font-size:18px;

    margin-bottom:10px;

}

.college-name{

    color:var(--gold);

    font-weight:700;

    margin-bottom:35px;

}


/*==========================
MESSAGE BOX
==========================*/

.message-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    border-left:6px solid var(--primary);

}

.message-box h5{

    font-size:26px;

    color:var(--secondary);

    margin-bottom:22px;

}

.message-box p{

    line-height:2;

    margin-bottom:18px;

    color:#555;

    font-size:16px;

}


/*==========================
SIGNATURE
==========================*/

.chairman-sign{

    margin-top:35px;

}

.chairman-sign img{

    width:180px;

    margin-bottom:10px;

}

.chairman-sign h4{

    color:var(--secondary);

    margin-bottom:5px;

}

.chairman-sign p{

    color:#777;

}


/*==========================
BUTTONS
==========================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:15px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

    .chairman-wrapper{

        grid-template-columns:1fr;

    }

    .chairman-image{

        max-width:420px;

        margin:auto;

    }

    .hero-content h1{

        font-size:44px;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-content p{

        font-size:17px;

    }

    .chairman-content h2{

        font-size:30px;

    }

    .message-box{

        padding:25px;

    }

}
/*=========================================================
  SCPM LEADERSHIP CSS
  Part 2
  Leadership Team Cards
=========================================================*/


/*=========================================================
SECTION
=========================================================*/

.leadership-team{

    position:relative;

    background:#ffffff;

    padding:100px 0;

    overflow:hidden;

}

.leadership-team::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(225,96,15,.05);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.leadership-team::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(225,96,15,.05);

    border-radius:50%;

    bottom:-80px;

    right:-80px;

}


/*=========================================================
TITLE
=========================================================*/

.leadership-team .section-title{

    position:relative;

    z-index:2;

    text-align:center;

    margin-bottom:70px;

}

.leadership-team .section-title h2{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:15px;

}

.leadership-team .section-title p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:1.9;

}


/*=========================================================
GRID
=========================================================*/

.leader-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}


/*=========================================================
CARD
=========================================================*/

.leader-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    border:1px solid rgba(0,0,0,.05);

    text-align:center;

    position:relative;

}

.leader-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}


/*=========================================================
TOP STRIP
=========================================================*/

.leader-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,

    var(--primary),

    #ffb347);

}


/*=========================================================
IMAGE
=========================================================*/

.leader-image{

    padding:35px 20px 20px;

}

.leader-image img{

    width:170px;

    height:170px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    border:6px solid #fff;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.4s;

}

.leader-card:hover .leader-image img{

    transform:scale(1.06);

}


/*=========================================================
CONTENT
=========================================================*/

.leader-content{

    padding:10px 28px 35px;

}

.leader-content h3{

    font-size:23px;

    color:var(--secondary);

    margin-bottom:10px;

    line-height:1.4;

}

.leader-content h4{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:#FFF2E8;

    color:var(--primary);

    font-size:14px;

    margin-bottom:16px;

    font-weight:700;

    text-transform:uppercase;

}

.leader-content span{

    display:block;

    color:#999;

    font-size:15px;

    margin-bottom:18px;

    font-weight:600;

}

.leader-content p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}


/*=========================================================
SOCIAL ICONS (OPTIONAL)
=========================================================*/

.leader-social{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:22px;

}

.leader-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFF3EA;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.leader-social a:hover{

    background:var(--primary);

    color:#fff;

}


/*=========================================================
HOVER BORDER
=========================================================*/

.leader-card::after{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    border-radius:22px;

    transition:.35s;

    pointer-events:none;

}

.leader-card:hover::after{

    border-color:rgba(225,96,15,.35);

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

    .leader-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .leader-grid{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

}

@media(max-width:768px){

    .leader-grid{

        grid-template-columns:1fr;

    }

    .leader-content{

        padding:20px;

    }

    .leader-image img{

        width:150px;

        height:150px;

    }

    .leader-content h3{

        font-size:21px;

    }

}

@media(max-width:480px){

    .leader-image{

        padding-top:28px;

    }

    .leader-image img{

        width:135px;

        height:135px;

    }

    .leader-content h3{

        font-size:19px;

    }

    .leader-content h4{

        font-size:13px;

    }

    .leader-content p{

        font-size:14px;

    }

}
/*=========================================================
  SCPM LEADERSHIP CSS
  Part 3
  Leadership Values + CTA + Utilities
=========================================================*/


/*=========================================================
LEADERSHIP VALUES
=========================================================*/

.values-section{

    position:relative;

    padding:100px 0;

    background:linear-gradient(180deg,#FFF9F2 0%,#ffffff 100%);

    overflow:hidden;

}

.values-section::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(225,96,15,.05);

    left:-140px;

    top:-120px;

}

.values-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(225,96,15,.05);

    right:-80px;

    bottom:-60px;

}

.values-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.value-card{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.value-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#FFF2E8;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.value-card h3{

    color:var(--secondary);

    margin-bottom:15px;

    font-size:24px;

}

.value-card p{

    color:#666;

    line-height:1.9;

}


/*=========================================================
CTA
=========================================================*/

.cta-section{

    position:relative;

    padding:110px 0;

    background:

    linear-gradient(rgba(225,96,15,.92),

    rgba(185,75,8,.92)),

    url("../images/banner/admission.jpg")

    center/cover no-repeat;

    text-align:center;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    left:-140px;

    bottom:-160px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-100px;

    top:-100px;

}

.cta-section .container{

    position:relative;

    z-index:2;

}

.cta-section h2{

    color:#fff;

    font-size:48px;

    margin-bottom:18px;

}

.cta-section p{

    color:#F8F8F8;

    max-width:760px;

    margin:0 auto 35px;

    line-height:2;

    font-size:18px;

}

.cta-section .btn{

    background:#fff;

    color:var(--primary);

    font-size:17px;

    padding:17px 38px;

}

.cta-section .btn:hover{

    background:#111;

    color:#fff;

}


/*=========================================================
FLOATING SHAPES
=========================================================*/

.shape{

    position:absolute;

    border-radius:50%;

    animation:floatY 8s ease-in-out infinite;

    opacity:.12;

}

.shape.one{

    width:80px;

    height:80px;

    background:var(--primary);

    top:120px;

    left:70px;

}

.shape.two{

    width:140px;

    height:140px;

    background:var(--gold);

    bottom:90px;

    right:90px;

    animation-delay:2s;

}

.shape.three{

    width:55px;

    height:55px;

    background:#fff;

    top:60%;

    left:48%;

    animation-delay:4s;

}


/*=========================================================
SCROLL ANIMATION
=========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:none;

}

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:none;

}


/*=========================================================
KEYFRAMES
=========================================================*/

@keyframes floatY{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=========================================================
FOOTER SPACING
=========================================================*/

footer{

    margin-top:0;

}

.footer{

    margin-top:0;

}


/*=========================================================
UTILITIES
=========================================================*/

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.shadow{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.radius{

    border-radius:22px;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:992px){

    .cta-section h2{

        font-size:38px;

    }

    .values-grid{

        gap:28px;

    }

}

@media(max-width:768px){

    .values-grid{

        grid-template-columns:1fr;

    }

    .value-card{

        padding:35px 25px;

    }

    .cta-section{

        padding:80px 0;

    }

    .cta-section h2{

        font-size:32px;

    }

    .cta-section p{

        font-size:16px;

        line-height:1.8;

    }

    .shape{

        display:none;

    }

}

@media(max-width:480px){

    .section-title h2{

        font-size:30px;

    }

    .value-card h3{

        font-size:22px;

    }

    .value-icon{

        width:75px;

        height:75px;

        font-size:30px;

    }

    .cta-section h2{

        font-size:28px;

    }

    .cta-section .btn{

        width:100%;

        max-width:260px;

    }

}