/* mobile menu-toggle*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.navbar {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-links a {
  text-decoration: none;
  color: #000;
  margin: 10px;
  font-weight: bold;
}


.nav-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.nav-logo img {
  height: 50px;        /* or 50px if you want bigger */
  width: auto;
  object-fit: contain;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 60px;
  width: 100%;
  left: 0;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-menu a {
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/*end menu-toggle*/

body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: #4B7ABB;
    }
    section {
      padding: 40px 20px;
    }
    .container {
      max-width: 1200px;
      margin: auto;
    }
    .hero {
      background-color: #4B7ABB;
      text-align: center;
    }
     
    
    .hero h1 {
      font-size: 2.5em;
      color: #1a1a1a;
    }
    .hero p {
      font-size: 1.2em;
      color: #333;
    }
    .cta-button {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #0077cc;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }
     .cta-button2 {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #F7BA00;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }
    .split {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .left, .right {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }
    video {
      width: 100%;
      border-radius: 10px;
    }
    .highlight {
      font-weight: bold;
      color: #0077cc;
    }
    .alt-bg {
      background-color: #ffffff;
    }
    .light-bg {
      background-color: #e9f5ff;
    }
    ul {
      list-style: square;
      padding-left: 20px;
    }
    .faq-section {
      background-color: #ffffff;
    }
    .faq-section h2 {
      text-align: center;
    }
    .faq-section ul li {
      padding: 5px 0;
    }
    .cta-center {
      text-align: center;
    }
    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
    }
    .hidden-text {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #E9F5FF;
      margin: 0;
      padding: 0;
    }

    h2 {
      color: #3b3b3b;
      text-align: center;
      padding-top: 30px;
    }

    .category {
      margin: 40px auto;
      max-width: 1200px;
    }

    .category h3 {
      color: #014c5e;
      border-left: 6px solid #f99c1c;
      padding-left: 12px;
      font-size: 24px;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .tdl-card {
      flex: 1 1 calc(25% - 20px);
      background-color: #FFF;
      border: 1px solid #0077CC;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .tdl-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .tdl-title {
      font-weight: bold;
      color: #014c5e;
      margin-bottom: 10px;
    }

    .tdl-description {
      color: #4f4f4f;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .get-btn {
      background-color: #f99c1c;
      color: white;
      border: none;
      padding: 10px 16px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    .get-btn:hover {
      background-color: #e08710;
    }

    /* Popup Modal Form */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }

    .modal-content {
      background-color: #fff8e7;
      margin: 10% auto;
      padding: 30px;
      border: 2px solid #f99c1c;
      border-radius: 10px;
      width: 400px;
      position: relative;
    }

    .modal-content h4 {
      margin-top: 0;
      color: #014c5e;
    }

    .modal-content input, .modal-content textarea {
      width: 100%;
      padding: 8px;
      margin: 8px 0 15px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .modal-content button {
      background-color: #014c5e;
      color: white;
      padding: 10px 16px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 16px;
      font-size: 24px;
      font-weight: bold;
      color: #999;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .tdl-card {
        flex: 1 1 100%;
      }

      .modal-content {
        width: 90%;
      }
    }

