body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f9ff;
}
.navbar {
  background: linear-gradient(90deg, #000000, #6610f2);
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
}
.nav-link:hover {
  text-decoration: underline;
}
.hero {
  background: url("https://images.unsplash.com/photo-1555617980-dac1b9f3a1b1?fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6);
}
.section-title {
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}
.product-card {
  transition: transform 0.3s ease;
  border: none;
}
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}
.btn-main {
  background-color: #6610f2;
  color: white;
  border: none;
  padding: 10px 20px;
}
.btn-main:hover {
  background-color: #9c27b0; /* Brighter purple */
  color: #fff;
}
footer {
  background: #1b1f3a;
  color: white;
  padding: 50px 0;
}
footer a {
  color: #f8f9fa;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
}


/* model  */
/* Modal Container */
.modal-dialog {
  max-width: 420px;
  margin: 1.75rem auto;
}

.modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Header */
.enquiry-header {
  background: linear-gradient(to right, #000000, #0a58ca, #fffda4);
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 20px;
}

/* Cross Button */
.modal-content button[data-bs-dismiss="modal"] {
  font-size: 30px;
  font-weight: bold;
  top: 10px;
  right: 15px;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  z-index: 10;
  transition: transform 0.2s ease;
}

.modal-content button[data-bs-dismiss="modal"]:hover {
  transform: rotate(90deg);
  color: #ff004c;
}

/* Form Inputs */
.modal-body input.form-control {
  border-radius: 50px;
  padding: 12px 20px;
  border: 1px solid #ddd;
  font-size: 16px;
  margin-bottom: 15px;
  width: 100%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(to right, #000000, #0a58ca, #190101);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 0;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Privacy Note */
.privacy-note {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin-top: 10px;
}

.privacy-note i {
  color: #ddbdc6;
  margin-right: 6px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }

  .enquiry-header {
    font-size: 18px;
    padding: 0.75rem;
  }

  .submit-btn {
    font-size: 15px;
    padding: 10px;
  }

  .modal-content button[data-bs-dismiss="modal"] {
    font-size: 26px;
    top: 8px;
    right: 10px;
  }
}
