/* ---------------About Us------------------- */
/* =========================
   ABOUT US – GLOBAL
========================= */

.about-header {
    background-color: #ffffff;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}


/* =========================
   OUR HERITAGE
========================= */

.heritage-section {
    background-color: #ffffff;
}

.heritage-content {
    max-width: 720px;
}

.heritage-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.heritage-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    color: #2f2f2f;
    margin-bottom: 18px;
}


/* =========================
   FOUNDER IMAGE PLACEHOLDER
========================= */

.founder-image-box {
    width: 240px;
    height: 300px;
    border: 2px dashed #bdbdbd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #777;
    background-color: #fafafa;
}

.founder-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* -------------Contact Page--------------- */
.contact-header {
    text-align: center;
    margin: 60px 0 40px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 16px;
    color: #666;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #333;
}

.contact-cta {
    text-align: center;
    margin-bottom: 80px;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-cta p {
    font-size: 15px;
    color: #555;
}

/* =========================
   VISION & MISSION
========================= */

.about-vision-mission {
    background-color: #fafafa;
    font-family: 'Poppins', sans-serif;
}

.vm-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
}

.vm-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    position: relative;
}

.vm-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #f4c430;
    display: block;
    margin-top: 8px;
}

.vm-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.vm-focus {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.vm-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #8a4b08;
    margin-bottom: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .vm-card {
        padding: 24px;
    }

    .vm-title {
        font-size: 20px;
    }
}

/* =========================
   OUR PHILOSOPHY
========================= */

.about-philosophy {
    background-color: #fff7e6;
    font-family: 'Poppins', sans-serif;
}

.philosophy-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 14px;
}

.tamil-text {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.philosophy-divider {
    width: 80px;
    height: 3px;
    background-color: #f4c430;
    margin: 30px auto;
    border-radius: 2px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .philosophy-text {
        font-size: 15px;
    }

    .tamil-text {
        font-size: 14px;
    }
}