* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.4); /* semi-transparent overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s;
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: #ffd700; 
  color: #004aad;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ----------------- Mobile Responsive ----------------- */
@media (max-width: 768px) {
  .hero {
    height: 50vh; /* shorter hero on tablets & phones */
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 2rem; /* scale down headline */
  }

  .hero-content p {
    font-size: 1rem; /* scale down subheadline */
  }

  .hero-buttons .btn {
    padding: 8px 20px; /* smaller buttons */
    font-size: 0.9rem;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh; /* really compact on small phones */
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column; /* stack buttons vertically */
    display: flex;
  }

  .hero-buttons .btn {
    width: 80%;
    margin: 5px auto;
  }
}

/* Navbar container */
.navbar {
  position: fixed; /* sticky nav */
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(0, 74, 173, 0.85); /* semi-transparent over hero */
  backdrop-filter: blur(10px); /* soft blur effect */
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo */
.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ffd700; /* gold accent on hover/active */
}

/* CTA button in nav */
.btn-nav {
  background-color: #ffd700;
  color: #004aad;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.3s;
}

.nav-links li a.btn-nav:hover {
  background-color: #ffeb3b; /* slightly lighter gold */
  color: #004aad; /* keeps text dark */
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Responsive behavior */
/* Hamburger menu for mobile */
@media (max-width: 768px) {
  .hamburger{
    display: flex;
  }

  .hamburger span {
    background: #ffd700;
    transition: all 0.3s ease;  
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #004aad; /* dark blue background */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 220px;
    z-index: 9999;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    display: flex;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links a {
    display: block;
    color: #ffd700; /* gold text on dark background */
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #ffeb3b; /* slightly lighter gold */
  }

  .hamburger span {
    background: #ffd700; /* make hamburger icon gold for visibility */
  }
}


.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #004aad;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  flex: 1; /* ensures button stays at the bottom if content varies */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  color: #004aad;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.service-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
  flex-grow: 1; /* pushes button down if content is short */
}

.btn-service {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: #ffd700;
  color: #004aad;
  font-weight: bold;
  transition: transform 0.3s;
  text-align: center;
}

.btn-service:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    gap: 25px;
  }
  .service-card img {
    height: 170px;
  }
  .service-content h3 {
    font-size: 1.4rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: 20px;
  }

  .service-card img {
    height: 160px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .btn-service {
    width: 100%;
  }
}

.pricing-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #004aad;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.pricing-card h3 {
  color: #004aad;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #004aad;
}

/* Most Popular Badge */
.pricing-card.popular {
  border: 2px solid #ffd700;
}

.pricing-card.popular .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffd700;
  color: #004aad;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
}

.btn-service {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: #ffd700;
  color: #004aad;
  font-weight: bold;
  transition: transform 0.3s;
}

.btn-service:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    gap: 20px;
  }
  .pricing-card h3 {
    font-size: 1.3rem;
  }
  .pricing-card p {
    font-size: 0.95rem;
  }
  .pricing-card .price {
    font-size: 1.3rem;
  }
}

.testimonials-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #004aad; /* match site blue */
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: #fff;
    margin: 0;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card p.quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    color: #004aad;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-card .role {
    font-size: 0.95rem;
    color: #555;
}

/* Carousel buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #004aad;
    color: #ffd700;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s, color 0.3s;
}

.carousel-btn:hover {
    background: #ffd700;
    color: #004aad;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Desktop: show 3 slides */
@media (min-width: 769px) {
    .testimonial-card {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

#booking {
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#booking h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #004aad;
}

#booking form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}

#booking form:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

#booking form input,
#booking form select,
#booking form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#booking form input:focus,
#booking form select:focus,
#booking form textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 8px rgba(0, 74, 173, 0.3);
  outline: none;
}

#booking form button {
  padding: 12px;
  background: #004aad;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

#booking form button:hover {
  background: #003087;
  transform: scale(1.05);
}

/* Honeypot input hidden */
#booking form input[name="_gotcha"] {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #booking form {
    padding: 25px 20px;
    gap: 15px;
  }

  #booking h2 {
    font-size: 2rem;
  }

  #booking form input,
  #booking form select,
  #booking form textarea {
    font-size: 0.95rem;
  }

  #booking form button {
    font-size: 0.95rem;
  }
}

#contact {
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #004aad;
}

.contact-card {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: #004aad;
}

.contact-item a {
    color: #555;          /* Match your text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;       /* Optional: match paragraph size */
}

.contact-item a:hover {
    color: #004aad;        /* Optional: color on hover */
    text-decoration: underline; /* Optional: show underline on hover only */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .contact-icon {
    font-size: 1.3rem;
  }
}

footer {
  background: #004aad;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  margin: 8px 0;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer p {
    font-size: 0.95rem;
  }
}