/* About Page Styles */

/* About Description Section */
.about-description {
    padding: 120px 0 80px 0;
}

.about-description .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-description .section-title h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-description .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2395a0, #fcae30);
    border-radius: 2px;
}

.about-description .section-title p {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    color: #555;
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    text-align: justify;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-content ul li {
    padding: 12px 0;
    padding-right: 35px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.about-content ul li:last-child {
    border-bottom: none;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 12px;
    color: #2395a0;
    font-weight: bold;
    font-size: 18px;
}

/* Vision, Mission & Goals Section */
.vmg-section {
    padding: 80px 0;
}

.vmg-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.vmg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.vision-card::before {
    background: linear-gradient(90deg, #2395a0, #1a7580);
}

.mission-card::before {
    background: linear-gradient(90deg, #fcae30, #f39c12);
}

.goals-card::before {
    background: linear-gradient(90deg, #27ae60, #229954);
}

.vmg-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(35, 149, 160, 0.25);
}

.vmg-card .icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vmg-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.vision-card .icon-box {
    background: linear-gradient(135deg, #2395a0, #1a7580);
    color: #ffffff;
}

.mission-card .icon-box {
    background: linear-gradient(135deg, #fcae30, #f39c12);
    color: #ffffff;
}

.goals-card .icon-box {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #ffffff;
}

.vmg-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.vmg-content {
    font-family: 'Cairo', sans-serif;
    line-height: 1.9;
    color: #555;
    font-size: 1.1rem;
    text-align: right;
}

.vmg-content p {
    margin-bottom: 15px;
}

.vmg-content ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.vmg-content ul li {
    padding: 12px 0;
    padding-right: 30px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.vmg-content ul li:last-child {
    border-bottom: none;
}

.vmg-content ul li:hover {
    padding-right: 35px;
    color: #2395a0;
}

.vmg-content ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #2395a0;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.vmg-content ul li:hover::before {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .vmg-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-description {
        padding: 100px 0 60px 0;
    }

    .about-description .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        font-size: 1.05rem;
        text-align: right;
    }

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

    .vmg-card {
        padding: 40px 25px;
    }

    .vmg-card h3 {
        font-size: 1.6rem;
    }

    .vmg-card .icon-box {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-description {
        padding: 90px 0 50px 0;
    }

    .about-description .section-title h2 {
        font-size: 1.7rem;
    }

    .vmg-card h3 {
        font-size: 1.4rem;
    }
}