 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f4f7fc;
      color: #222;
    }

    header {
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #ddd;
    }

    header h1 {
      font-size: 1.2rem;
      color: #3D7CDB;
    }

    header nav a {
      margin-left: 1rem;
      text-decoration: none;
      color: #153057;
      font-weight: 600;
    }
    .hero-wrapper {
  background: radial-gradient(ellipse at center, #91BDFF 0%, #E3EEFF 100%);
  padding: 3rem 2rem;
}

   .hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

    .hero-text {
      flex: 1 1 350px;
      max-width: 700px;
    }

    .hero-text .brand-img {
      height: 100px;
      vertical-align: middle;
      margin-right: 10px;
    }

    .hero-text h2 {
      font-size: 2.8rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #153057;
    }
    h3{
        font-size: 2rem;
         font-weight: 600;
         text-align: center;
         margin-bottom: 1rem;
    }

    .hero-text p {
      margin-top: 1rem;
      font-size: 1.5rem;
      line-height: 1.5;
      color: #153057;
    }

   .form-box {
      flex: 1 1 350px;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
      max-width: 500px;
    }

    .form-box h3 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .form-box form {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .form-box input,
    .form-box select,
    .form-box textarea {
      padding: 0.6rem;
      border-radius: 5px;
      border: none;
      font-size: 0.9rem;
      background-color: #F4F5F8;
      width: 100%;
    }

    .form-box .half {
      width: calc(50% - 0.5rem);
    }

    .form-box textarea {
      resize: vertical;
    }

    .form-box button {
      padding: 0.8rem;
      font-size: 1rem;
      background: #326BFF;
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
    }


    .steps {
       background-color: white;
      text-align: center;
      padding: 3rem 1rem;
    }

    .steps h4 {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .steps-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10rem;
      margin-top: 2rem;
    }

    .step {
      max-width: 200px;
      text-align: center;
    }

    .step img {
      height: 40px;
      margin-bottom: 1rem;
    }

    .step p {
      font-size: 1.2rem;
    }

    .services {
        background-color: white;
      padding: 2rem 1rem;
    }

    .services h4 {
      text-align: center;
      font-size: 1.4rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }

    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      height: 400px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(208, 225, 253, 0.62);
      backdrop-filter: blur(0.6px);
      z-index: 1;
    }

    .service-card span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #153057;
      font-weight: 700;
      font-size: 2rem;
      z-index: 2;
    }
    .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 225, 253, 0.62);
  backdrop-filter: blur(0.6px);
  z-index: 1;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

.service-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #153057;
  font-weight: 700;
  font-size: 2rem;
  z-index: 2;
  transition: font-size 0.3s ease;
}

.service-card:hover::before {
  backdrop-filter: none;
  background: rgba(208, 225, 253, 0.2);
}

.service-card:hover span {
  font-size: 2.4rem;
}
.service-card:hover {
  transform: scale(1.02);
}

    footer {
      background: #2f60b9;
      color: white;
      padding: 2rem;
      font-size: 0.9rem;
    }

    footer a {
      color: #fff;
      text-decoration: underline;
    }
    
    
    @media (max-width: 1024px) {
        .hero-text h2{
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        
        .hero-wrapper{
            padding: 0;
        }
      .hero {
        flex-direction: column;
        gap: 1.6rem;
        padding: 1rem 1.8rem;
      }
     header h1{
          font-size: 0.90rem;
      }
      header nav a {
          font-size: 0.80rem;
      }
      .hero-text h2{
           font-size: 1.2rem;
      }
 .hero-text .brand-img {
      height: 80px;
      margin: 0;
    }
    h3{
        font-size: 1.2rem;
        margin-bottom:0;
    }
    .hero-text p{
         font-size: 1rem;
         margin-top: 0.4rem;
    }
     .hero-text {
      flex: 0;
      
    }
    .form-box{
        padding: 1.2rem;
    }
      .form-box,
      .hero-text {
        max-width: 100%;
      }
      .form-box button{
          padding: 0.5rem;
      }
       .form-box input,
    .form-box select,
    .form-box textarea {
     width: 100% !important;
      font-size: 0.7rem;
     
    }

      
      .steps-container{
          gap: 2rem;
      }
      .services-grid {
      grid-template-columns: 1fr;
    }
    }
