﻿/* ============================================================
   ABOUT PAGE — GLOBAL STRUCTURE & TYPOGRAPHY
   ------------------------------------------------------------
   Defines the visual rhythm, spacing, and readability of the
   About page. Complements hero.css and maintains REFRESH GLOBAL’s
   corporate identity.
   ============================================================ */


/* ============================================================
   SECTION TITLES
   ------------------------------------------------------------
   Clean, bold headers used across all About sections.
   ============================================================ */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
    position: relative;
}


/* ============================================================
   PARAGRAPH STYLING
   ------------------------------------------------------------
   Default paragraph styling for About page content.
   Does NOT affect hero captions (overridden below).
   ============================================================ */
section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
}


/* ============================================================
   HIGHLIGHT BOXES
   ------------------------------------------------------------
   Used for Mission, Projects, and emphasized content blocks.
   ============================================================ */
.highlight-box {
    background: #ffffff;
    border-left: 4px solid #007bff;
    padding: 1.5rem 1.8rem;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

    .highlight-box h4 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .highlight-box ul li {
        margin-bottom: 0.8rem;
    }


/* ============================================================
   VALUES GRID
   ------------------------------------------------------------
   Two-column layout for corporate values.
   ============================================================ */
.row .col-md-6 h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.row .col-md-6 p {
    margin-bottom: 0;
}


/* ============================================================
   WHY CHOOSE US LIST
   ------------------------------------------------------------
   Clean bullet list with spacing and readability.
   ============================================================ */
.why-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #333;
}



/* ============================================================
   HERO CAPTION (TITLE + SUBTITLE ANIMATION)
   ------------------------------------------------------------
   Ultra-slow, luxury-brand pacing.
   Smooth, elegant, premium transitions.
   ============================================================ */

.hero-caption {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    color: #fff;
    overflow: hidden;
    height: 120px; /* Locks height for smooth transitions */
    z-index: 5;
}

    /* Each caption block (title + subtitle pair) */
    .hero-caption .caption {
        position: absolute;
        opacity: 0;
        transform: translateY(20px);
        /* Luxury pacing: 32s cycle */
        animation: captionCycle 32s infinite;
    }

        /* Title styling */
        .hero-caption .caption h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
            color: #fff;
        }

        /* Subtitle styling */
        .hero-caption .caption p {
            font-size: 1.2rem;
            margin: 8px 0 0;
            opacity: 0.9;
            color: #fff !important;
        }

        /* ============================================================
   LUXURY TIMING — 32s TOTAL / 4 CAPTIONS = 8s EACH
   ------------------------------------------------------------
   Slow, elegant, premium pacing.
   ============================================================ */
        .hero-caption .caption:nth-child(1) {
            animation-delay: 0s;
        }

        .hero-caption .caption:nth-child(2) {
            animation-delay: 8s;
        }

        .hero-caption .caption:nth-child(3) {
            animation-delay: 16s;
        }

        .hero-caption .caption:nth-child(4) {
            animation-delay: 24s;
        }


/* ============================================================
   CAPTION ANIMATION — FADE + TRANSFORM SEQUENCE
   ------------------------------------------------------------
   Cinematic, premium, luxury-brand animation.
   ============================================================ */
@keyframes captionCycle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    12% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.tech-img-wrapper {
    width: 100%;
    height: 320px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-img-wrapper img {
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.field-img-wrapper {
    width: 100%;
    height: 320px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .field-img-wrapper img {
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
