/* RESET */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
}

/* -----------------------------------
   PAGE BANNER / BREADCRUMB
----------------------------------- */
.page-banner {
      position: relative;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}


.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
        url('../img/about-us-bnr.png');
    background-size: cover;
    background-position-y: 20%;
    filter: brightness(0.7);
    z-index: -1;
}

.page-banner-content h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.page-banner-content p {
     font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.page-banner-content a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}


/* -----------------------------------
   SECTION 1 — HERO WITH IMAGE
----------------------------------- */
.about-hero {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 80vh;
    gap: 60px;
    padding: 140px 8% 100px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.20);
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
}



/* -----------------------------------
   SECTION 2 — ACCORDION
----------------------------------- */
/* -----------------------------------
   CREATIVE AGENCY ACCORDION BACKGROUND
----------------------------------- */
.creative-accordion {
    position: relative;
    padding: 140px 8%;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(10px);
    animation: float 6s infinite ease-in-out alternate;
}

.fs-a { width: 180px; height: 180px; background: #c1c1c1; top: -40px; left: 10%; }
.fs-b { width: 120px; height: 120px; background: #dcdcdc; bottom: 30%; right: 15%; }
.fs-c { width: 150px; height: 150px; background: #bfbfbf; bottom: -40px; left: 40%; }

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-25px); }
}

/* -----------------------------------
   3D CARD + GLASS EFFECT
----------------------------------- */
.card-3d {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    margin-bottom: 18px;
    border-radius: 14px;
    box-shadow: 
        0 18px 45px rgba(0,0,0,0.1),
        inset 0 0 18px rgba(255,255,255,0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: translateY(-6px);
}

/* ---------------------------------------
   Mission & Values Section
--------------------------------------- */
.mission-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    background: #fafafa;
}

.mv-container {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.mv-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 60px;
}

/* Grid */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.mv-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Animated BG Waves */
.mv-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.mv-wave {
    position: absolute;
    width: 1600px;
    height: 1400px;
    top: -30%;
    left: -20%;
    border-radius: 45%;
    filter: blur(50px);
    opacity: 0.22;
    animation: mvRotate 22s infinite linear;
}

.wave1 { background: #dcdcdc; }
.wave2 { background: #cfcfcf; animation-duration: 30s; opacity: 0.18; }
.wave3 { background: #e5e5e5; animation-duration: 26s; opacity: 0.15; }

@keyframes mvRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media(max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




/* -----------------------------------
   SECTION 3 — TIMELINE
----------------------------------- */
/* -----------------------------
   TIMELINE MAIN LAYOUT
----------------------------- */
.lsa-timeline-section {
    padding: 150px 8%;
    background: #fff;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 80px auto;
}

/* Vertical center line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: #dcdcdc;
    height: 0;
    animation: timelineGrow 2.5s ease forwards;
}

#progress-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: #111;
    height: 0;
    top: 0;
    z-index: 5;
}

/* -----------------------------
   MILESTONE STRUCTURE
----------------------------- */
.milestone {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.milestone.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone-left,
.milestone-right {
    width: 50%;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #111;
    border: 4px solid white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease;
}

.timeline-dot.visible {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* -----------------------------
   CARD DESIGN
----------------------------- */
.milestone-card {
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e3e3e3;
    transition: 0.35s ease;
}

.milestone-card.light {
    background: #fff;
}

.milestone-card.dark {
    background: #111;
    color: #fff;
    border-color: #333;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.milestone-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.7;
}

.milestone-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.milestone-card p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Timeline grow animation */
@keyframes timelineGrow {
    from { height: 0; }
    to { height: 100%; }
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .milestone {
        flex-direction: column;
    }

    .milestone-left,
    .milestone-right {
        width: 100%;
        text-align: center;
    }

    .timeline-dot {
        left: calc(50% - 2px);
    }

    .milestone-card {
        margin-top: 20px;
    }
}




/* ANIMATION */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}



/* RESPONSIVE */
@media(max-width: 900px) {

    .about-hero {
        grid-template-columns: 1fr;
        padding: 120px 6% 60px;
        gap: 40px;
    }

    .about-hero-image img {
        height: 280px;
    }

}


/* ---------------------------------------
   Mission & Values – Card Design
--------------------------------------- */
.mission-section {
    position: relative;
    padding: 60px 8%;
    overflow: hidden;
    background: #f7f7f7;
}

.mv-container {
    position: relative;
    z-index: 10;
    max-width: 1150px;
    margin: auto;
    text-align: center;
}

.mv-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

/* Card Wrapper */
.mv-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Individual Card */
.mv-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.45);

    text-align: left;
    animation: floatUp 1.5s ease both;
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
}

.mv-card p,
.mv-list li {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    margin-bottom: 10px;
}

/* Floating Animation */
@keyframes floatUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ---------------------------------------
   Background Waves (same as before)
--------------------------------------- */
.mv-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.mv-wave {
    position: absolute;
    width: 1600px;
    height: 1400px;
    top: -30%;
    left: -20%;
    border-radius: 45%;
    filter: blur(50px);
    opacity: 0.22;
    animation: mvRotate 22s infinite linear;
}

.wave1 { background: #dcdcdc; }
.wave2 { background: #bfbfbf; animation-duration: 27s; opacity: 0.18; }
.wave3 { background: #e7e7e7; animation-duration: 33s; opacity: 0.13; }

@keyframes mvRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media(max-width: 900px) {
    .mv-card-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 500px) {
    #progress-line {
       display: none;
    }
    .timeline-line{
        display: none;
    }
}

