.hero {
	background-color: #f5f5f5; 
	padding: 80px 20px; 
	text-align: center;
}
 .service-box { 
 border: 1px solid #ddd; 
 padding: 20px; 
 border-radius: 8px; 
 text-align: center; 
 }
 /* Reset and base styles */
body, ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Top bar */
.top-bar {
  background-color: #003366;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .social-icons a {
  margin-left: 10px;
  color: #fff;
}

/* Header main */
.horizontal-header {
  background-color: #ffffff;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.logo img {
  height: 50px;
}
.contact {
  color: #fff;
  font-size: 14px;
}
.contact a {
  color: #ffcc00;
  text-decoration: none;
}
.nav-menu {
  display: flex;
  gap: 15px;
}
.nav-menu a {
  color: rgb(64, 0, 128);
  font-weight: 500;
  text-decoration: none;
}
.nav-menu a:hover {
  color: rgb(0, 128, 255);
}
.quote-btn {
  background-color: #ffcc00;
  color: #003366;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}
.quote-btn:hover {
  background-color: #e6b800;
  color: #fff;
}

/* Quote button */
.quote-btn {
  background-color: #ffcc00;
  color: #003366;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: auto;
}
.quote-btn:hover {
  background-color: #e6b800;
}
/* social icons */
 .social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: #000000;   /* white icons on dark background */
  font-size: 18px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #ffcc00; /* hover effect */
}
/*about banner*/
.about-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #0055a5, #003366);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/image/royalty.webp'); /* optional hex pattern */
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 0;
}

.hex-bg h1 {
  position: relative;
  font-size: 48px;
  color: white;
  font-weight: bold;
  z-index: 1;
  letter-spacing: 2px;
}
/* about content*/
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-image img {
  width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-text {
  flex: 1;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.about-text h2 {
  color: #003366;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}



.logo-transparent {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}
/* Mobile-first tweaks */
@media (max-width: 768px) {
  /* Top bar stack */
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
  }

  /* Nav menu collapse */
  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    display: none; /* hide initially */
  }
  .nav-menu.active {
    display: flex; /* show when toggled */
  }

  /* About section stack */
  .about-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .about-image img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  .about-text h2 {
    font-size: 20px;
  }
  .about-text p {
    font-size: 14px;
  }

  /* Banner text resize */
  .hex-bg h1 {
    font-size: 28px;
  }

  /* Footer stack */
  .contact-services {
    flex-direction: column;
    text-align: center;
  }
}

/* Tablet and above */
@media (min-width: 768px) and (max-width: 1200px) {
  .about-container {
    flex-direction: row;
    gap: 20px;
  }
  .about-image img {
    width: 250px;
  }
}
/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A237E;
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* hide menu initially */
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
  }
  .nav-menu.active {
    display: flex; /* show when toggled */
  }
  .hamburger {
    display: block; /* show hamburger icon */
  }
}

.footer {
  background-color: #003366;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
}

/* Grid layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Headings */
.footer-box h3 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-size: 18px;
}

/* Text + links */
.footer-box p,
.footer-box a,
.footer-box li {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.footer-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffcc00;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  border-top: 1px solid #ffffff33;
  padding-top: 12px;
  color: #ccc;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer {
  position: relative;
  background-color: #003366; /* fallback color */
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Background image with opacity */
.footer::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: url('/image/footer-im.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;   /* adjust opacity here */
  z-index: 0;
}

/* Content above overlay */
.footer * {
  position: relative;
  z-index: 1;
}

