/* General Styles */
body {
  /* font-family: Arial, sans-serif; */
  font-family: "Barlow Semi Condensed", serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #000;
  color: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

nav ul div a {
  text-decoration: none;
  color: #fff;
}
.nav-links {
  margin-bottom: 0px;
}
.nav-links .dropdown-menu {
  background-color: #000; /* Black background */
  border: none; /* Remove border */
}

.nav-links .dropdown-item {
  color: #fff; /* White text */
}

.nav-links .dropdown-item:hover,
.nav-links .dropdown-item:focus {
  background-color: #333; /* Dark gray hover */
  color: #fff;
}

/* Optional: style the dropdown toggle arrow */
.nav-links .dropdown-toggle::after {
  color: #fff; /* White arrow */
}

.menu-toggle {
  /* display: none; */
  font-size: 24px;
  cursor: pointer;
}

/* Banner Image */
.banner img {
  width: 100%;
  height: 50vh; /* Adjust as needed */
  object-fit: cover;
}

/* Hero Section */
.hero {
  text-align: center;
  background: #000;
  color: #fff;
  padding: 50px 20px; /* Reduced padding */
}

.hero .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

/* Services Section */
.our-services {
  padding: 50px 20px;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.services {
  text-align: center;
  padding: 40px 20px;
}

.service-list {
  list-style-type: none; /* Removes default bullet points */
  padding: 0;
  margin: 20px auto;
  max-width: 600px; /* Keeps it readable */
}

.service-list li {
  background: #000; /* Black background */
  color: #fff; /* White text */

  padding: 12px;
  margin: 8px 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.service-list li a {
  color: #fff;
  text-decoration: none;
}
.service-list li a:hover {
  color: #ffc107;
}

::selection {
  background: #ffc107;
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: #ffc107;
  color: #eee;
  text-shadow: none;
}

@media (max-width: 768px) {
  .service-list li {
    font-size: 16px;
    padding: 10px;
  }
}

.card {
  background: #f1f1f1;
  padding: 15px;
  width: 300px;
  border-radius: 5px;
}

.card img {
  width: auto;
  height: 150px;
  width: 250px;
  object-fit: contain;
  border-radius: 5px;
}

/* About Section */
.about {
  padding: 50px 20px;
  background: #000;
  color: #fff;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  text-align: center;
  font-weight: bold;
}
.contact a {
  color: #000;
  text-decoration: none;
  font-style: italic;
}
.contact a:hover {
  text-decoration: underline;
}

.navbar-nav .dropdown-menu {
  background-color: #000; /* Black dropdown */
}

.navbar-nav .dropdown-item {
  color: #fff;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: #333;
  color: #fff;
}
.navbar-nav .nav-link {
  color: #fff; /* White text for main links */
}

.navbar-nav .nav-link:hover {
  color: #ccc; /* Light hover */
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #000;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links.active {
    display: flex;
  } */

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .banner img {
    height: 200px; /* Smaller height on mobile */
  }
}
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.apex-link {
  padding-top: 0;
}
.apex-link a {
  color: #fff;
  text-decoration: none;
}
.apex-link a:hover {
  text-decoration: underline;
  color: rgb(203, 255, 15);
  transition: 1s;
}
.contact-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #000;
  border-radius: 5px;
}
#message {
  height: 100px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.cta-button:hover {
  background: #333;
}

#result {
  margin-top: 10px;
  font-weight: bold;
}
.error {
  color: red;
}
.success {
  color: green;
}
.reviews {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}
.review-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1rem;
}
.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.review-text {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.reviewer {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem;
}
