 * {
      margin: 0; padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #001b40;
      color: #333;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-header h1 {
      font-size: 2.5rem;
      color: #0a3d62;
    }

    .contact-header p {
      color: #555;
      margin-top: 0.5rem;
    }

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h2 {
      margin-bottom: 1rem;
      color: #0a3d62;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .info-item i {
      font-style: normal;
      margin-right: 10px;
      color: #0a3d62;
    }

    .contact-form {
      flex: 1;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      margin-bottom: 1rem;
      padding: 0.8rem 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      background: #0a3d62;
      color: white;
      padding: 0.8rem;
      font-size: 1rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #075aa0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
    }
    
    /*pop-up designer*/
   .popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: fadeInUp 0.5s ease forwards;
}

.popup-box h2 {
  color: #28a745;
  font-size: 1.8rem;
  margin-top: 1rem;
}

.popup-box p {
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.popup-box button {
  background: #28a745;
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-box button:hover {
  background-color: #218838;
}

/* ✅ Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Checkmark Animation */
.checkmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
}

.background {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #28a745;
  position: absolute;
  top: 0;
  left: 0;
}

.checkmark {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 35px;
  height: 70px;
  transform: rotate(45deg);
  border-bottom: 6px solid white;
  border-right: 6px solid white;
  animation: drawCheck 0.6s ease-out forwards;
}

@keyframes drawCheck {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    height: 0;
    width: 35px;
  }
  100% {
    height: 70px;
    width: 35px;
  }
}
