﻿/* =========================
   PAGE BANNER
========================= */

.page-banner {
    position: relative;
    height: 420px;
    background: url('/BannerImages/photo8.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: auto;
}

.banner-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   TEAM PAGE
========================= */

.team-page-section {
    background: linear-gradient(to bottom, #ffffff, #f5faf6);
}

/* CARD */

.team-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: 0.45s;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

/* IMAGE */

.team-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: #f3f7f3;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.team-card:hover .team-image img {
    transform: scale(1.06);
}

/* DUMMY ICON */

.dummy-team-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,#2e7d32,#43a047);
}

    .dummy-team-icon i {
        font-size: 90px;
        color: rgba(255,255,255,0.9);
    }

/* CONTENT */

.team-content {
    padding: 30px;
    text-align: center;
}

    .team-content h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #111;
    }

    .team-content span {
        display: inline-block;
        color: #2e7d32;
        font-weight: 600;
        margin-bottom: 20px;
    }

/* EXPERIENCE */

.team-exp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: #f1f8f2;
    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
}

/* MOBILE */

@media(max-width:768px) {

    .page-banner {
        height: 340px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .team-image {
        height: 240px;
    }
}
