  :root {
      --primary: #1f2937;      /* Primary color */
      --accent: #6b7280;    /* Accent, secondary color */
      --accent-hover: #4b5563;  /* Accent hover color */
      --accent-gradient: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%);
      --accent-soft: rgba(75, 85, 99, 0.12);
      --accent-soft-strong: rgba(75, 85, 99, 0.18);
      --card-bg: #ffffff;      /* Card background */
      --text-dark: #111827;    /* Dark text */
      --text-muted: #4b5563;   /* Muted text */
      --border: #e5e7eb;       /* Borders */
      --bg:#ffffff;
      --shadow: 0 4px 20px rgba(31, 41, 55, 0.08);
      --shadow-sm: 0 6px 20px rgba(0,0,0,0.06);
      --shadow-md: 0 12px 30px rgba(0,0,0,0.10);
      --shadow-lg: 0 20px 45px rgba(0,0,0,0.16);
      --shadow-card-hover: 0 25px 60px rgba(0,0,0,0.18);
      --shadow-hover: 0 12px 32px rgba(31, 41, 55, 0.15);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--bg);
      overflow-x: hidden;
  }

  .about-section {
    padding: 120px 40px 10px;
    background: var(--bg);
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
  }


  /* IMAGE */
  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;

  }

  .about-h1 {
    text-align: center;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #2b2b2b;
    margin-bottom: 30px;
  }

  .about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
    max-width: 620px;
    text-align: justify;
    
  }

  /* INDUSTRIES */
  .about-industries {
    margin-top: 30px;
  }

  .about-industries h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }


  .vision-mission {
    margin: 80px auto ;
    max-width: 1200px;
  }

  .vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .vm-card {
    background: #fff;
    padding: 40px 36px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }

  .vm-icon {

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;

  }

  .vm-icon i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--accent-soft);
    border-radius: 14px;
    font-size: 28px;
    color: var(--accent-hover);
  }


  .vision-card .vm-icon i {
    background: rgba(59, 130, 246, 0.12);
  }

  .vision-card .vm-icon i {
    color: #2563eb;
  }


  .mission-card .vm-icon i {
    background: rgba(16, 185, 129, 0.12);
  }

  .mission-card .vm-icon i {
    color: #059669;
  }

  .vm-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .vm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
  }

/* ===================================== */
/* LARGE DESKTOP (1025px – 1366px) */
/* ===================================== */
@media (min-width: 1025px) and (max-width: 1366px) {

  .about-section {
    padding: 110px 40px 20px;
  }

  .about-container {
    gap: 50px;
    max-width: 1100px;
  }

  .about-h1 {
    font-size: 58px;
    letter-spacing: 5px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
  }

  .vm-grid {
    gap: 30px;
  }

  .vision-mission{
    padding: 0 20px;
  }
}


/* ===================================== */
/* TABLET LANDSCAPE (769px – 1024px) */
/* ===================================== */
@media (min-width: 769px) and (max-width: 1024px) {

  .about-section {
    padding: 100px 30px 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-h1 {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    margin: 0 auto 18px;
    max-width: 700px;
  }

  .about-image img {
    max-width: 500px;
    margin: 0 auto;
  }

  .vm-grid {
    gap: 30px;
  }

  .vision-mission{
    padding: 0 20px;
  }
}


/* ===================================== */
/* TABLET PORTRAIT (601px – 768px) */
/* ===================================== */
@media (min-width: 601px) and (max-width: 768px) {

  .about-section {
    padding: 100px 25px 10px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-h1 {
    font-size: 40px;
    letter-spacing: 3px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
    margin: 0 auto 16px;
  }

  .about-image img {
    max-width: 420px;
    margin: 0 auto;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vm-card {
    padding: 34px 28px;
  }

  .vision-mission {
    margin: 45px 30px;
  }
}


/* ===================================== */
/* MOBILE LARGE (481px – 600px) */
/* ===================================== */
@media (min-width: 481px) and (max-width: 600px) {

  .about-section {
    padding: 100px 40px 10px;
  }

  .about-h1 {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .vision-mission {
    margin-top: 60px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vm-card {
    padding: 30px 24px;
  }

  .vm-icon {
    gap: 10px;
  }

  .vm-icon i {
    margin-bottom: 0;
  }
}


/* ===================================== */
/* MOBILE SMALL (≤ 480px) */
/* ===================================== */
@media (max-width: 480px) {

  .about-section {
    padding: 80px 26px 10px;
  }

  .about-h1 {
    font-size: 28px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .vision-mission {
    margin-top: 40px;
    padding: 0 5px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vm-card {
    padding: 26px 20px;
  }

  .vm-card h3 {
    font-size: 20px;
  }

  .vm-card p {
    font-size: 14px;
  }

  .vm-icon i {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}