:root {
    --red-1: #e53935;
    --red-2: #c62828;
}

/* Base styles */
body {
    padding-top: 85px;
    font-family: 'DMSans', sans-serif;
}

.gradient-red {
    background: linear-gradient(180deg, rgba(229, 57, 53, 0.08) 0%, rgba(198, 40, 40, 0.04) 100%);
}

.text-shadow {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Header */
.main-header {
    z-index: 1050;
    position: fixed;
    top: 0;
    width: 100%;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.3s ease;
}

.bg-red {
    background-color: #d7201d !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bg-white {
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-logo,
.header-title {
    transition: all 0.4s ease;
}

/* Form styling */
select.form-select {
    border: 2px solid #dc3545;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* Mission Cards Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mission-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background-color: #fff6f6;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(255, 46, 46, 0.3);
}

.custom-hr {
    border: none;
    border-top: 2px solid #ff2e2e;
    width: 100%;
    margin: 1.5rem 0;
}

.map-image {
    max-width: 100%;
    height: auto;
}

/* Section heights */
.one-section,
.two-section,
.three-section,
.four-section {
    width: 100%;
}

/* .four-section {
    width:100vh;
} */

.description {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    font-weight: 600;
}

.point {
    font-size: 18px;
}

.point-reg {
    font-size: 28px;
}

.blur {
    height: 140px;
}

.bg-danger{
    background-color:#d7201d !important;
}

/* ----------------------------------------------- */
/* RESPONSIVE BREAKPOINTS */
/* ----------------------------------------------- */

@media (max-width: 1182px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .four-section {
        height: 28vh !important;
    }

    .blur {
        height: 200px !important;
    }
}

/* Tablet vertical */
@media (max-width: 991px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape & small tablets */
@media (max-width: 767px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .description {
        font-size: 14px;
        bottom: 25px;
        color: #000;
    }

    .point,
    .point-reg {
        font-size: 14px;
    }

    .four-section {
        height: 35vh !important;
    }

    .blur {
        height: 100px !important;
    }
}

/* Phones: 430px ↓ */
@media (max-width: 430px) {
    .home_logo {
        width: 150px;
    }

    .one-section {
        height: 90vh !important;
    }

    .two-section {
        height: 60vh !important;
    }

    .three-section {
        height: 60vh !important;
    }

    .four-section {
        height: 24vh !important;
    }

    .description {
        font-size: 12px !important;
    }
    
}

/* Phones: 414px ↓ */
@media (max-width: 414px) {
    .feature-list span {
        background-color: #fff;
        padding: 5px;
        border-radius: 8px;
        font-size: 16px;
        color: #000;
    }

    .last-logo{
        visibility: hidden;
    }
}

/* Smallest Phones: 375px ↓ */
@media (max-width: 375px) {
    .home_logo {
        width: 140px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .description {
        font-size: 12px !important;
    }

    .last-logo{
        visibility: hidden;
    }
}