    :root {
      --dark-blue: #0b1f3a;
      --accent-blue: #1e3a8a;
      --light-bg: #f5f8ff;
      --text-light: #e5e7eb;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light-bg);
      color: #111827;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--dark-blue), var(--accent-blue));
      color: var(--white);
      padding: 80px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-light);
      margin-bottom: 30px;
    }

    .cta-btn {
      display: inline-block;
      padding: 14px 32px;
      background-color: var(--white);
      color: var(--dark-blue);
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #e0e7ff;
      transform: translateY(-2px);
    }

    /* Image */
    .hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    /* Locations Section */
    .locations {
      background-color: var(--white);
      padding: 60px 0;
    }

    .locations h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 40px;
      color: var(--dark-blue);
    }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .location-card {
      padding: 20px;
      border-radius: 14px;
      background-color: var(--light-bg);
      font-weight: 500;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: 34px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 60px 0;
      }

      .hero h1 {
        font-size: 28px;
      }
    }


/* Container */
.who-we-are-section {
    background: linear-gradient(135deg, #f4f9f9, #ffffff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Card */
.who-we-are-box {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

/* Title */
.who-we-are-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f3d3e;
    margin-bottom: 20px;
    position: relative;
}

.who-we-are-box h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #72c3bf;
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

/* Content */
.who-we-are-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* Highlight */
.highlight {
    color: #0f3d3e;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .who-we-are-box {
        padding: 30px;
    }

    .who-we-are-box h2 {
        font-size: 28px;
    }

    .who-we-are-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .who-we-are-box h2 {
        font-size: 24px;
    }
}



/* Section Styling */
.partners-section {
    padding: 10px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.partners-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 600;
}

/* Grid Layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Partner Column */
.partner-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-column:hover {
    transform: translateY(-5px);
}

.partner-column h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 500;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

/* Logo Cards */
.logo-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-card {
    height: 60px;
    border: 1.5px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.logo-card:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    background: #f0f9ff;
}

/* Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

