﻿:root {
    --green: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    --blue: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    --purple: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --orange: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    --red: linear-gradient(135deg, #e74c3c 0%, #fd7979 100%);
    --card-bg: #ffffff;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 20px;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.dawn-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

/* Horizontal layout for left text + right image */
.dawn-content-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* Left content */
.dawn-left {
    flex: 1 1 50%;
}

/* Right image */
.dawn-image-wrapper {
    flex: 1 1 45%;
    position: relative;
}

/* Tag style */
.tag {
    background: var(--primary);
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

    .tag span {
        color: var(--primary);
        font-size: 20px;
        padding-inline-end: 5px;
    }

/* Heading */
.dawn-title {
    font-size: 60px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

    .dawn-title span {
        color: var(--primary);
    }

/* Description */
.dawn-description {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

/* Image card */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .image-wrapper:hover {
        transform: scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .image-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
    }

    .image-wrapper:hover::before {
        opacity: 1;
    }

    .image-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.2));
        z-index: 1;
        pointer-events: none;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: inherit;
        transition: transform 0.4s ease;
        z-index: 0;
        position: relative;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

/* Floating stat box */
.dawn-right-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    transform: translateY(50%);
    background-color: #ffffff;
    border: 1px solid var(--primary);
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    animation: floatUpDown 3s ease-in-out infinite;
}

    .dawn-right-stat-box .label {
        font-size: 15px;
        font-weight: 500;
        color: #555;
        margin: 0;
    }

    .dawn-right-stat-box .number {
        font-size: 40px;
        font-weight: 900;
        color: var(--primary);
        margin: 0;
    }

.mission-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.mission-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.mission-image-box {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.mission-content {
    flex: 1 1 500px;
}

.mission-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

    .mission-heading span {
        color: var(--primary);
    }

.mission-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mission-card {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    max-width: 100%;
    gap: 16px;
}

.mission-icon {
    color: forestgreen;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 24px;
}

.mission-text h3 {
    font-size: 1.4rem;
    color: #111827;
    margin: 0 0 8px;
    font-weight: 700;
}

.mission-text p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    .mission-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .mission-heading {
        font-size: 2rem;
    }

    .mission-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mission-icon {
        margin-bottom: 12px;
    }

    .mission-text h3 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 24px;
    }
}
