/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: #111;
  color: #fff;
}

.navbar nav a {
  margin-left: 1.5rem;
  color: #ddd;
  text-decoration: none;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('../images/city.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 2rem;
}

.hero-content {
  max-width: 600px;
}
.servicehero {
  background: url('../images/city3.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 2rem;
}

.servicehero-content {
  max-width: 600px;
}
.contacthero {
  background: url('../images/city2.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 2rem;
}

.contacthero-content {
  max-width: 600px;
}

.bookhero {
  background: url('../images/city4.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 2rem;
}

.bookhero-content {
  max-width: 600px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #0077ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background: white;
}

.feature {
  max-width: 250px;
  text-align: center;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Contact */
.contact-section {
  display: flex;
  gap: 3rem;
  padding: 3rem 2rem;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-info {
  flex: 1;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: white;
  margin-top: 3rem;
}
/* Base mobile nav container */
.topnav {
  overflow: hidden;
  background-color: #111;
  position: relative;
  padding: 0;
}

/* Logo */
.topnav .logo {
  color: white;
  font-size: 20px;
  padding: 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

/* Hidden links container */
.topnav #myLinks {
  display: none;
  background-color: #111;
}

/* Links inside dropdown */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a:hover {
  background-color: #333;
}

/* Hamburger icon */
.topnav a.icon {
  display: block; /* shown only on mobile */
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px;
  width: 40px;
  height: 40px;
  /*background-image: url('../images/hamburger.png');*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent; /* optional */
  border: none;

}

.topnav a.icon:hover {
  display: block; /* shown only on mobile */
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px;
  width: 40px;
  height: 40px;
  /*background-image: url('../images/hamburger.png');*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent; /* optional */
  border: none;
}

/* --- MOBILE BREAKPOINT --- */
@media (max-width: 768px) {
  .topnav a.icon {
    display: block; /* shown only on mobile */
    position: absolute;
    right: 0;
    top: 0;
    padding: 16px;
    width: 40px;
    height: 40px;
    /*background-image: url('../images/hamburger.png');*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent; /* optional */
    border: none;
  }

  /* Hide desktop nav links */
  .topnav #myLinks a {
    text-align: left;
  }
}
.services {
  padding: 2rem;
}

.services h2 {
  margin-top: 2rem;
  color: black;
  font-size: 1.8rem;
}

.service-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-item {
  background: #111;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.service-item img {
  width: 100%;
  height: auto;
  max-width: 300px;   /* optional: keeps them from getting too large */
  border-radius: 6px; /* optional: looks cleaner */
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Ensure the dropdown container controls visibility */
#myLinks {
  display: none !important;
}
#myLinks.open {
  display: block !important;
}
.book-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 26px;
  background-color: #0019ff; /* Brand blue */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px; /* Pill shape */
  box-shadow: 0 4px 10px rgba(0, 25, 255, 0.35); /* Soft glow like the example */
  transition: all 0.25s ease;
}

.book-btn:hover {
  background-color: #0030ff; /* Slightly brighter blue */
  box-shadow: 0 6px 14px rgba(0, 25, 255, 0.45);
  transform: translateY(-2px); /* Subtle lift */
}