    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', Arial, sans-serif;
      line-height: 1.6;
      color: #1b2632;
      background-color: #ffffff;
      overflow-x: hidden;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    /* Layout components */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .flex {
      display: flex;
    }
    
    .flex-col {
      flex-direction: column;
    }
    
    .flex-row {
      flex-direction: row;
    }
    
    .justify-center {
      justify-content: center;
    }
    
    .justify-between {
      justify-content: space-between;
    }
    
    .justify-start {
      justify-content: flex-start;
    }
    
    .items-center {
      align-items: center;
    }
    
    .items-start {
      align-items: flex-start;
    }
    
    .w-full {
      width: 100%;
    }
    
    .h-auto {
      height: auto;
    }
    
    /* Hero Section */
    .hero-section {
      background-image: url('/assets/9.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      min-height: 400px;
    }
    
    .hero-overlay {
      background-color: rgba(18, 36, 54, 0.7);
      padding: 62px 16px;
      min-height: 400px;
      display: flex;
      align-items: center;
    }
    
    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }
    
    .hero-title {
      font-size: 32px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.5;
      color: #f9f9f9;
      margin-bottom: 16px;
    }
    
    .hero-subtitle {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(250, 250, 250, 0.8);
    }
    
    /* About Section */
    .about-section {
      background-color: #ffffff;
      padding: 48px 16px;
    }
    
    .about-content {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-title {
      font-size: 24px;
      font-family: 'Poppins', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #1b2632;
      margin-bottom: 26px;
    }
    
    .about-description {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.9;
      color: #67737e;
      margin-bottom: 16px;
    }
    
    .services-list {
      margin-top: 32px;
    }
    
    .service-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    
    .service-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #0099cc;
    }
    
    .service-text {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: #1b2632;
    }
    
    .about-image {
      width: 100%;
      max-width: 448px;
      height: auto;
      border-radius: 8px;
      margin: 0 auto;
    }
    
/* Stats Section */
.stats-section {
  background-color: #115470;
  padding: 52px 16px;
  overflow: hidden;
}

.stats-title {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  opacity: 0.85;
}

/* Slider container */
.logos-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.logos-track {
  display: flex;
  width: fit-content;
  animation: scroll 25s linear infinite;
}

/* Each logo */
.logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  margin: 0 12px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo-item img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
    /* Values Section */
    .values-section {
      background-color: #ffffff;
      padding: 48px 16px;
    }
    
    .values-content {
      max-width: 1280px;
      margin: 0 auto;
    }
    
    .values-header {
      text-align: center;
      margin-bottom: 48px;
    }
    
    .values-title {
      font-size: 24px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.5;
      color: #1b2632;
      margin-bottom: 8px;
    }
    
    .values-subtitle {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: #67737e;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .value-card {
      background-color: #ffffff;
      border: 1px solid #e2e6e9;
      border-radius: 8px;
      padding: 24px;
      text-align: center;
    }
    

    .value-icon {
      color: #0099cc; 
      border-radius: 8px;
      margin: 0 auto 16px;
      font-size: 64px !important;
    }
    
    .value-name {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.5;
      color: #1b2632;
      margin-bottom: 6px;
    }
    
    .value-description {
      font-size: 12px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.8;
      color: #67737e;
    }
    
    /* Mission Vision Section */
    .mission-vision-section {
      background-color: #f3f5f7;
      padding: 48px 16px;
    }
    
    .mission-vision-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .mission-card, .vision-card {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 28px;
      box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .card-title {
      font-size: 18px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.7;
      color: #1b2632;
      margin-bottom: 12px;
    }
    
    .card-text {
      text-align: justify;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      color: #67737e;
    }
    
    /* Contact CTA Section */
    .contact-cta-section {
      background-color: #ffffff;
      padding: 48px 16px;
      text-align: center;
    }
    
    .contact-cta-content {
      max-width: 1280px;
      margin: 0 auto;
    }
    
    .cta-title {
      font-size: 24px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.5;
      color: #1b2632;
      margin-bottom: 16px;
    }
    
    .cta-subtitle {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: #67737e;
      margin-bottom: 32px;
    }
    
    .cta-button {
      background-color: #01baef;
      color: #ffffff;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      padding: 10px 32px;
      border: none;
      border-radius: 22px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
    }
    
    .cta-button:hover {
      background-color: #0099cc;
    }
    
    /* Footer */
    .footer {
      background-color: #0b4f6c;
      padding: 36px 16px;
      color: #ffffff;
    }
    
    .footer-content {
      max-width: 1280px;
      margin: 0 auto;
    }
    
    .footer-main {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 32px;
    }
    
    .footer-brand {
      margin-bottom: 32px;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    
    .footer-logo-icon {
      width: 60%;
      height: 100%;
    }
    
    .footer-logo-text {
      font-size: 28px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.6;
      color: #ffffff;
    }
    
    .footer-description {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section {
      margin-bottom: 32px;
    }
    
    .footer-title {
      font-size: 19px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.5;
      color: #ffffff;
      margin-bottom: 16px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-link {
      display: block;
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      margin-bottom: 14px;
      transition: color 0.3s ease;
    }
    
    .footer-link:hover {
      color: #01baef;
    }
    
    .footer-link.active {
      color: #01baef;
      position: relative;
    }
    
    .footer-link.active::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: #01baef;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    
    .contact-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .contact-text {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      text-align: center;
    }
    
    .footer-copyright {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: #ffffff;
    }
    
    /* Interactive states */
    .nav-item:hover, .footer-link:hover {
      transform: translateY(-1px);
    }
    
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(1, 186, 239, 0.3);
    }
    
    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    /* Responsive media queries */
    @media (min-width: 640px) {
      .container {
        padding-left: 24px;
        padding-right: 24px;
      }
      
      .hero-title {
        font-size: 40px;
      }
      
      .hero-subtitle {
        font-size: 18px;
      }
      
      .about-section {
        padding: 64px 24px;
      }
      
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .mission-vision-content {
        gap: 32px;
      }
      
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
      }
    }

    @media (max-width: 768px) {
  .logo-item {
    width: 160px;
    height: 90px;
  }

  .stats-title {
    font-size: 16px;
  }
}
    
    @media (min-width: 768px) {
      .container {
        padding-left: 32px;
        padding-right: 32px;
      }
      
      .hero-title {
        font-size: 48px;
      }
      
      .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
      }
      
      .about-text {
        flex: 1;
      }
      
      .about-image {
        flex-shrink: 0;
        width: 448px;
      }
      
      .about-title {
        font-size: 30px;
      }
      
      .values-title {
        font-size: 30px;
      }
      
      .card-title {
        font-size: 20px;
      }
      
      .cta-title {
        font-size: 30px;
      }
      
      .mission-vision-content {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }
    
    @media (min-width: 1024px) {
      .hamburger {
        display: none;
      }
      
      .nav-menu {
        display: flex;
      }
      
      .hero-overlay {
        padding: 124px 56px;
      }
      
      .hero-content {
        padding-left: 288px;
      }
      
      .about-section {
        padding: 96px 56px;
      }
      
      .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }
      
      .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 64px;
      }
    }