
.popup-open {
    height:100vh !important;
    overflow:hidden !important;
    position:fixed;
    width:100%;
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,.65);
}

.enquiry-modal .modal-dialog {
    transition:.4s ease;
    transform:scale(.9);
}
.enquiry-modal.show .modal-dialog {
    transform:scale(1);
}

.enquiry-content {
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 40px rgba(0,0,0,.25);
    position:relative;
}

.close-btn {
    position:absolute;
    top:18px;
    right:12px;
    background:white;
    color:#074678;
    border:none;
    font-size:22px;
    height:40px;
    width:40px;
    border-radius:100px;
    cursor:pointer;
    transition:.3s;
    z-index:99;
}
.close-btn:hover{
    background:#000;
    color:#fff;
    transform:rotate(95deg);
}
 /* ENQUIRY FORM DESIGN */
    .enquiry-box {
      background: linear-gradient(145deg, #0b2d50, #123a6b);
      color: #fff;
      padding: 25px 20px;
      border-radius: 10px;
      box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
    }

    .enquiry-box h5 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 18px;
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.5px;
    }

    .form-group {
      position: relative;
      margin-bottom: 15px;
    }

    .form-group::before {
      content: "";
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        width: 34px;
        height: 35px;
        background: #074678;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgb(0 0 0 / 0%);
        transition: all 0.3s ease;
    }

    .form-group:hover::before {
      background: #0f325ac4;
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    }

    .form-group svg {
      position: absolute;
      top: 50%;
      left: 26px;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      stroke: #fff;
      z-index: 2;
    }

    .form-control-custom,
    .form-select-custom {
      background: #fff;
      border: none;
      border-radius: 6px;
      padding-left: 55px;
      height: 44px;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    }

    .form-control-custom:focus,
    .form-select-custom:focus {
      box-shadow: 0 0 5px rgba(255,255,255,0.6);
      outline: none;
    }

    .form-select-custom {
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center/16px;
      appearance: none;
    }

    .human-check {
      font-size: 13px;
      color: #fff;
      margin-bottom: 12px;
      text-align: center;
    }

    .btn-get-started {
      background: linear-gradient(135deg, #d71920, #ff4148);
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px;
      width: 100%;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .btn-get-started:hover {
      background: linear-gradient(135deg, #b9151c, #e62a30);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
    