 .contact-container {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgb(0 0 0 / 0.1);

      max-width: 100%;
      padding: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
     
    }
    /* Left side envelope graphic */
    .contact-graphic {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: bounce 2s infinite ease-in-out;
    }
    .envelope-icon {
      position: relative;
      width: 160px;
      height: 120px;
      background: #e0e0e7;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
      overflow: visible;
    }
    .envelope-icon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-left: 80px solid transparent;
      border-right: 80px solid transparent;
      border-bottom: 60px solid #FFC107; /* Purple flap */
      border-radius: 1rem 1rem 0 0;
      z-index: 2;
    }
    .envelope-icon::after {
      content: "";
      position: absolute;
      top: 60px;
      left: 0;
      width: 160px;
      height: 60px;
      background: #f4f4f8;
      border-radius: 0 0 1rem 1rem;
      z-index: 1;
    }
    /* Right side form */
    .contact-form {
      flex: 1 1 350px;
    }
    .contact-form h2 {
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #222;
      font-size: 1.8rem;
    }
    /* Input group icons */
    .form-control {
      border-radius: 2rem !important;
      padding-left: 3rem !important;
      height: 45px;
      box-shadow: none !important;
      border: 1.8px solid #ddd;
      transition: border-color 0.3s ease;
    }
    .form-control:focus {
      border-color:#FFC107;
      box-shadow: 0 0 6px #FFC107;
      outline: none;
    }
    .input-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #FFC107;;
      font-size: 1.2rem;
      pointer-events: none;
    }
    /* Textarea */
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }
    /* Button */
    .btn-send {
      background-color: #ffc107;
      color: #222;
      border: none;
      border-radius: 2rem;
      padding: 12px 40px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      user-select: none;
      display: inline-block;
      margin-top: 1.5rem;
    }
    .btn-send:hover,
    .btn-send:focus {
      background-color: #e6b600;
      box-shadow: 0 6px 25px rgba(230, 182, 0, 0.7);
      transform: scale(1.05);
      color: #111;
      outline: none;
    }
    /* Responsive tweaks */
    @media (max-width: 767px) {
      .contact-container {
        flex-direction: column;
      }
      .contact-graphic {
        margin-bottom: 2rem;
      }
    }
    /* Bounce animation */
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    /* Fade in animation */
    .fade-in {
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    .badge-custom1{
        background: linear-gradient(45deg,orange,#ffcc70);
  color:#000;
  position:absolute;
  top:15px;
  left:15px;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:600;
}
    