
/* ============================================
   Mission Hero Section
   ============================================ */
.mission-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mission-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 1, 0.5) 0%, rgba(12, 39, 101, 0.5) 100%);
    z-index: 1;
}

.mission-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.mission-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.mission-hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================
   Philosophy Section
   ============================================ */
.philosophy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.philosophy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Philosophy Content */
.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-intro p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 1em;
}
.philosophy-intro h2 {
    font-size: 26px;
    letter-spacing: 4px;
}

/* Philosophy Blocks */
.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-block {
    background-color: #ffffff80;
    padding: 3em 3em;
    border-radius: 4px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    /* margin-left: 30px; */
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alignself1 {
 align-self: flex-start;
}
.alignself2 {
 align-self: center;
}
.alignself3 {
   align-self: flex-end; 
}
/* ============================================
   Values Section
   ============================================ */
.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.values-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-title {
    color: #fff;
        font-size: 38px;
    font-weight: bold;

    margin-bottom: 10px;
}

/* Values Cards */
.values-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.value-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 79%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.value-label {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a5d;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.value-description {
    font-size: 12px;
    color: #1a2a5d;
    line-height: 1.6;
}

/* ============================================
   Responsive Design (Tablet)
   ============================================ */
@media (max-width: 1024px) {
    .values-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .value-circle {
        width: 180px;
        height: 180px;
    }

    .value-label {
        font-size: 18px;
    }

    .value-description {
        font-size: 11px;
    }

    .philosophy-block {
        padding: 25px;
        margin-left: 20px;
    }
}

/* ============================================
   Responsive Design (Smartphone)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .mission-hero {
        height: 200px;
    }

    .mission-hero-title {
        font-size: 28px;
    }

    .mission-hero-subtitle {
        font-size: 12px;
    }

    .philosophy-section {
        padding: 60px 0;
    }

    .values-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title,
    .values-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .philosophy-intro p {
        font-size: 14px;
    }

    .philosophy-blocks {
        gap: 20px;
    }

    .philosophy-block {
        width: 100%;
        padding: 40px;
        margin-left: 15px;
        font-size: 16px;
    }

    .values-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-circle {
        width: 160px;
        height: 160px;
    }

    .value-label {
        font-size: 16px;
    }

    .value-description {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .mission-hero {
        height: 150px;
    }

    .mission-hero-title {
        font-size: 22px;
    }

    .section-title,
    .values-title {
        font-size: 26px;
    }

    .philosophy-intro p {
        font-size: 13px;
    }
    .philosophy-intro h2 {
        font-size: 20px;
    }

    .philosophy-block {
        padding: 15px;
        margin-left: 0;
        font-size: 14px;
        width: 100%;
    }

    .value-circle {
        width: 140px;
        height: 140px;
    }

    .value-label {
        font-size: 14px;
    }

    .value-description {
        font-size: 9px;
    }
}
