.header-left {
    display: flex;
    align-items: start;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
  }
  
 .logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo image */
.site-logo {
  height: 52px;
  width: auto;
}

/* Logo text */
.logo-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .site-logo {
    height: 38px;
  }

  .logo-text {
    /* display: none; /* show only logo image on mobile */
    font-size: 1.05rem; 
  }
}

  
      :root {
        --primary: #5b2d8b;
        --secondary: #f6f2ea;
        --text: #222;
        --bg: #ffffff;
      }
      [data-theme="dark"] {
        --text: #f2f2f2;
        --bg: #121212;
        --secondary: #1e1e1e;
      }
  
      * { box-sizing: border-box; margin: 0; padding: 0; }
      body {
        font-family: Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
      }
      a { color: inherit; text-decoration: none; }
  
      /* Header & Navigation */
      header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--primary);
        color: #fff;
      }
      .nav {
        display: flex;
        align-items: top;
        justify-content: space-between;
        padding: 1rem 1.5rem;
      }
      .logo { font-size: 1.3rem; font-weight: bold; }
      .menu {
        list-style: none;
        display: flex;
        gap: 1.2rem;
      }
      .menu li { position: relative; }
      .menu > li > a { padding: 0.5rem; display: block; }
  
      /* Dropdown */
      .submenu {
        position: absolute;
        top: 100%; left: 0;
        background: #2f2a21;
        min-width: 200px;
        display: none;
        list-style: none;
        border-radius: 4px;
      }
      .submenu li a { padding: 0.6rem; display: block; }
      .menu li:hover > .submenu { display: block; animation: fade 0.3s ease; }
  
      .submenu .submenu {
        left: 100%; top: 0;
      }
    
  
      @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
  
      /* Mobile */
      .hamburger { display: none; cursor: pointer; }
      @media (max-width: 768px) {
        .menu { display: none; flex-direction: column; background: var(--primary); }
        .menu.active { display: flex; }
        .hamburger { display: block; }
        .submenu { position: static; }
      }
  
      /* Hero */
      .hero {
    min-height: 51vh;
    background:
      linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
      url("../images/gridding.jpg") center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 700px;
  }
  
  .btn-primary {
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: #ffcc66;
    color: #222;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .hero {
      min-height: 70vh;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  }
  
      /* Sections */
      section { padding: 3rem 2rem; max-width: 1200px; margin: auto; padding-top: 100px; }
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
      }
      .card {
        background: var(--secondary);
        padding: 1.5rem;
        border-radius: 6px;
      }
  
      /* Carousel */
      .carousel { display: flex; overflow-x: auto; gap: 1rem; scroll-snap-type: x mandatory; }
      .carousel img { width: 100%; max-width: 400px; border-radius: 6px; scroll-snap-align: center; }
  
      /* Contact */
      form input, form textarea {
        width: 100%; padding: 0.6rem; margin-bottom: 0.8rem;
      }
      form button { padding: 0.6rem 1.2rem; background: var(--primary); color: #fff; border: none; }
  
      /* Footer */
      footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: var(--primary);
        color: #fff;
        /* padding-top: 1rem; */

        margin-top: 2rem;
      }
      footer .grid { align-items: start; }
  
      /* Utilities */
      .dark-toggle { cursor: pointer; padding: 0.4rem 0.8rem; border: 1px solid #fff; }

      .contact-cards {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #8b0000;
}

.contact-card h3 {
  margin-bottom: 0.6rem;
  color: #333;
}

.contact-card p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}

.contact-card a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
}

.address {
  margin-top: 0.6rem;
  line-height: 1.5;
}
.dot-divider {
  border-top: 2px dotted #ccc;
  margin: 2rem 0;
}


/* GPS location */

.contact-location {
  margin-top: 0rem;
  text-align: center;
  padding: 0px;
}

.map-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  margin-top: 12px;
}

.map-link a {
  color: #8b0000;
  font-weight: 600;
  text-decoration: none;
}
