/* =========================================
   Reset & Base Styles
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #000000;
}

/* =========================================
   Navbar Styles
========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0e3c45;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo a {
  color: #00bfa6;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 0.9rem;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.slogan {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: #00bfa6;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00bfa6;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

/* =========================================
   Header / Hero Section
========================================= */
header {
  padding-top: 20px; /* space for sticky nav */
  text-align: center;
}

.header-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  color: #000;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #009688;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

.btn:hover {
  background-color: #00796b;
}

/* =========================================
   About Section
========================================= */
.about {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0e3c45;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

/* =========================================
   Services Section
========================================= */
.services {
  background-color: #f2f2f2;
  padding: 4rem 2rem;
  text-align: center;
}

.services .container {
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0e3c45;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #009688;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* =========================================
   Why Choose Us Section
========================================= */
.why-choose-us {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0e3c45;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.value-card {
  background-color: #f2f2f2;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  color: #009688;
  margin-bottom: 1rem;
}

.value-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* =========================================
   Social Proof Section
========================================= */
.social-proof {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.social-proof .container {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-proof h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.social-proof p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.social-feed {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow-x: auto;
}

.social-embed {
  min-width: 765px;
  max-width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 0 auto;
}

.social-embed iframe {
  width: 100%;
  max-width: 765px;
  aspect-ratio: 3 / 2;
  border: none;
}

/* =========================================
   Contact CTA Section
========================================= */
.contact-cta {
  background-color: #0e3c45;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-cta .container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-cta .btn {
  background-color: #00bfa6;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-cta .btn:hover {
  background-color: #009688;
}

/* =========================================
   about.html
========================================= */

/* Section Styling */
.about-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.about-section p, .about-section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 2rem;
}

/* Optional spacing between about sections */
.about-section + .about-section {
  border-top: 1px solid #ccc;
}
.what-we-do {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.what-we-do h2 {
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 3rem;
  color: #000000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #008080; /* Teal */
}

.service-card p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

/* Who We Are Section */
.who-we-are-section {
  background-color: #ffffff; /* white background */
  padding: 4rem 1rem;
  text-align: center;
}

.who-we-are-section h2 {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
}

.who-we-are-section p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Our Mission Section */
.our-mission-section {
  background-color: #f5f5f5; /* light grey background */
  padding: 4rem 1rem;
  text-align: center;
}

.our-mission-section h2 {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
}

.our-mission-section p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================
   services.html
========================================= */

.services-overview {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #0e3c45;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}

/* =========================================
   contact.html
========================================= */

.contact-hero {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1rem;
  color: #0e3c45;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #ffffff;
  gap: 2rem;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #0e3c45;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.contact-info a {
  color: #008080;
  text-decoration: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #008080;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 128, 128, 0.2);
}

.btn {
  background-color: #008080;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0e3c45;
}

/* =========================================
   Footer
========================================= */
footer, .site-footer {
  background-color: #0e3c45;
  color: white;
  text-align: center;
  padding: 3rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-column {
  max-width: 300px;
  text-align: center;
}

.footer-column h3, .footer-column h4 {
  color: #00bfa6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bfa6;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1c5d6a;
}

.social-icons {
  margin-top: 0.5rem;
}

.social-icons a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

.social-icons a:hover {
  color: #00bfa6;
}

/* =========================================
   Responsive Media Queries
========================================= */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    background-color: #0e3c45;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background-color: #00bfa6;
  }
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-column {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}
