/* =========================
   STTYTT — About / Company Page
   Consistent Maroon × Gold System
========================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root{
    --maroon:#3D0000;
    --maroon-2:#6B0000;
    --maroon-3:#1F0000;
    --gold:#D4AF37;
    --gold-dark:#8B6914;
    --gold-light:#F5DEB3;
    --gold-tint:#FBF0D9;
    --bg:#FAF3E0;
    --white:#FFFFFF;
    --ink:#6B0000;
    --muted:#7A6A5D;
    --border:#E6D9BE;
    --shadow:0 10px 30px rgba(31,0,0,.08);
    --shadow-lg:0 20px 50px rgba(31,0,0,.14);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'DM Sans', sans-serif;
}

body{
    background:var(--bg);
    color:var(--maroon-2);
    line-height:1.7;
}

h1,h2,h3{
    font-family:'Big Shoulders Display', sans-serif;
}

/* ================= HEADER ================= */

header{
    width:100%;
    background:linear-gradient(120deg, var(--maroon-3) 0%, var(--maroon-2) 55%, var(--maroon) 100%);
    backdrop-filter:blur(14px);
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid var(--border);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
    color:var(--maroon-2);
    letter-spacing:.3px;
}

.logo img{
    width:100px;
    height:56px;
    object-fit:cover;
}
nav{
    margin-left:auto;
}

nav a{
    text-decoration:none;
    margin-left:28px;
    color:var(--gold);
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold-dark);
    transition:width .3s ease;
}

nav a:hover{
    color:var(--bg);
}

nav a:hover::after{
    width:100%;
}


.back-btn{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.back-btn:hover{
    background:#f7931e;
    transform:translateX(-4px);
}


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

.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    color:#fff;
    background:
        linear-gradient(#c8a1a1, rgba(31,0,0,.92)),
        url("image/IMG-20260409-WA0003.jpg");
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat ;
}

.hero-content{
    max-width:850px;
    position:relative;
    z-index:1;
}

.hero h1{
    font-size:54px;
    margin-bottom:20px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.3px;
    line-height:1.08;
}

.hero p{
    font-size:19px;
    margin-bottom:35px;
    color:#D9C9AE;
    font-family:'DM Sans', sans-serif;
}

.btn{
    display:inline-block;
    background:linear-gradient(135deg, var(--gold-dark), var(--gold));
    color:var(--maroon-3);
    text-decoration:none;
    padding:15px 36px;
    border-radius:10px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 10px 26px rgba(212,175,55,.35);
}

.btn:hover{
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(212,175,55,.45);
}

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

section{
    padding:90px 10%;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:40px;
    color:var(--maroon-2);
    font-weight:700;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-text p{
    margin-bottom:20px;
    font-size:18px;
    color:var(--muted);
}

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

.timeline-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.timeline-item{
    background:var(--white);
    padding:32px;
    border-radius:18px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    border-top:3px solid var(--gold-dark);
    transition:.35s ease;
}

.timeline-item:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.timeline-item span{
    color:var(--gold-dark);
    font-weight:700;
    font-family:'Big Shoulders Display', sans-serif;
    font-size:22px;
    letter-spacing:.3px;
}

.timeline-item h3{
    margin:15px 0;
    color:var(--maroon-2);
    font-weight:700;
    font-size:21px;
}

.timeline-item p{
    color:var(--muted);
}

/* ================= FEATURES ================= */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:28px;
}

.card{
    background:var(--white);
    border-radius:18px;
    padding:38px 32px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
    border-color:var(--gold-dark);
}

.card i{
    font-size:42px;
    color:var(--gold-dark);
    margin-bottom:20px;
    display:inline-block;
}

.card h3{
    margin-bottom:12px;
    color:var(--maroon-2);
    font-weight:700;
    font-size:20px;
}

.card p{
    color:var(--muted);
}

/* ================= TEAM ================= */

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:28px;
}

.member{
    background:var(--white);
    padding:32px;
    border-radius:18px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:.35s ease;
}

.member:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.member h3{
    color:var(--maroon-2);
    margin-bottom:8px;
    font-weight:700;
    font-size:20px;
}

.member h4{
    color:var(--gold-dark);
    margin-bottom:18px;
    font-family:'DM Sans', sans-serif;
    font-weight:600;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.member p{
    color:var(--muted);
}

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

.mission{
    text-align:center;
    background:var(--white);
}

.mission h2{
    color:var(--maroon-2);
}

.mission p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:var(--muted);
}

/* ================= VISION ================= */

.vision{
    background:linear-gradient(135deg,var(--maroon-2),var(--maroon-3));
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.vision::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 80% 20%, rgba(212,175,55,.22), transparent 45%);
    pointer-events:none;
}

.vision h2{
    color:#fff;
    position:relative;
}

.vision p{
    max-width:850px;
    margin:25px auto 0;
    font-size:19px;
    color:#D9C9AE;
    position:relative;
}

/* ================= FOOTER ================= */

footer{
    background:var(--maroon-3);
    color:#fff;
    text-align:center;
    padding:40px;
}

footer h3{
    color:var(--gold);
    margin-bottom:10px;
    font-family:'Big Shoulders Display', sans-serif;
    font-size:22px;
}

footer p{
    margin:8px 0;
    color:#D9C9AE;
}


.certification{
    padding:80px 10%;
    text-align:center;
}

.certificate-card{
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.certificate-card i{
    font-size:100px;
    color:#0d6efd;
    margin-bottom:15px;
}

.certificate-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:linear-gradient(120deg, var(--maroon-3) 0%, var(--maroon-2) 55%, var(--maroon) 100%);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.certificate-btn:hover{
    background:var(--gold);
    color: #6B0000;
}

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


/* Large Laptop */
@media (max-width:1200px){

    section{
        padding:80px 7%;
    }

    .hero h1{
        font-size:48px;
    }

}

/* Tablet */
@media (max-width:992px){

    header{
        padding:16px 5%;
    }

    .logo img{
        width:85px;
        height:48px;
    }

    .hero{
        min-height:75vh;
        padding:80px 30px;
        background-size:cover;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

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

    .section-title h2{
        font-size:34px;
    }

    .timeline-box,
    .feature-grid,
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width:768px){

    header{
        flex-direction:row;
        justify-content:space-between;
        padding:15px 20px;
    }

    .logo img{
        width:80px;
        height:45px;
    }

    nav{
        margin-left:0;
    }

    .back-btn{
        width:42px;
        height:42px;
        font-size:17px;
    }

    .hero{
        min-height:70vh;
        padding:60px 20px;
        background-size:cover;
    }

    .hero h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
    }

    section{
        padding:60px 20px;
    }

    .section-title{
        margin-bottom:35px;
    }

    .section-title h2{
        font-size:30px;
    }

    .about-text p,
    .mission p,
    .vision p{
        font-size:16px;
    }

    .timeline-box,
    .feature-grid,
    .team-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .timeline-item,
    .card,
    .member{
        padding:25px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    header{
        padding:12px 16px;
    }

    .logo img{
        width:70px;
        height:40px;
    }

    .back-btn{
        width:38px;
        height:38px;
        font-size:15px;
    }

    .hero{
        min-height:60vh;
        padding:40px 15px;
    }

    .hero h1{
        font-size:26px;
    }

    .hero p{
        font-size:15px;
        line-height:1.7;
    }

    .section-title h2{
        font-size:26px;
    }

    .timeline-item span{
        font-size:18px;
    }

    .timeline-item h3,
    .card h3,
    .member h3{
        font-size:18px;
    }

    .timeline-item,
    .card,
    .member{
        padding:20px;
    }

    footer{
        padding:30px 20px;
    }

    footer h3{
        font-size:20px;
    }

    footer p{
        font-size:14px;
    }

}