/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===================== Root Variables ===================== */
:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;

    /* Colors */
    --text-black: #111;
    --text-dark: #000;
    --text-muted: #555;
    --text-light: #fff;

    --bg-white: #ffffff;
    --bg-light: #f9f9f9;

    /* Radius */
    --radius-lg: 20px;
    --radius-md: 16px;

    /* Transition */
    --smooth: 0.3s ease;
}

/* Agency Intro Section */
.agency-intro {
    background: var(--bg-white);
    font-family: var(--font-primary);
}

.agency-intro h1 {
    color: var(--text-black);
    line-height: 1.2;
}

.agency-intro p {
    color: var(--text-muted);
}

.agency-intro .video-box img {
    width: 100%;
    max-width: 1300px;
    height: 400px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.agency-intro .btn-dark {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--smooth);
}

.agency-intro .btn-dark:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.agency-intro .row.text-center h4 {
    font-size: 1.5rem;
    color: var(--text-black);
}

/* Responsive */
@media (max-width: 992px) {
    .agency-intro h1 {
        font-size: 2rem;
    }

    .agency-intro .video-box img {
        height: auto;
    }
}


/* About Us Section */
.about-us {
    background: var(--bg-white);
    font-family: var(--font-primary);
}

.about-us h2 {
    font-size: 2.5rem;
    color: var(--text-black);
}

.about-us p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-us .about-img img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-us .about-img img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 1.8rem;
    }
}


/* Mission Section */
.mission-section {
    background: var(--bg-light);
    font-family: var(--font-primary);
}

.mission-section h2 {
    font-size: 2.3rem;
    color: var(--text-black);
}

.mission-section p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {

    .process-section h2,
    .mission-section h2 {
        font-size: 1.8rem;
    }

    .process-card {
        flex-direction: column;
        text-align: center;
    }

    .process-card .step {
        margin: 0 auto 15px;
    }
}

/* Additional Text Class */
.text {
    color: var(--text-dark);
    font-size: 21px;
}