* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", Arial, sans-serif;
  line-height: 1.6;
  background: #f2f4f8;
  color: #222;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1em;
}

/* Header */

header {
  background: #046157;
  color: "#ffffff";
  border-bottom: 1px solid #ddd;
  padding: 1rem;
  position: relative;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* LOGO STYLE */

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #eee;
  /*  max-height: 90px; */
}

.logo-img {
  display: none;
}

.logo-text {
  display: inline-block;
  font-size: 1.4rem;
}

header h1 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
}

.contact-banner {
  display: none;
  width: 100%;
  background-color: #034c45;
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.contact-banner a {
  color: #ffffff;
  text-decoration: none;
}

.contact-banner a:hover {
  text-decoration: underline;
}

/* BURGER MENU  */

.menu-toggle {
  background: transparent;
  border: none;
  padding: 0.5rem;
  font-size: 2rem;
  display: block;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle img {
  width: 32px;
  height: auto;
  display: block;
}

/* Side Navigation */
.side-nav {
  background-color: rgba(3, 76, 69, 0.9); /*  look for a different color*/
  opacity: 0.9;
  position: fixed;
  top: 0;
  right: -260px;
  width: 250px;
  /*  height: 100%; */
  overflow-y: auto;
  padding-top: 2rem;
  transition: right 0.3s ease;
  z-index: 999;
  border-top: 1px solid #eee;
  margin-top: 1rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-nav.open {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
/* closing burger menu */

.close-nav {
  background-color: rgba(246, 154, 79, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.close-nav:hover {
  color: #f69a4f;
  background-color: #ddd;
}

.side-nav.open .close-nav {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav ul li {
  border-bottom: 1px solid #eee;
}

.side-nav a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  font-weight: bold;
  color: #f69a4f;
  transition: color 0.2s ease-in-out;
}

.side-nav a:hover {
  color: #eee;
}


/* HERO SECTION */

.hero {
  background: url("/assets/img/hero.jpg") no-repeat center;
  background-color: #034c45;
  background-size: contain;
  color: #fff;
  text-align: right;
  padding: 5rem 1em 3rem;
  margin: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 300px;
}

.hero-container {
  max-width: 600px;
  text-align: center;
  background-color: #0336323d;
  padding: 2rem;
}

.hero-container p:first-child {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f69a4f;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

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

.hero .btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.8em 1.5em;
  background: #f69a4f;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero .btn:hover {
  background-color: #fff;
  color: #f69a4f;
}
/* Services */


.services {
  padding: 3rem 1rem;
  background: #fafafa;
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #034c45;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #555;
}

.service-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.service-card {
  flex: 0 0 280px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #034c45;
}

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

/* Why-choose-us section */

.why-choose-us {
  background: #f3f6f9;
  padding: 3rem 1rem;
}

.why-choose-us h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 2rem;
  color: #034c45;
}

.why-choose-us .usp-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.why-choose-us .usp-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 1.5rem;
  position: relative;
  color: #555;
}

.why-choose-us .usp-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f69a4f;
  font-weight: bold;
}

/* Footer  */

.site-footer {
  background-color: #046157;
  color: #ffffff;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #00aeef;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-column {
  flex: 1 1 200px; /* responsive columns */
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
  color: #ccc;
  line-height: 1.5;
  text-decoration: none;
}

/* .footer-column img {
  height: 80px;
  max-width: 140px;
  margin-bottom: 1rem;
  display: block;
}
 */

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-style: italic;
  padding: 20px 0;
}

.footer-column a:hover {
  color: #f69a4f;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
}

/*  Media Queries */

@media (min-width: 768px) {
  /* show logo image, hide text */

  .logo-img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  /* consider to leave text, looks good */
  .logo-text {
    display: none;
  }
  .menu-toggle {
    display: none;
  }

  .side-nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: none;
  }

  .side-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .side-nav a {
    padding: 0.75rem 1rem;
    color: white;
  }

  .side-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .contact-banner {
    display: flex;
    justify-content: space-around;
    /*   white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    font-size: 0.9rem;
    padding: 0.3rem;
  }
}
