/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
     font-family: 'Inter', sans-serif;
}
body::-webkit-scrollbar {
      
    display: none;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 30px;
    position: fixed;   /* Make it fixed */
    top: 0;            /* Stick to top */
    left: 0;
    width: 100%;       /* Full width */
    z-index: 1000;     /* Keep above other content */
}


.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links ul li a:hover {
    color: #1d3a8a;
}

.enquire-btn {
    background: #1d2c6e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.enquire-btn:hover {
    background: #132050;
}

/* Burger Button (hidden on desktop) */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1d2c6e;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-nav ul li a:hover {
    color: #1d3a8a;
}

/* Show/Hide helper */
.hidden {
    display: none;
}

/* FOOTER */
.footer {
    background: #1d2c6e;
    color: #fff;
    padding: 40px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-left img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 10px 0;
}

.social-links a {
    color: #E6B122;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #E6B122;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: #E6B122;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #E6B122;
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 8px;
}

.footer-contact i {
    color: #E6B122;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    padding-top: 10px;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* hide normal nav */
    }

    .burger {
        display: block; /* show burger */
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-nav {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        margin-top: 10px;
    }
}


#map-section {
  text-align: center;
  background-color: #f5faff;
}

#map-section img {
  width: 1520px;   /* fixed width (like screenshot) */
  height: 450px;   /* fixed height */
  object-fit: cover; /* crop nicely if needed */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Make it responsive on smaller screens */
@media (max-width: 1024px) {
  #map-section img {
    width: 100%;
    height: auto;
  }
}

.footer-contact {
  max-width: 350px; /* restrict width for better readability */
  color: #fff; /* adjust based on your footer background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffdd00; /* accent color for heading */
  font-weight: bold;
}

.footer-contact p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p i {
  color: #ffdd00; /* icon color */
  min-width: 20px; /* aligns icons vertically */
  font-size: 16px;
  margin-top: 2px; /* slight vertical alignment */
}

/* Remove default anchor styles */
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.sidebar ul li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  background: #f0f0f0;
}

.sidebar ul li a.active {
  background: #007bff;
  color: white;
  font-weight: bold;
}

