body {
      background: linear-gradient(to bottom right, #f0f7ff, #e5edff);
      color: #333;
    }


.container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding-top: 80px;
      align-items: center;
    }
    .hero h1 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
}
    .hero h1 span {
      color: #2563eb;
    }
    .hero p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #555;
    }
    .btns {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: #2563eb;
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
    .btn-primary:hover {
      background: #1d4ed8;
    }
    .btn-outline {
      border: 2px solid #2563eb;
      color: #2563eb;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
    .btn-outline:hover {
      background: #2563eb;
      color: #fff;
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .feature {
      /* background: #fff;
      padding: 20px;
      border-radius: 12px; */
      text-align: center;
      /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
    }
    .feature svg {
    width: 125px;
    height: 50px;
    color: #2563eb;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 10px 10px;
}
    .feature p {
      font-size: 14px;
      font-weight: 500;
      color: #444;
    }

    /* Image Section */
    .image-box {
      position: relative;
      background: #fff;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .image-box img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }
    .badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: #2563eb;
      color: #fff;
      padding: 16px 24px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
    }
    .badge p:first-child {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #fff;
    }
    .badge p:last-child {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .badge p{
color: #fff;
    }


    /* Responsive */
    @media(max-width: 992px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
      .badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 18px;
      }
    }
    @media(max-width: 576px) {
      .features {
        grid-template-columns: 1fr;
      }
      .hero h1 {
        font-size: 32px;
      }
      .btns {
        flex-direction: column;
      }
    }
