/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Unified image styling */
.page-img {
  display: block;
  max-width: 1000px;   /* All images share this max width */
  width: 100%;          /* Scale down on smaller screens */
  height: auto;         /* Maintain aspect ratio */
  margin: 0 auto;       /* Center within container */
}

/* Header and navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #00b4d8;
}

.contact-btn {
  background: #00b4d8;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #0096c7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: 0.3s;
}

/* Hero section */
.hero {
  padding-top: 80px; /* offset for fixed header */
}

/* Section spacing */
section {
  padding: 0px 0;
}

/* Contact section */
.contact-section {
  background-color: #f8f9fa;
  padding: 0px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #0a1931;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 0px;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 0px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info i {
  font-size: 1.2rem;
  color: #00b4d8;
  margin-right: 15px;
  min-width: 25px;
}

.contact-info div strong {
  display: block;
  margin-bottom: 5px;
  color: #00b4d8;
}

.contact-info div p {
  margin: 0;
  color: #666;
}

/* Footer */
.footer {
  background: #0a1931;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 20px;
  color: #00b4d8;
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #00b4d8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}

/* Responsive styles */
@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: left 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0x;
  }

  .hero {
    padding-top: 00px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info i {
    margin-right: 0;
    margin-bottom: 0px;
  }
}