    /* Toast Notification Styles */
    .toast-container {
      position: fixed;
      top: 100px;
      right: 20px;
      z-index: 9999;
      max-width: 350px;
    }

    .toast {
      padding: 16px 20px;
      margin-bottom: 12px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transform: translateX(400px);
      transition: transform 0.3s ease;
      background: #1a1a1a;
      border-left: 4px solid;
    }

    .toast.success {
      border-left-color: #00e0ff;
    }

    .toast.error {
      border-left-color: #ef4444;
    }

    .toast.show {
      transform: translateX(0);
    }

    .toast-content {
      display: flex;
      align-items: center;
    }

    .toast-icon {
      margin-right: 12px;
      font-size: 20px;
    }

    .toast.success .toast-icon {
      color: #00e0ff;
    }

    .toast.error .toast-icon {
      color: #ef4444;
    }

    .toast-message {
      color: white;
      font-size: 14px;
      margin: 0;
    }

    .toast-close {
      background: none;
      border: none;
      color: #94a3b8;
      cursor: pointer;
      font-size: 16px;
      margin-left: 16px;
    }

    .toast-close:hover {
      color: white;
    }

    .error-message {
      color: #ef4444;
      font-size: 12px;
      margin-top: 4px;
      display: none;
    }

    .contact-input.error {
      border-color: #ef4444;
    }

    .contact-input.success {
      border-color: #00e0ff;
    }

    .card-glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
    }

    .card-glass:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px -10px rgba(147, 51, 234, 0.3);
      background: rgba(255, 255, 255, 0.08);
    }

    .gradient-text {
      background: linear-gradient(135deg, #00e0ff 0%, #9333ea 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-input {
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .contact-input:focus {
      background: rgba(15, 23, 42, 0.9);
      border-color: #00e0ff;
      box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.1);
    }

    .social-icon {
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      color: #00e0ff;
    }

    .icon-wrapper {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      background: linear-gradient(145deg, rgba(0, 224, 255, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
      position: relative;
      overflow: hidden;
    }

    .icon-wrapper::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, rgba(0, 224, 255, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card-glass:hover .icon-wrapper::after {
      opacity: 1;
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    /* Form background styling */
    .form-container {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(55, 15, 90, 0.8) 100%);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(147, 51, 234, 0.3);
    }