/* =========================
   GLOBAL
========================= */

body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1e293b;
}

.society-container{
    width:min(92%,1200px);
    margin:auto;
}

.gold-line{
    width:100px;
    height:5px;
    background:#d4a22b;
    border-radius:999px;
    margin:20px auto 40px;
}

/* =========================
   HERO
========================= */

.society-hero{

    background:
    linear-gradient(
        135deg,
        #0b4fd8 0%,
        #07338d 100%
    );

    color:white;

    text-align:center;

    padding:140px 20px;
}

.page-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    color:#fbbf24;

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:24px;
}

.society-hero h1{

    font-size:64px;

    font-weight:900;

    line-height:1.1;

    margin-bottom:24px;
}

.society-hero p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#dbeafe;
}

/* =========================
   SECTION COMMON
========================= */

.society-about,
.society-history,
.society-impact{

    padding:110px 0;
}

.society-about h2,
.society-history h2,
.society-impact h2,
.society-mission h2{

    text-align:center;

    color:#08245c;

    font-size:46px;

    margin-bottom:0;
}

.society-about p,
.society-impact p{

    max-width:950px;

    margin:0 auto 24px;

    font-size:18px;

    line-height:2;

    color:#475569;
}

/* =========================
   MISSION
========================= */

.society-mission{

    background:#f8fafc;

    padding:110px 0;
}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;
}

.mission-card{

    background:white;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    border-top:5px solid #d4a22b;

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    transition:.3s ease;
}

.mission-card:hover{

    transform:translateY(-10px);
}

.mission-card h3{

    color:#08245c;

    font-size:24px;

    margin-bottom:14px;
}

.mission-card p{

    color:#64748b;

    line-height:1.8;
}

/* =========================
   TIMELINE
========================= */

.timeline{

    max-width:900px;

    margin:60px auto 0;

    position:relative;
}

.timeline::before{

    content:"";

    position:absolute;

    left:28px;

    top:0;

    bottom:0;

    width:4px;

    background:#d4a22b;
}

.timeline-item{

    position:relative;

    padding-left:95px;

    margin-bottom:40px;

    background:#ffffff;

    border-radius:18px;

    padding-top:24px;
    padding-bottom:24px;
    padding-right:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.timeline-item::before{

    content:"";

    position:absolute;

    left:14px;

    top:30px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:#0b4fd8;

    border:4px solid white;

    box-shadow:
    0 0 0 3px #d4a22b;
}

.timeline-item span{

    display:block;

    color:#0b4fd8;

    font-size:22px;

    font-weight:800;

    margin-bottom:10px;
}

.timeline-item p{

    color:#475569;

    line-height:1.8;

    margin:0;
}

/* =========================
   IMPACT
========================= */

.society-impact{

    background:#ffffff;
}

/* =========================
   QUOTE
========================= */

.quote-section{

    background:
    linear-gradient(
        135deg,
        #052b70,
        #0b4fd8
    );

    color:white;

    text-align:center;

    padding:120px 20px;
}

.quote-section h2{

    max-width:900px;

    margin:auto;

    font-size:42px;

    line-height:1.5;

    color:#fbbf24;

    font-weight:800;

    margin-bottom:24px;
}

.quote-section p{

    color:#dbeafe;

    font-size:18px;

    letter-spacing:.5px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .mission-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .society-hero h1{
        font-size:50px;
    }
}

@media(max-width:768px){

    .society-hero{
        padding:100px 20px;
    }

    .society-hero h1{
        font-size:36px;
    }

    .society-hero p{
        font-size:17px;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .society-about,
    .society-history,
    .society-impact,
    .society-mission{
        padding:80px 0;
    }

    .society-about h2,
    .society-history h2,
    .society-impact h2,
    .society-mission h2{
        font-size:30px;
    }

    .society-about p,
    .society-impact p{
        font-size:16px;
    }

    .timeline-item{
        padding-left:75px;
    }

    .quote-section h2{
        font-size:28px;
    }
}