:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
      "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
      "Source Han Sans CN", sans-serif;
}

@font-face {
  font-family: 'Nexa';
  src: url('./assets/fonts/Nexa_Light.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./assets/fonts/Nexa_Bold.otf') format('opentype');
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./assets/fonts/Nexa-Heavy.ttf') format('opentype');
  font-weight: 900; /* Bold */
  font-style: normal;
  font-display: swap;
}


/* =========================
   Header Section
   ========================= */
.company-header {
    text-align: center;
    margin-bottom: 10px;
}

.company-title {
    font-size: 2.8rem;
    color: #7c1400;
    margin-bottom: 15px;
    font-weight: 900; /* Nexa-Heavy for maximum boldness */
    text-align: center;
}

.company-title .our {
    color: #7c1400;
    font-weight: 900;
}

.company-title .company {
    color: #7c1400;
    font-weight: 900;
}

/* =========================
   All text centered in sections
   ========================= */
.company-description,
.mission-vision,
.mission,
.vision,
.objectives-section,
.objectives-section p,
.objectives-list,
.objectives-list li {
    text-align: center;
}

/* Optional: center content inside mission & vision cards */
.mission, .vision {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Adjust mission & vision headings to be centered and bold */
.mission h2, .vision h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700; /* Nexa-Bold */
    text-align: center;
    color: #7c1400;
}

.about-us-page {
    margin-top: 100px;    /* Space for header */
    margin-bottom: 50px; /* Space for footer */
    padding: 40px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-family: Nexa, var(--default-font-family);
    color: #333;
    line-height: 1.6;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* =========================
   Header Section
   ========================= */
.company-header {
    text-align: center;
    margin-bottom: 10px;
}

.company-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.company-title .our {
    color: #7c1400;
    font-weight: 900px;
}

.company-title .company {
    color: #7c1400;
    font-weight: bold;
}


.company-description {
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #555;
}

/* =========================
   Mission & Vision
   ========================= */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.mission, .vision {
    flex: 1 1 300px;
    padding: 25px;
    background-color: #fff4f3;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission h2, .vision h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* =========================
   Objectives Section
   ========================= */
.objectives-section {
    margin-bottom: 40px;
}

.objectives-section h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.objectives-section p {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #555;
}

.objectives-list {
    list-style: disc inside;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.objectives-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    font-size: 1.05rem;
}

/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
    .about-us-page {
        margin-top: 80px;
        margin-bottom: 80px;
        padding: 30px 15px;
    }
    .company-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 1.8rem;
    }
    .mission, .vision {
        padding: 20px;
    }
    .objectives-section h2 {
        font-size: 1.6rem;
    }
}








/* Container */
.aboutus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    margin-top: 60px;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 3rem;
    font-family: Nexa, var(--default-font-family);
    font-weight: 900;
    color: #7c1400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* =========================
   Enhanced Contact Section UI
   ========================= */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

.contact-info {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    padding: 24px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 5px solid #7c1400;
}

.info-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c2505;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block p, .info-block ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Links List UI Styling */
.social-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.social-links-list strong {
    width: 100px;
    color: #333;
}

.info-block a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    word-break: break-all;
}

.info-block a:hover {
    color: #0c2505;
    text-decoration: underline;
}

/* Map Container Styling */
.map-container {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }
    .map-container {
        min-height: 350px;
        width: 100%;
    }
}