 * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: #333;
    }
    header {
      background: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }
    header img {
      height: 50px;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      text-decoration: none;
      color: #004080;
      font-weight: 600;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .section {
      padding: 60px 20px;
    }
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: #002244;
    }
    .banner {
      background: linear-gradient(to right, #004080, #0077b6);
      color: white;
      padding: 100px 20px;
      text-align: center;
    }
    .banner h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .banner p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }
    .about {
      background: #f0f8ff;
    }
    .about p {
      max-width: 800px;
      margin: 0 auto 20px;
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
    }
    
          .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .about-card {
      background-color: #f7f7f7;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 1rem;
    }
    .about-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
    }
    .about-card h4 {
      margin: 10px 0 5px;
    }
    .about-card p {
      font-size: 0.9rem;
    }
	.section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-align: center;
    }
	
    .vision-mission {
      display: flex;
      flex-direction: row;
      gap: 20px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .vm-box {
      flex: 1 1 45%;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #f9f9f9;
    }
    .vm-box h3 {
      margin-top: 0;
    }

    
    
    .directors {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 20px auto;
    }
    .director-card {
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
    }
    .director-card h4 {
      margin-bottom: 5px;
      color: #004080;
    }
    .vision-mission {
      max-width: 1000px;
      margin: 40px auto 0;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
	
	  .vm-box {
      flex: 1 1 45%;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #f9f9f9;
    }
    .vm-box h3 {
      margin-top: 0;
    }
   /* .vision-box, .mission-box {
      flex: 1 1 45%;
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .vision-box h3, .mission-box h3 {
      color: #004080;
      margin-bottom: 10px;
    }*/
    .service-grid, .enterprise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .card-style {
      background: linear-gradient(135deg, #e3f2fd, #e1f5fe);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .card-style:hover {
      transform: translateY(-5px);
    }
    .card-style h4 {
      color: #004080;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    .card-style p {
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .clients-partners {
      background: #eee;
      padding: 60px 20px;
      text-align: center;
    }
    .client-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    .client-logos img {
      height: 60px;
      object-fit: contain;
    }
    .contact {
      padding: 60px 20px;
      background: #f9f9f9;
    }
    .contact h2 {
      text-align: center;
      color: #002244;
    }
    .contact-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      margin-top: 30px;
    }
    .contact-form, .contact-addresses {
      flex: 1;
      min-width: 300px;
	  padding-left:40px;
	  font-size: 12px;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .contact-form button {
      padding: 10px 20px;
      background: #004080;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .contact-form button:hover {
      background: #003366;
    }
    footer {
      background-color: #222;
      color: #eee;
      padding: 20px;
      text-align: center;
    }
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        border: 1px solid #ccc;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }
      nav.show {
        display: flex;
      }
      .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #004080;
      }
      nav a {
        padding: 10px 0;
      }
      .vision-mission {
        flex-direction: column;
      }
    }