/*=========================================================
  SCPM COLLEGE OF PHARMACY
  LEADERSHIP PAGE CSS
  PART 1
=========================================================*/


/*=========================
ROOT VARIABLES
=========================*/

:root{

    --primary:#E1600F;
    --primary-dark:#B94B08;
    --primary-light:#FFB25C;

    --secondary:#1F2937;

    --gold:#D4AF37;

    --white:#ffffff;

    --black:#111827;

    --text:#5B6472;

    --border:#ECECEC;

    --bg:#FFFDF9;

    --card:#ffffff;

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --shadow-lg:0 28px 70px rgba(0,0,0,.15);

    --radius:24px;

    --transition:.35s ease;

}


/*=========================
RESET
=========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

section{

    padding:100px 0;

}

.container{

    width:min(1240px,92%);
    margin:auto;

}


/*=========================
SECTION TITLE
=========================*/

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#FFF2E8;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    text-align:center;

    margin-bottom:65px;

}

.section-title h2{

    font-size:44px;

    color:var(--secondary);

    margin-bottom:18px;

    font-weight:800;

}

.section-title p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    font-size:17px;

}


/*==================================================
HERO SECTION
==================================================*/

.leadership-hero{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:170px 0 150px;

    background:

    linear-gradient(rgba(20,20,20,.70),

    rgba(20,20,20,.70)),

    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,.10),

    transparent 40%);

}

.leadership-hero::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-180px;

    top:-200px;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.hero-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.hero-content h1{

    color:#fff;

    font-size:62px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    color:#F4F4F4;

    font-size:20px;

    line-height:2;

}


/*==================================================
CHAIRMAN SECTION
==================================================*/

.chairman-section{

    position:relative;

    background:#FFF9F2;

    overflow:hidden;

}

.chairman-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(225,96,15,.05);

    border-radius:50%;

    left:-180px;

    top:-180px;

}

.chairman-wrapper{

    display:grid;

    grid-template-columns:430px 1fr;

    gap:80px;

    align-items:center;

}


/*==================================================
IMAGE
==================================================*/

.image-box{

    position:relative;

}

.image-box::before{

    content:"";

    position:absolute;

    inset:-20px;

    background:linear-gradient(

    135deg,

    var(--primary),

    var(--gold)

    );

    border-radius:28px;

    z-index:0;

}

.image-box img{

    position:relative;

    z-index:2;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}


/*==================================================
CONTENT
==================================================*/

.chairman-content{

    position:relative;

    z-index:2;

}

.chairman-content h2{

    color:var(--secondary);

    font-size:42px;

    line-height:1.35;

    margin-bottom:20px;

    font-weight:800;

}

.chairman-content h3{

    color:var(--primary);

    font-size:30px;

    margin-bottom:10px;

}

.chairman-content h4{

    color:#777;

    font-size:18px;

    margin-bottom:12px;

}

.college-name{

    color:var(--gold);

    font-size:17px;

    font-weight:700;

    margin-bottom:35px;

}


/*==================================================
MESSAGE BOX
==================================================*/

.message-box{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:var(--shadow);

    border-left:6px solid var(--primary);

}

.message-box h5{

    font-size:28px;

    color:var(--secondary);

    margin-bottom:25px;

}

.message-box p{

    color:#555;

    font-size:16px;

    line-height:2;

    margin-bottom:18px;

}


/*==================================================
SIGNATURE
==================================================*/

.chairman-sign{

    margin-top:35px;

}

.chairman-sign img{

    width:180px;

    margin-bottom:12px;

}

.chairman-sign h4{

    color:var(--secondary);

    margin-bottom:6px;

}

.chairman-sign p{

    color:#666;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .chairman-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .chairman-image{

        max-width:420px;

        margin:auto;

    }

    .hero-content h1{

        font-size:48px;

    }

}

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-content p{

        font-size:17px;

        line-height:1.8;

    }

    .chairman-content h2{

        font-size:30px;

    }

    .message-box{

        padding:28px;

    }

}
/*=========================================================
  SCPM COLLEGE OF PHARMACY
  LEADERSHIP CSS
  PART 2
=========================================================*/


/*=========================================================
LEADERSHIP TEAM SECTION
=========================================================*/

.leadership-team{

    position:relative;

    padding:110px 0;

    background:#ffffff;

    overflow:hidden;

}

.leadership-team::before{

    content:"";

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:rgba(225,96,15,.05);

    top:-140px;

    left:-140px;

}

.leadership-team::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(225,96,15,.05);

    right:-80px;

    bottom:-80px;

}


/*=========================================================
SECTION TITLE
=========================================================*/

.leadership-team .section-title{

    position:relative;

    z-index:2;

    text-align:center;

    margin-bottom:70px;

}

.leadership-team .section-title h2{

    font-size:44px;

    color:var(--secondary);

    margin-bottom:18px;

    font-weight:800;

}

.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{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    text-align:center;

}

.leader-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}


/*=========================================================
TOP BAR
=========================================================*/

.leader-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,

    var(--primary),

    var(--gold));

}


/*=========================================================
IMAGE
=========================================================*/

.leader-image{

    padding:35px 20px 20px;

}

.leader-image img{

    width:175px;

    height:175px;

    object-fit:cover;

    margin:auto;

    border-radius:50%;

    border:6px solid #fff;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.4s ease;

}

.leader-card:hover .leader-image img{

    transform:scale(1.08);

}


/*=========================================================
CONTENT
=========================================================*/

.leader-content{

    padding:10px 30px 35px;

}

.leader-content h3{

    color:var(--secondary);

    font-size:23px;

    margin-bottom:10px;

    font-weight:700;

    line-height:1.4;

}

.leader-content h4{

    display:inline-block;

    padding:8px 18px;

    background:#FFF3EA;

    color:var(--primary);

    border-radius:40px;

    font-size:13px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:700;

}

.leader-content span{

    display:block;

    color:#999;

    margin-bottom:18px;

    font-size:15px;

    font-weight:600;

}

.leader-content p{

    color:#666;

    font-size:15px;

    line-height:1.9;

}


/*=========================================================
SOCIAL ICONS
=========================================================*/

.leader-social{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:22px;

}

.leader-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFF2E8;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    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:24px;

    transition:.35s;

    pointer-events:none;

}

.leader-card:hover::after{

    border-color:rgba(225,96,15,.35);

}


/*=========================================================
SMALL BADGE
=========================================================*/

.leader-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:var(--primary);

    color:#fff;

    padding:7px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

}


/*=========================================================
IMAGE OVERLAY
=========================================================*/

.leader-image{

    position:relative;

}

.leader-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    transparent,

    rgba(225,96,15,.05)

    );

    opacity:0;

    transition:.35s;

}

.leader-card:hover .leader-image::after{

    opacity:1;

}


/*=========================================================
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:12px;

    }

    .leader-content p{

        font-size:14px;

    }

}
/*=========================================================
  SCPM COLLEGE OF PHARMACY
  LEADERSHIP CSS
  PART 3
=========================================================*/


/*=========================================================
LEADERSHIP VALUES SECTION
=========================================================*/

.values-section{

    position:relative;

    padding:110px 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
=========================================================*/

.value-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s ease;

}

.value-card:hover{

    transform:translateY(-12px);

    box-shadow:0 28px 60px 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);

    font-size:24px;

    margin-bottom:15px;

}

.value-card p{

    color:#666;

    line-height:1.9;

}


/*=========================================================
CTA SECTION
=========================================================*/

.cta-section{

    position:relative;

    padding:120px 0;

    text-align:center;

    overflow:hidden;

    background:

    linear-gradient(rgba(225,96,15,.92),

    rgba(185,75,8,.92)),

    url("../images/banner/admission.jpg")

    center/cover no-repeat;

}

.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:300px;

    height:300px;

    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:50px;

    margin-bottom:20px;

    font-weight:800;

}

.cta-section p{

    color:#f8f8f8;

    max-width:760px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:2;

}

.cta-section .btn{

    display:inline-block;

    background:#fff;

    color:var(--primary);

    padding:17px 40px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-section .btn:hover{

    background:#111827;

    color:#fff;

}


/*=========================================================
FLOATING SHAPES
=========================================================*/

.shape{

    position:absolute;

    border-radius:50%;

    opacity:.12;

    animation:floatY 8s ease-in-out infinite;

}

.shape.one{

    width:80px;

    height:80px;

    background:var(--primary);

    left:70px;

    top:100px;

}

.shape.two{

    width:140px;

    height:140px;

    background:var(--gold);

    right:80px;

    bottom:90px;

    animation-delay:2s;

}

.shape.three{

    width:55px;

    height:55px;

    background:#fff;

    left:48%;

    top:60%;

    animation-delay:4s;

}


/*=========================================================
SCROLL ANIMATION
=========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

.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;

}


/*=========================================================
BUTTONS
=========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.35s ease;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.radius{

    border-radius:24px;

}

.shadow{

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}


/*=========================================================
KEYFRAMES
=========================================================*/

@keyframes floatY{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:992px){

    .cta-section h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .values-grid{

        grid-template-columns:1fr;

    }

    .value-card{

        padding:35px 25px;

    }

    .cta-section{

        padding:90px 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;

    }

}
.site-header .container{
    width:100%;
    max-width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px 0 10px;
}