/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fefefe;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #00539C; /* deep royal blue */
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo img {
  max-height: 60px;
}

/* Flex container for header content */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f0c14b; /* gold accent */
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url('images/hero2.png') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content {
  background: rgba(0, 83, 156, 0.7);
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #f0c14b;
  color: #00539C;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #d4a831;
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00539C;
}

/* About */
.about p {
  max-width: 700px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #555;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: #f8f8f8;
  border: 2px solid #00539C; /* royal blue border */
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #00539C;
}

.service-card p {
  color: #666;
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #00539C;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00539C;
  outline: none;
}

/* Footer */
.footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #00539C;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 6px;
    width: 150px;
    gap: 1rem;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav.nav-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    margin-bottom: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .header .container {
    position: relative;
  }
}

.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  background: rgba(0, 83, 156, 0.7);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  max-width: 700px;
}

/*Social Media*/
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: right;
  align-items: center;
  padding: 0.5rem 1rem;
}

.social-icons a {
  color: #f8f8f8;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: rgb(1, 98, 243);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #00539C;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 250px; /* or adjust as needed */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.lb-close, .lb-nav {
  display: block !important;
}

