* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      color: #111;
      line-height: 1.6;
    }
    
    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: 1200px;
    }

    .card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card h3 {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 15px;
    }

    .view-btn {
      display: inline-block;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      background: #0071e3;
      border-radius: 12px;
      text-align: center;
      text-decoration: none;
      transition: background 0.3s;
      align-self: flex-start;
    }

    .view-btn:hover {
      background: #005bb5;
    }
    

    header {
      background: #ffffff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    
    
    .logo-img {
  height: 80px;
  object-fit: contain;
}

    nav {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 30px;
    }

    nav a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }

    .top-buttons {
      display: flex;
      gap: 10px;
    }

    .btn {
      padding: 6px 14px;
      background: #6366f1;
      color: white;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s ease;
      text-decoration: none;
    }

    .btn:hover {
      background: #4f46e5;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to right, #2563eb, #1e3a8a);
      color: white;
      padding: 60px 10%;
      flex-wrap: wrap;
    }

    .hero-text {
      max-width: 500px;
    }

    .hero-text h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-text p {
      margin-bottom: 20px;
      font-size: 16px;
    }

    .hero-text .cta {
      background: #10b981;
      border: none;
      padding: 10px 20px;
      color: white;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
    }

    .hero-video {
      max-width: 480px;
      background: white;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .trust-section {
      text-align: center;
      padding: 40px 20px;
    }

    .logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 30px;
      padding-top: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .logo-box {
      border: 2px solid #2563eb;
      padding: 20px;
      border-radius: 6px;
      color: #2563eb;
      font-weight: bold;
      transition: 0.3s;
      background: white;
    }

    .logo-box:hover {
      background: #f3f4f6;
    }

    .logo-box a {
      display: block;
      margin-top: 10px;
      font-weight: normal;
      font-size: 14px;
      color: #2563eb;
    }

    footer {
      background: #f9fafb;
      padding: 16px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      font-size: 14px;
      color: #555;
    }

    .footer-left i {
      margin-right: 10px;
      font-size: 16px;
      color: #2563eb;
    }

    .footer-left i:hover {
      color: #1e3a8a;
    }

    .footer-center {
      flex: 1;
      text-align: center;
    }

    .footer-right {
      text-align: right;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-video {
        margin-top: 20px;
      }

      nav {
        display: none;
      }
    }