  /* ---------------- PARALLAX BACKGROUNDS ---------------- */
.heading-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: space-between;
    align-items: flex-start;
    margin: 40px;
    /* width: 100%; */
}
  .container{
    text-align: left;
  }

.parallax-bg {
    background: url('../media/team.jpg') center/cover fixed no-repeat;
    padding: 180px 0;
    position: relative;
    color: #fff;
    text-align: left;
}

.parallax-bg-2 {
    background: url('../media/service_4.jpg') center/cover fixed no-repeat;
    padding: 70px 0;
    position: relative;
    display: flex;
}
.parallax-bg-2 h2{
  z-index: 1;
    padding: 0px 10vw;
    font-size: 40px;
    font-weight: 800;
    color:#f0c13e;
}
.parallax-bg .overlay,
.parallax-bg-2 .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.264);
    backdrop-filter: blur(2px);
}

/* ---------------- INTRO ---------------- */

.about-intro h1 {
    font-size: 3.6rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: auto;
}

.about-intro .tagline {
    font-size: 1.6rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    text-align: center;
}


/* ---------------- IMAGE + TEXT BLOCKS ---------------- */

.content-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block .text {
    flex: 1;
}

.content-block .image {
    flex: 1;
    height: -webkit-fill-available;
    width: 100%;
    background-color: azure;
    border-radius: 20px;
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center;
}

.content-block .image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-block .image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.about-content {
    padding: 80px 10vw;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1c1c1c;
}

.about-content p {
    line-height: 1.85;
    font-size: 1.2rem;
    color: #444;
}

/* ---------------- FADE-IN ANIMATION ---------------- */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 960px) {
    .content-block,
    .content-block.reverse {
        flex-direction: column;
        text-align: left;
    }

    .content-block .image img {
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-intro .tagline {
    text-align: left;
}
.about-intro h1 {
    margin: 0px;
}
}
/* ---------------- LEADERSHIP SECTION ---------------- */

.leadership {
    padding: 80px 10vw;
    background: #f8f8f8;
}

.leadership h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    text-align: center;
}

.leadership .lead-desc {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.8;
}

.leader-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.leader-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    flex: 300px;
}

.leader-card h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.leader-card h4 {
    font-size: 1rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.leader-card p {
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}
