.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: rgb(255, 255, 255);
  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 {
  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;
}

/*footer*/
.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;
  }
}


.contact-panels {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.contact-panels h2 {
  font-size: 26px;
  color: #003366;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Grid layout */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Panel box styling */
.panel-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.panel-box:hover {
  transform: translateY(-6px);
}

.panel-box h3 {
  font-size: 18px;
  color: #1A237E;
  margin-bottom: 12px;
}

.panel-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.panel-box a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
}

.panel-box a:hover {
  color: #ffcc00;
}

/* 📱 Responsive tweaks */
@media (max-width: 768px) {
  .contact-panels h2 {
    font-size: 22px;
  }
  .panel-box h3 {
    font-size: 16px;
  }
  .panel-box p {
    font-size: 13px;
  }
}

.logo-transparent {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}
/* 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 {
  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;
}

.contact-section{
    padding:80px 0;
    background:#f5f5f5;
    font-family:Arial, sans-serif;
}

.contact-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

/* Left Image */
.contact-image{
    flex:1;
}

.contact-image img{
    width:100%;
    height:auto;
    border-radius:5px;
}

/* Right Form */
.contact-form{
    flex:1;
}

.contact-form h3{
    color:#3a8ec1;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:10px;
}

.contact-form h2{
    font-size:42px;
    margin-bottom:30px;
    color:#222;
}

/* form rows */
.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-row input,
.form-row select{
    flex:1;
    padding:14px;
    border:none;
    background:#eaeaea;
    font-size:14px;
}

textarea{
    width:100%;
    padding:15px;
    border:none;
    background:#eaeaea;
    margin-bottom:20px;
    resize:none;
}

/* Button */
button{
    width:100%;
    padding:16px;
    background:#2f7db2;
    color:white;
    font-size:16px;
    border:none;
    cursor:pointer;
    font-weight:bold;
}

button:hover{
    background:#256894;
}

/* Mobile responsive */
@media(max-width:768px){

.contact-container{
    flex-direction:column;
}

.form-row{
    flex-direction:column;
}

.contact-form h2{
    font-size:30px;
}

}
