  :root{
  --blue:#0b4dbb;
  --red:#e31e24;
  --dark:#111827;
  --gray:#6b7280;
  --light:#f9fafc;
}

*{ margin:0; padding:0; box-sizing:border-box; }

body{ font-family:'Kantumruy Pro', sans-serif; background:var(--light); color:var(--dark); line-height:1.6; }
.container{ width:90%; max-width:1200px; margin:auto; }
section{ padding:90px 0; }
h1,h2,h3{ margin-bottom:15px; }
h2{ font-size:32px; text-align:center; margin-bottom:50px; position:relative; }
h2::after{ content:''; width:60px; height:4px; background:var(--red); display:block; margin:15px auto 0; border-radius:2px; }




/* CTA */
.cta{ background:linear-gradient(135deg,var(--blue),#062d73); color:white; text-align:center; padding:100px 0; }
.cta h2{ color:white; }
.cta h2::after{ background:white; }
.cta .btn{ background:white; color:var(--blue); }
.cta .btn:hover{ background:#eee; }

/* NEWS BAR */
.news-bar{ background: #0044cc; color: #ffffff; padding: 8px 0; overflow: hidden; font-family: 'Kantumruy Pro', sans-serif; box-shadow: 0 2px 5px rgba(0,0,0,0.2); display: flex; align-items: center; }
.news-container{ display: flex; align-items: center; width: 100%; margin: 0 auto; position: relative; }
.news-label{ background: #e74c3c; color: #333; padding: 5px 20px; font-weight: bold; white-space: nowrap; z-index: 10; border-radius: 0 20px 20px 0; margin-right: 10px; display: flex; align-items: center; box-shadow: 3px 0 5px rgba(0,0,0,0.2); }
.news-label i { margin-right: 8px; color: #e74c3c; animation: blink 1s infinite; }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
.news-scroll{ overflow: hidden; white-space: nowrap; display: flex; align-items: center; width: 100%; }
.news-track{ display: inline-flex; animation: scroll-left 30s linear infinite; }
.news-track span{ font-size: 15px; padding-right: 50px; display: flex; align-items: center; }
.news-track span::after{ content: "•"; margin-left: 25px; color: #ffcc00; }
@keyframes scroll-left{ 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.news-track:hover{ animation-play-state: paused; cursor: pointer; color: #ffffff; }
/* ABOUT SECTION */
.about-section {
  background: #f5f7fa;
  padding: 100px 20px;
  text-align: center;
}

.about-section .about-introduction {
  max-width: 800px;
  margin: auto;
}

.about-section h2 {
  font-size: 36px;
  color: #0b4dbb;
  margin-bottom: 20px;
  position: relative;
}

.about-section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #e31e24;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-section .btn {
  background: #e31e24;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-section .btn:hover {
  background: #c81c1c;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section h2 { font-size: 28px; }
  .about-section p { font-size: 16px; }
}

/*.activities-section */
.activities-section {
  padding: 100px 20px;
}

.activities-section h2 {
  font-size: 36px;
  color: #0b4dbb;
  margin-bottom: 50px;
  position: relative;
}

.activities-section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #e31e24;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Card grid */
.activities-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Activity Card */
.activity-card-link {
  text-decoration: none;
  color: inherit;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.activity-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-content h3 {
  font-size: 20px;
  color: #0b4dbb;
  margin-bottom: 10px;
}

.activity-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.activity-content p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #e31e24;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.activity-card:hover .read-more {
  color: #c81c1c;
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .activities-section h2 { font-size: 28px; }
  .activity-content h3 { font-size: 18px; }
}

/* WHAT WE DO SECTION (ICON + TEXT STYLE) */
.what-we-do-section {
  background: #f5f7fa;
  padding: 100px 20px;
  text-align: center;
}

.what-we-do-section h2 {
  font-size: 36px;
  color: #0b4dbb;
  margin-bottom: 50px;
  position: relative;
}

.what-we-do-section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #e31e24;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-card .icon {
  font-size: 40px;
  color: #0b4dbb;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: #0b4dbb;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-small {
  background: #e31e24;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-small:hover {
  background: #c81c1c;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-do-section h2 { font-size: 28px; }
  .feature-card h3 { font-size: 18px; }
  .feature-card .icon { font-size: 35px; }
}
  
  
  /* នាំចូល Font ខ្មែរ Kantumruy Pro */
    @import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:wght@400;700&display=swap');

    :root {
        --primary-blue: #0056b3;
        --brand-red: #e31e24; /* ពណ៌ក្រហមតាមរូបភាព */
        --text-dark: #333;
        --white: #ffffff;
        --bg-gray: #f8f9fa;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* ស្រមោលធំទូលាយ */
    }

    body {
        background-color: var(--bg-gray);
        font-family: 'Kantumruy Pro', sans-serif;
    }

    .about-section {
        max-width: 1100px;
        margin: 60px auto;
        padding: 20px;
        text-align: center;
    }

    .about-introduction {
        margin-bottom: 60px;
    }

    .about-introduction h1 {
        color: var(--primary-blue);
        font-size: 2.8rem;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .about-introduction p {
        font-size: 1.1rem;
        color: #555;
    }

    /* Vision & Mission Styles */
    .vm-container {
        display: flex;
        gap: 30px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .vm-box {
        flex: 1;
        min-width: 300px;
        background: var(--white);
        padding: 50px 40px;
        border-radius: 20px; /* ជ្រុងកោងខ្លាំង */
        box-shadow: var(--card-shadow);
        border-top: 6px solid var(--primary-blue);
        transition: all 0.4s ease;
    }

    .vm-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .vm-box i {
        font-size: 3.5rem;
        color: var(--brand-red);
        margin-bottom: 25px;
    }

    .vm-box h2 {
        color: var(--primary-blue);
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    /* Values Grid Styles */
    .values-title {
        margin: 80px 0 45px;
        color: var(--primary-blue);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .value-item {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 20px; /* ជ្រុងកោងដូច Card សមាជិក */
        box-shadow: var(--card-shadow);
        /* បន្ទាត់ក្រហមខាងក្រោមតាម PRESIDENT CARD */
        border-bottom: 6px solid var(--brand-red); 
        transition: all 0.3s ease;
    }

    .value-item:hover {
        transform: scale(1.05);
    }

    .value-item i {
        font-size: 2.5rem;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }

    .value-item h3 {
        margin-bottom: 15px;
        color: var(--text-dark);
        font-size: 1.4rem;
    }

    p {
        line-height: 1.8;
        color: #666;
    }

    /* --- Responsive Design --- */
    @media (max-width: 768px) {
        .about-header h1 { font-size: 2rem; }
        .vm-container { flex-direction: column; } /* រៀបបញ្ឈរលើ Mobile */
        .vm-box { min-width: 100%; }
        .values-grid { grid-template-columns: 1fr; }
    }