body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
}

.top-header {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  /* Small text */
}

.top-header .header span {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.top-header select {
  background-color: transparent;
  color: #fff;
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.top-header select option {
  background-color: #000;
  color: #fff;
}

/* Navbar Customization */
.navbar-brand {
  font-weight: 700;
  /* Bold for Exclusive */
  font-size: 1.75rem;
  /* Larger font size */
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #db4444 !important;
  /* Red hover for nav links */
}

.navbar-nav .nav-link.active {
  color: #db4444 !important;
  /* Active link red */
}

.navbar-toggler:focus {
  box-shadow: none;
  /* Remove outline on toggler focus */
}

.dropdown-menu {
  line-height: 1.8rem;
  /* Adjust line height for dropdown */
}

.dropdown-menu a {
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  color: #db4444;
  background-color: #f8f9fa;
}

.contact-info-card,
.contact-form-card {
    background-color: #ffffff;
    /* White background for sections */
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    height: 100%;
    /* Ensure cards take full height of the column */
}

.icon-circle {
    width: 50px;
    /* Fixed size for the circular icon background */
    height: 50px;
    min-width: 50px;
    /* Ensure it doesn't shrink */
    min-height: 50px;
    /* Ensure it doesn't shrink */
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 24px;
    /* Size of the icon inside the circle */
    height: 24px;
    object-fit: contain;
}

.form-control:focus {
    border-color: #DB4444;
    /* Theme color for focus */
    box-shadow: 0 0 0 0.25rem rgba(219, 68, 68, 0.25);
}

textarea.form-control {
    resize: vertical;
    /* Allow vertical resizing for textarea */
}

.contact-info-block+.contact-info-block {
    border-top: 1px solid #dee2e6;
    /* Separator between info blocks */
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.btn-danger {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b !important;
    /* Slightly darker red */
    transform: translateY(-2px);
    /* Lift button slightly */
    box-shadow: 0 4px 10px rgba(219, 68, 68, 0.4);
    /* Subtle red shadow */
}

/* Footer Styles */
footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0;
  /* More vertical padding */
}

footer h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

footer p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

footer .form-control {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

footer .form-control::placeholder {
  color: #ccc;
}

footer .form-control:focus {
  background-color: transparent;
  border-color: #db4444;
  box-shadow: none;
  color: #fff;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
  filter: invert(1);
  /* Invert social icons to white */
}

footer .qr-code {
  max-width: 100px;
  /* Control QR code size */
  height: auto;
}

footer .app-store-btn {
  max-width: 120px;
  /* Control app store button size */
  height: auto;
}

/* Custom styles for the input group in the footer */
.footer-subscribe .input-group {
  max-width: 250px;
  /* Limit width of subscribe input */
}

.footer-subscribe .input-group-text {
  background-color: transparent;
  border: 1px solid #fff;
  border-left: none;
  /* Remove left border for icon */
  color: #fff;
}
