* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #003366, #0099cc, #92ec8f, #ffffff);
  line-height: 1.6;
  color: #333;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:  0.3rem 0.3rem 0.3rem 0.3rem;
  background: #003366;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header {
  background: rgb(189, 231, 249);
  color: rgb(6, 5, 5);
  padding: 1rem 1rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px; 
}

.logo img {
  height: 150px;
  width: 250px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: #004080;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #d70c0c;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.hero-wrapper {
  padding: 0 0.3rem;
  display: flex;
  justify-content: center;
  background-color: #003366;
}

.hero {
  width: 100%;
  max-width: 1500px;
}

.hero img {
  width: 100%;
  height: 600px;
  display: block;
  border-radius: 8px; /* Optional: soft visual touch */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: subtle depth */
}


.content-section {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background: linear-gradient(to right, #e4edd0, #9ec4d0, #bae5b8, #eacfcf);
  flex-wrap: wrap;
  gap: 2rem;
}

.services, .about {
  width: 48%;
  min-width: 300px;
}

.services h2, .about h2 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 28px;
}

.about h3 {
  margin-top: 1.5rem;
  font-size: 22px;
  color: #005a9c;
}

.about p {
  margin-bottom: 1rem;
  font-size: 16px;
}

.about ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 16px;
}

.about ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0078d4;
  font-weight: bold;
}

.services ul {
  list-style: none;
  padding-left: 0;
}

.services li {
  margin-bottom: 0.5rem;
}

.services a {
  text-decoration: none;
  color: #003366;
}

.services a:hover {
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: #f7f9fb;
    position: fixed;
    top: 100px;
    right: 0;
    left: 200px;
    width: 100px;
    display: none;
    padding: 1rem 1rem 1rem 1rem;
  }

  .hero img {
  height: auto;
  max-height: 300px; /* Adjust based on visual balance */
  object-fit: cover;
}


  nav ul.show {
    display: flex;
  }

  nav ul {
  transition: all 0.3s ease-in-out;
}

  .menu-toggle {
    display: block;
  }

  .content-section {
    flex-direction: column;
    gap: 2rem;
  }

  .services, .about {
    width: 100%;
  }

  .about h2, .gallery h2 {
    font-size: 24px;
  }

  .about h3 {
    font-size: 20px;
  }

  .about p, .about ul li {
    font-size: 15px;
  }
}
footer {
  background-color: #5399df;
  color: #f0eeee;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  height: 150px;
  width: auto;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #ffcc00;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 13px;
  border-top: 1px solid #fff;
  padding-top: 1rem;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-info p, .footer-links a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 100px;
    width: auto;
    align-items: flex-start;

  }

  .menu-toggle {
    font-size: 1rem;
    cursor: pointer;
  }

  header {
    flex-direction: column;
    align-items: stretch;
  }

  nav ul {
    width: 100%;
    padding: 0.5rem 0;
  }
}

body::before {
  content: "VSK";
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  color: #000;
  opacity: 0.03; /* Ultra subtle */
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.gallery {
  padding: 1rem;
  background-color: white;
  border-top: 1px solid #ddd;
}

.gallery h2 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 28px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 0.5rem;
  align-items: center;
}

.thumb img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumb img:hover {
  transform: scale(1.05);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}
/* Flex container to align logo and heading side-by-side */
.logo-title {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Logo image */
.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

/* Hide title block on desktop */
.title-block {
  display: none;
}

/* Heading style */
.site-title {
  margin: 0;
  font-size: 1px; /* hidden visually on desktop */
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: rgb(19, 4, 119);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  line-height: 1;
}

/* Tagline */
.site-subtext {
  margin: 0.05rem 0 0 1.9rem;
  font-size: 0.9rem;
  color: #1f1565;
  font-style: italic;
}

/* Responsive tweak for mobile */
@media (max-width: 768px) {
  .header-top {
    padding-left: 0;
    padding-right: 1rem;
  }

  .logo-title {
    justify-content: flex-start;
    width: 100%;
  }

  .logo-img {
    height: 50px;
  }

  .title-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .site-title {
    font-size: 1.1rem;
  }

  .site-subtext p {
    font-size: 0.7rem;
    margin: 0.9rem 0 0 0;
  }
}

.footer-map {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
}

.footer-map h4 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 10.25%; /* 16:9 aspect ratio */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}



.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}