/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    align-items: center;
    gap: 20px;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h2 {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 10px;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.text-content ul li::before {
    content: "✔";
    color: orange;
    margin-right: 10px;
}

.image-container {
    flex: 1;
    max-width: 500px;
}

.image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 50px 20px;
}

.mission-vision-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.about-card .icon {
    margin-bottom: 15px;
}

.about-card .icon img {
    width: 50px;
    height: 50px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Mngr vision */
.vision-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.vision-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.highlight-box {
    width: 300px;
    height: 100px;
    background-color: #fff5e6; /* Light beige color */
    flex-shrink: 0;
}

.vision-content {
    max-width: 800px;
}

.vision-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.vision-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Feedback section */
.feedback-section body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.feedback-section {
    text-align: center;
    padding: 40px 20px;
    /* background: linear-gradient(to bottom, #ffffff, #f7f7f7); */
}

.feedback-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feedback-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feedback-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 320px;
    text-align: left;
    transition: transform 0.3s;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.feedback-card img {
    height: 50px;
    margin-bottom: 15px;
}

.feedback-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}

.feedback-card .profile {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.profile img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.profile-info {
    font-size: 0.9rem;
}

.profile-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.profile-info span {
    font-size: 0.85rem;
    color: #777;
}

.stars {
    color: #f4b400;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    .mission-vision-container {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .vision-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .highlight-box {
        width: 100%;
        height: 100px;
    }

    .vision-content h3 {
        font-size: 1.3rem;
    }

    .vision-content h2 {
        font-size: 1.8rem;
    }

    .vision-content p {
        font-size: 0.95rem;
    }
    .feedback-cards {
        flex-direction: column;
        align-items: center;
    }
}
