* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Announcement bar */
.announcement {
      background-color: #1f4d7b;
      color: white;
      text-align: center;
      padding: 5px;
      font-weight: bold;
      font-size: 14px;
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10px;
      flex-wrap: wrap;
    }
    .logo-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo {
      height: 60px;
    }
    .header-container h1 {
      font-size: 20px;
      margin-bottom: 3px;
    }
    .header-container p {
      font-size: 13px;
      color: gray;
    }
    .social-icons a {
      margin-left: 10px;
      color: #333;
      font-size: 30px;
    }

/* Navbar */
.navbar {
  background-color: #f2f2f2;
  padding: 10px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.menu-icon {
  display: none;
  font-weight: bold;
  cursor: pointer;
}

.banner-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  width: 500%; /* 5 slides */
  animation: slide 25s infinite;
}

.slide {
  width: 100vw;
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.slide img {
  width: 100%;
  height: auto;
}

.slide h2 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: yellow;
  font-size: 28px;
  text-shadow: 1px 1px 4px #000;
}

@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-100vw); }
  40% { transform: translateX(-100vw); }
  45% { transform: translateX(-200vw); }
  60% { transform: translateX(-200vw); }
  65% { transform: translateX(-300vw); }
  80% { transform: translateX(-300vw); }
  85% { transform: translateX(-400vw); }
  100% { transform: translateX(-400vw); }
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #f2f2f2;
    margin-top: 10px;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
    padding: 10px;
  }

  .banner-text {
    font-size: 18px;
    right: 5%;
    top: 30%;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    margin-top: 10px;
  }
}

.welcome-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.welcome-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: left;
  color: #111;
}

.welcome-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.welcome-content .column {
 /* flex: 1;*/
  min-width: 300px;
}

.welcome-content p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.centers-section {
  padding: 40px 20px;
}

.centers-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.centers-box {
  display: flex;
  border: 1px solid #999;
  background-color: #f9f9f9;
  padding: 10px;
  flex-wrap: wrap;
}

.centers-image {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.centers-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.centers-text {
  flex: 2;
  padding: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.alliances-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 26px;
  margin-bottom: 30px;
  text-decoration: underline;
  color: #111;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.alliances-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.logo-box {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.logo-box:hover {
  transform: scale(1.05);
}

.logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .brand-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}


.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

/* About Section */
.about-section {
  background: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 27px;
  color: #007bff;
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Announcement Bar */
.announcement {
  background-color: #1f4d7b;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  max-width: 100%;
}

.header-container h1 {
  font-size: 24px;
  margin-bottom: 3px;
  color: #333;
}

.header-container p {
  font-size: 14px;
  color: gray;
}

.social-icons a {
  margin-left: 10px;
  color: #333;
  font-size: 16px;
}

/* Navbar */
.navbar {
  background-color: #f2f2f2;
  padding: 10px 0;
  
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 00;
  font-size: 14px;
  padding: 10px 15px;
  display: block;
}

.nav-links a:hover {
  color: #111;
  border-radius: 4px;
}

/* Dropdowns */
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-links li:hover > ul {
  display: block;
}

.nav-links li ul li a {
  font-weight: 400;
  padding: 10px 15px;
  color: #333;
  border-bottom: 1px solid #f1f1f1;
  white-space: nowrap;
}

.nav-links li ul li a:hover {
  background-color: #f9f9f9;
}

.nav-links li ul li ul {
  top: 0;
  left: 100%;
}

/* About Section */
.about-section {
  padding: 50px 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section h2 {
  font-size: 22px;
  color: #00468b;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #00468b;
  margin: 10px auto 0;
  border-radius: 5px;
}

.about-section p,
.about-section li {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: justify;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 22px;
  color: #444;
  background-color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  background-color: #00468b;
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

/* Responsive Media Queries */

/* Tablets and below */
@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-title {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li ul {
    position: static;
    box-shadow: none;
    background-color: #eee;
  }

  .nav-links li:hover > ul {
    display: block;
  }

  .nav-links li ul li ul {
    position: static;
  }

  .about-section {
    padding: 30px 20px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .about-section h2 {
    font-size: 20px;
  }

  .about-section p,
  .about-section li {
    font-size: 15px;
  }

  .social-icons a {
    font-size: 20px;
    padding: 10px;
  }

  .logo {
    height: 40px;
  }

  .header-container h1 {
    font-size: 18px;
  }

  .site-footer {
    font-size: 13px;
    padding: 10px;
  }
}

.boxtext{
    border: 1px solid #888888;
    padding: 5px 10px;
    width: 49.4%;
    float: left;
    margin-right: 5px;
    margin-bottom:5px;
    text-transform: uppercase;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Announcement Bar */
.announcement {
  background-color: #1f4d7b;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  max-width: 100%;
}

.header-container h1 {
  font-size: 20px;
  margin-bottom: 3px;
  color: #333;
}

.header-container p {
  font-size: 13px;
  color: gray;
}

.social-icons a {
  margin-left: 10px;
  color: #333;
  font-size: 16px;
}

/* Navbar */
.navbar {
  background-color: #f2f2f2;
  padding: 10px 0;
  
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 00;
  font-size: 14px;
  padding: 10px 15px;
  display: block;
}

.nav-links a:hover {
  color: #111;
  border-radius: 4px;
}

/* Dropdowns */
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-links li:hover > ul {
  display: block;
}

.nav-links li ul li a {
  font-weight: 400;
  padding: 10px 15px;
  color: #333;
  border-bottom: 1px solid #f1f1f1;
  white-space: nowrap;
}

.nav-links li ul li a:hover {
  background-color: #f9f9f9;
}

.nav-links li ul li ul {
  top: 0;
  left: 100%;
}


/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 22px;
  color: #444;
  background-color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  background-color: #00468b;
  transform: translateY(-3px);
}

/* Cover Section */
    .cover {
      background-image: url('https://source.unsplash.com/1600x500/?technology,office');
      background-size: cover;
      background-position: center;
      /*height: 250px;*/
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }

    .cover h1 {
      font-size: 36px;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 10px 30px;
      border-radius: 10px;
    }

    /* Layout */
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .form-container, .map-container {
      flex: 1 1 400px;
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #00468b;
      font-size: 28px;
      border-bottom: 2px solid #00468b;
      padding-bottom: 8px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      font-weight: 600;
      display: block;
      margin-bottom: 6px;
      color: #333;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      background: #f9f9f9;
      transition: 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #00468b;
      background: #fff;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: linear-gradient(to right, #00468b, #0070c0);
      color: white;
      padding: 12px;
      width: 100%;
      font-size: 17px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: #003366;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 10px;
      min-height: 400px;
    }

    @media (max-width: 768px) {
      .cover h1 {
        font-size: 24px;
      }
      .contact-wrapper {
        flex-direction: column;
        padding: 0 10px;
      }
      .form-container, .map-container {
        padding: 20px;
      }
    }

/* Footer */
.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

/* Responsive Media Queries */

/* Tablets and below */
@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-title {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li ul {
    position: static;
    box-shadow: none;
    background-color: #eee;
  }

  .nav-links li:hover > ul {
    display: block;
  }

  .nav-links li ul li ul {
    position: static;
  }

  .about-section {
    padding: 30px 20px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .about-section h2 {
    font-size: 20px;
  }

  .about-section p,
  .about-section li {
    font-size: 15px;
  }

  .social-icons a {
    font-size: 20px;
    padding: 10px;
  }

  .logo {
    height: 40px;
  }

  .header-container h1 {
    font-size: 18px;
  }

  .site-footer {
    font-size: 13px;
    padding: 10px;
  }
}

