    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f4f9;
      color: #333;
    }

    /* .ctus-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    } */

.ctus-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}


    .ctus-title {
      text-align: center;
      margin-bottom: 40px;
      color: #013a91;
    }

    /* .ctus-info-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-bottom: 50px;
      gap: 20px;
    } */

    .ctus-info-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-bottom: 50px;
      gap: 20px;
  width: 26%;

}


    .ctus-info-card {
      background: #fff;
      padding: 20px;
      flex: 1 1 250px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ctus-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .ctus-info-card i {
      font-size: 30px;
      color: #ff5722;
      margin-bottom: 10px;
    }

    /* .ctus-form-wrapper {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
    } */

    .ctus-form-wrapper {
       background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
  width: 60%;
 
}


    .ctus-form-wrapper label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .ctus-form-wrapper input,
    .ctus-form-wrapper textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      resize: none;
    }

    .ctus-form-wrapper button {
      display: inline-block;
      background: linear-gradient(135deg, #ff5722, #ff9800);
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .ctus-form-wrapper button:hover {
      background: linear-gradient(135deg, #ff9800, #ff5722);
      transform: scale(1.05);
    }

    .ctus-map-wrapper {
      margin-top: 50px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .ctus-map-wrapper iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    /* @media (max-width: 768px) {
      .ctus-info-wrapper {
        flex-direction: column;
        
      }
 .ctus-info-wrapper,
      .ctus-form-wrapper {
        width: 100%;
      }

   
} */
    @media (max-width: 768px) {

  .ctus-container {
    flex-direction: column-reverse; /* Form first, cards later */
    align-items: center;
  }

  .ctus-form-wrapper,
  .ctus-info-wrapper {
    width: 100%;
  }

  /* Cards in horizontal line (scroll) */
  .ctus-info-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;

  }

  .ctus-info-card {
    min-width: 100px; /* card size for scroll */
    flex: 0 0 auto;
  }
}

  