body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #050f1a;
  color: #ffffff;
  text-align: center;
}

.hero {
  padding: 60px 20px;
  background-color: #050f1a;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ff6600;
}

.hero p {
  font-size: 1.1rem;
  color: #cccccc;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e65500;
}

.services {
  padding: 50px 20px;
  background-color: #0b1723;
}

.services h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.services ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2;
}

.contact {
  background-color: #0b1723;
  padding: 50px 20px;
}

.contact h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}



.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
}

.contact button {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  align-self: center; /* ✅ this centers the button */
}

.contact button:hover {
  background-color: #e65500;
}


footer {
  background-color: #0a1a2f;
  padding: 20px;
  color: #cccccc;
  font-size: 0.9rem;
}


.trust {
  background-color: #0b1723;
  padding: 50px 20px;
}

.trust h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.trust-item {
  background-color: #121e33;
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map {
  padding: 50px 0;
  background-color: #0b1723;
}

.map h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #050f1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-small {
  height: 50px;
}

.phone-cta {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.phone-cta:hover {
  color: #ffffff;
}

nav {
  position: relative;
}

.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ff6600;
  display: none;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #ff6600;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #050f1a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    padding: 20px;
    border: 1px solid #222;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.service-areas {
  background-color: #050f1a;
  padding: 40px 20px;
  text-align: center;
}

.service-areas h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 25px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.area-tags span {
  background-color: #121e33;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.map-container {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.map h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-hero {
  background-color: #050f1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.about-content {
  background-color: #0b1723;
  color: #fff;
  padding: 60px 20px;
}

.about-content h2 {
  color: #ff6600;
  margin-top: 30px;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-content ul li {
  margin: 10px 0;
  font-weight: 500;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-content ul {
  margin-top: 1rem;
  margin-bottom: 2rem;
}









.slider-wrapper {
  background-color: #050f1a;
  padding: 50px 20px;
  text-align: center;
}

.slider-title {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show entire image without cropping */
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
