@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Marcellus&display=swap');

body{
    font-family: 'Marcellus', sans-serif;
}

.wrapper{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

section{
    padding: 90px 10%;
    color: white;
    width: 100%;
}

/* SECTION TITLE */

.section-title{
font-family:'Marcellus',serif;
font-size:34px;
text-align:center;
margin-bottom:50px;
}

/* ABOUT HERO */

.about-company{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

    max-width:1400px;
    width:100%;

    min-height:90vh; /* KEY FIX */
    padding-top:60px;

    background: url(images/OG.jpg) no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
}

.about-company > * {
    position: relative;
    z-index: 2;
}

/* DARK OVERLAY FOR ABOUT HERO */

.about-company::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1;
}

/* CARD */

.about-card{
background: transparent;
padding: 0;
border-radius: 0;
backdrop-filter: none;
box-shadow: none;
max-width: 650px;
position: relative;
z-index: 2;
}

.about-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #f4a261;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244, 162, 97, 0.15);
  border-radius: 30px;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-hero-black {
  display: block;
  color: #ffffff;
}

.about-hero-gold {
  display: block;
  color: #f4a261;
}

.about-lead {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 580px;
}

.about-card h1{
font-size:40px;
margin-bottom:15px;
}

.about-card p{
line-height:1.7;
margin-bottom:15px;
}

/* LOGO */

.about-logo{
width:90px;
margin-bottom:20px;
}

/* STATS */

.about-stats{
display:flex;
gap:24px;
justify-content:flex-start;
margin-top:40px;
position: relative;
z-index: 2;
}

.stat{
background:rgba(255,255,255,0.08);
padding:28px 36px;
border-radius:16px;
text-align:center;
min-width:150px;
transition:all .3s ease;
border: 1px solid rgba(255,255,255,0.1);
}

.stat:hover{
transform:translateY(-8px);
background: #ffffff;
border-color: #ffffff;
}

.stat:hover h3{
color: #f4a261;
font-weight: 800;
}

.stat:hover p{
color: #111827;
opacity: 1;
font-weight: 600;
}

.stat h3{
font-size:36px;
color:#f4a261;
margin-bottom:8px;
font-weight: 700;
}

.stat p{
font-size:13px;
opacity:.85;
letter-spacing: 0.5px;
}

/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* CORE PILLARS */

.pillars{
position:relative;
overflow:hidden;
/* remove extra space above this section - formerly margin-top:80px; */
margin-top:0;
backdrop-filter:blur(12px);
/* make it full width */
max-width: 100%;
width: 100%;
/* keep internal padding for content spacing */
padding: 90px 10%;
}

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}


/* DARK OVERLAY */

.pillars::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:-1;
}

.pillar-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:32px;
}

.pillar-card{
background:rgba(255,255,255,0.07);
padding:50px 40px;
border-radius:20px;
text-align:center;
transition:all .4s ease;
backdrop-filter:blur(12px);
border: 1px solid rgba(255,255,255,0.08);
}

.pillar-card:hover{
transform:translateY(-12px);
background:rgba(255,255,255,0.12);
border-color: rgba(244, 162, 97, 0.25);
box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.pillar-card i{
font-size:48px;
color:#f4a261;
margin-bottom:24px;
display: inline-block;
padding: 20px;
background: rgba(244, 162, 97, 0.15);
border-radius: 50%;
}

.pillar-card h3{
font-size: 22px;
margin-bottom: 16px;
font-weight: 600;
}

.pillar-card p{
font-size: 15px;
line-height: 1.7;
opacity: 0.88;
}

/* CEO */

.ceo {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #111827 0%, #1a2332 100%);
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    padding: 100px 10%;
    box-sizing: border-box;
}

/* CEO / LEADERSHIP SECTION (FIXED & PROFESSIONAL) */

.ceo {
    width: 100%;
    background: linear-gradient(135deg, #111827 0%, #1a2332 100%);

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    padding: 100px 10%;
}

/* CARD */
.ceo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: rgba(255,255,255,0.04);
    border-radius: 24px;

    padding: 50px 40px;
    min-height: 440px;

    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
}

/* HOVER */
.ceo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(244, 162, 97, 0.15);
    border-color: rgba(244, 162, 97, 0.2);
    background: rgba(255,255,255,0.06);
}

/* IMAGE */
.ceo-img {
    margin-bottom: 24px;
}

.ceo-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f4a261;
    box-shadow: 0 8px 32px rgba(244, 162, 97, 0.25);
}

.nash-img{
  object-position: center 5%;
}

/* TEXT */
.ceo-info h2 {
    color: #f4a261;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.ceo-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.ceo-info p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.82;
    max-width: 360px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .ceo {
        grid-template-columns: 1fr;
    }
}


/* SUPPORT DEPARTMENT */

/* .support-team{
margin-top:40px;
text-align:center;

width: 100%;
max-width: 100%;   /* allow more space */
/* margin-left:auto;
margin-right:auto;
} */


.support-grid{
display:flex;
gap:30px;
flex-wrap:nowrap;
overflow:hidden;
}

.support-card{
position:relative;
flex:0 0 300px;   /* card width */
height:350px;     /* rectangle height */

border-radius:0;  /* remove rounded corners */
overflow:hidden;

cursor:pointer;
transition:transform .3s ease;
}


.support-card img{
width:100%;
height:100%;
object-fit:cover;
}

/* SUPPORT DEPARTMENT - INDIVIDUAL IMAGE ADJUSTMENTS */

.erika-img{
object-position: center 15%;
}

.ivonne-img{
object-position: center 9%;
}

.arci-img{
object-position: center 80%;
}

.reyel-img{
object-position: center 75%;
}

.marj-img{
object-position: center 25%;
}

.ailene-img{
object-position: center 25%;
}

.jasper-img{
object-position: center 100%;
}

.kally-img{
object-position: center 20%;
}

.roberto-img{
object-position: center 20%;
}

/* OPERATIONS DEPARTMENT - INDIVIDUAL IMAGE ADJUSTMENTS */

.jerlyn-img{
object-position: center 100%;
}

.angela-img{
object-position: center 70%;
}

.joy-img{
object-position: center 100%;
}

.nelgin-img{
object-position: center 100%;
}

.erica-img{
object-position: center 20%;
}

.support-card:hover{
transform:scale(1.05);
}

.card-info{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;

background:linear-gradient(
transparent,
rgba(0,0,0,0.85)
);

transform:translateY(100%);
transition:transform .35s ease;
}

.support-card:hover .card-info{
transform:translateY(0);
}

.card-info h4{
margin:0;
font-size:18px;
}

.card-info p{
margin:4px 0 0;
font-size:14px;
opacity:.8;
}

/* SLIDER */

.slider-wrapper{
position:relative;
max-width:1200px;
margin:auto;
}


.slider{
display:flex;
gap:25px;
overflow:hidden;
scroll-behavior:smooth;
}

.slide-btn{
position:absolute;
top:50%;
transform:translateY(-50%);

width:42px;
height:42px;

background:rgba(0,0,0,0.65);
border:none;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:white;
font-size:26px;
cursor:pointer;

transition:.3s;
}

.slide-btn:hover{
background:#f4a261;
}

.slide-btn.left{
left:-60px;
}

.slide-btn.right{
right:-60px;
}

/* MODAL */

.team-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.7);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.modal-content{
background:#1f1f1f;
padding:35px;
border-radius:20px;
max-width:420px;
text-align:center;
position:relative;
}

.modal-content img{
width:120px;
border-radius:50%;
margin-bottom:15px;
}

.close{
position:absolute;
top:15px;
right:20px;
font-size:24px;
cursor:pointer;
}

/* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:900px){

.about-company{
grid-template-columns:1fr;
text-align:center;
}

.ceo{
flex-direction:column;
}

.ceo-card{
flex-direction:column;
text-align:center;
}

.ceo-img img{
margin-bottom:15px;
}
}

.footer{
    margin-top: auto;
}

/* ===== MISSION & VISION (ABOUT PAGE VERSION) ===== */

.mission-vision {
    padding: 100px 10%;
    background: #f8fafc;
    position: relative;
    color: #111827;
}

.mission-vision .container {
    max-width: 1200px;
    margin: auto;
}

.mission-vision::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 6px 6px;

    opacity: 0.4;
    pointer-events: none;
}

/* GRID */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.mv-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #111827 0%, #1a2332 100%);
    color: white;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border-color: rgba(244, 162, 97, 0.2);
}

/* IMAGE */
.mv-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: 0.4s ease;
}

/* TAG */
.mv-tag {
    position: absolute;
    margin: 15px;
    padding: 6px 12px;
    font-size: 12px;
    background: #111827;
    color: #f59e0b;
    border-radius: 6px;
}

/* BODY */
.mv-body {
    padding: 25px;
}

.mv-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ffffff; /* 🔥 fix */
}

.mv-text {
    font-size: 14px;
    color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}
.mv-card:hover .mv-image {
    filter: brightness(1.1);
}

/* SUPPORT DEPARTMENT + OPERATIONS (FINAL FIXED) */

.support-team {
    position: relative;
    margin-top: 0px;
    text-align: center;

    width: 100%;            /* full width */
    max-width: 100%;        /* remove limit */
    margin-left: auto;
    margin-right: auto;

    padding: 90px 10%;

    background: url('images/bgsupport.jpg') no-repeat center/cover;
    overflow: hidden;
    padding-bottom: 120px; /* extra space for mobile */
}

/* DARK OVERLAY */
.support-team::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.support-team > * {
    position: relative;
    z-index: 1;
}

/* OPTIONAL: limit inner content width (clean layout) */
.support-team .slider-wrapper {
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .support-team {
        background-attachment: scroll;
        padding: 60px 5%;
    }
}

/* OPERATIONS DEPARTMENT */

.operations-team {
    position: relative;
    margin-top: 0px;
    text-align: center;
    width: 100%;            /* full width */
    max-width: 100%;        /* remove limit */
    margin-left: auto;
    margin-right: auto;
    padding: 90px 10%;
    background: url('images/volumehiring.jpg') no-repeat center/cover;
    overflow: hidden;
    padding-bottom: 120px; /* extra space for mobile */
}

/* DARK OVERLAY */
.operations-team::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.operations-team > * {
    position: relative;
    z-index: 1;
}

/* OPTIONAL: limit inner content width (clean layout) */
.operations-team .slider-wrapper {
    max-width: 1200px;
    margin: auto;
}