/* Vision & Mission Section - Enhanced Design with Background Images */

.vision-mission-section {
    position: relative;
    min-height: 60vh;
    background: #f1f5f7;
    overflow: hidden;
    padding: 25px 0 40px;
}


/* Background watermark text */

.vision-mission-section::before {
    content: 'COMPANY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
}


/* Section Header */

.vision-mission-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.vision-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #014e60;
    margin-bottom: 10px;
    letter-spacing: -1px;
}


/* Vision Mission Content */

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}


/* Vision Box */

.vision-box {
    position: relative;
    background: url('../../img/new/network.jpg') center center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 78, 96, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 78, 96, 0.8), rgba(1, 43, 61, 0.9));
    z-index: 1;
}

.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vision-box:hover::before {
    background: linear-gradient(135deg, rgba(1, 78, 96, 0.7), rgba(1, 43, 61, 0.8));
}


/* Vision Content */

.vision-content {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    height: 100%;
    justify-content: center;
}


/* Mission Box */

.mission-box {
    position: relative;
    background: url('../../img/ioannou4.jpg') center center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 78, 96, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 78, 96, 0.8), rgba(1, 43, 61, 0.9));
    z-index: 1;
}

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mission-box:hover::before {
    background: linear-gradient(135deg, rgba(1, 78, 96, 0.7), rgba(1, 43, 61, 0.8));
}


/* Mission Content */

.mission-content {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    height: 100%;
    justify-content: center;
}


/* Icons */

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-box:hover .vision-icon,
.mission-box:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}


/* Titles */

.vision-title,
.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* Descriptions */

.vision-description,
.mission-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */

@media (max-width: 1200px) {
    .vision-mission-content {
        gap: 30px;
    }
    .vision-mission-title {
        font-size: 3rem;
    }
    .vision-content,
    .mission-content {
        padding: 30px;
    }
    .vision-title,
    .mission-title {
        font-size: 1.6rem;
    }
    .vision-description,
    .mission-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 40px 0 30px;
    }
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .vision-mission-title {
        font-size: 2.5rem;
    }
    .vision-box,
    .mission-box {
        min-height: 350px;
    }
    .vision-content,
    .mission-content {
        padding: 25px;
    }
    .vision-icon,
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .vision-title,
    .mission-title {
        font-size: 1.5rem;
    }
    .vision-description,
    .mission-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-content {
        padding: 0 1rem;
    }
    .vision-box,
    .mission-box {
        min-height: 300px;
    }
    .vision-content,
    .mission-content {
        padding: 20px;
    }
    .vision-icon,
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .vision-title,
    .mission-title {
        font-size: 1.3rem;
    }
    .vision-description,
    .mission-description {
        font-size: 0.9rem;
    }
}