/* Statements section styles */
.statements-section {
    background: linear-gradient(hsl(150, 10%, 96%),#ecf1f0
    ),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.statements-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.statements-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* background: linear-gradient(45deg, #3498db, #2ecc71); */
    color: #114c72;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    display: inline-block;
}

.statements-subtitle {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #a4b0be;
    line-height: 1.6;
}

.statements-diagram {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.statement-item {
    flex: 1;
    position: relative;
    padding: 2rem;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 27, 27, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.statement-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.statement-item:hover .statement-circle {
    transform: scale(1.05);
}

.statement-icon {
    font-size: 2.5rem;
    color: #ffffff;
}

.vision .statement-circle {
    background: linear-gradient(135deg, #075c72, #075c72);
}

.mission .statement-circle {
    background: linear-gradient(135deg, #058688, #058688);
}

.values .statement-circle {
    background: linear-gradient(135deg, #07d0ac, #07d0ac);
}

.statement-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: #0e4263;
}

.statement-item p {
    color: #0e4263;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.statement-item p2 {
    color: #0e4263;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .statements-diagram {
        flex-direction: column;
        align-items: center;
    }

    .statement-item {
        max-width: 100%;
        width: 100%;
    }

    .statement-circle {
        width: 100px;
        height: 100px;
    }

    .statement-icon {
        font-size: 2rem;
    }
}
.vision {
    border: 5px solid #075c72;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.1);
}

.vision:hover {
    border-color: #07d0ac;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.2);
}

/* Mission card border */
.mission {
    border: 5px solid #058688;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.1);
}
.mission:hover {
    border-color: #07d0ac;
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.2);
}

/* Values card border */
.values {
    border: 5px solid rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.1);
}

.values:hover {
    border-color: rgba(46, 204, 113, 0.8);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.2);
}
