.services-section {
      padding: 80px 40px;
    }
    .services-title h1 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #2a2a5e;
    }
    .services-title h1 span {
      color: #ff5956;
    }
    .service-card {
      border: 1px solid #eee;
      border-radius: 10px;
      text-align: center;
      padding: 30px 20px;
      transition: all 0.3s ease;
      background-color: #fff;
      cursor: pointer;
      height: 100%;
    }
    .service-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      background-color: #363636;
      color: white;
      transform: translateY(-5px);
    }
    .service-icon {
      font-size: 2.2rem;
      color: #ff5956;
      margin-bottom: 15px;
    }
    .modal-content {
      border-radius: 15px;
      padding: 25px;
      background: #fdfdfd;
      border: none;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    .modal-header {
      border-bottom: 1px solid #eee;
    }
    .modal-title {
      font-weight: 600;
      font-size: 1.4rem;
      color: #333;
    }
    .modal-body ul {
      padding-left: 1.2rem;
    }

     .contact-section {
      padding: 80px 20px;
    }
    .feature-list {
      font-size: 1rem;
    }
    .feature-list i {
      color: #ff5956;
      margin-right: 10px;
    }
    .form-control,
    .form-select {
      border-radius: 8px;
      padding: 10px 14px;
    }
    .form-card {
      border: 1px solid #eee;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }
    .btn-primary {
      border-radius: 25px;
      padding: 12px 0;
      font-weight: 600;
      background-color: #ff5956;
      transition: all .3s ease-in-out;
      border: none;
    }
    .btn-primary:hover {
      background-color: #d04543;
    }
    .disclaimer {
      font-size: 0.85rem;
    }
    .modal-dialog{
      max-width: 60vw !important;
    }
    @media (max-width: 700px) {
      .modal-dialog{
        max-width: 100vw !important;
      }
    }