* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Rotis sans serif', sans-serif;
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background-color: #fff;
  position: relative;
}

.header-left img {
  height: 125px;
  padding: 10px 25px;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #176d80;
}

.nav-menu {
  background-color: #f7931e;
  padding: 55px 100px;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  gap: 40px;
}

.nav-menu a {
  color: #176d80;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #9D9E91;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 60vh;
}

.hero-left {
  flex: 1;
  background-color: #176d80;
  color: white;
  padding: 110px 50px;
  padding-right: 200px;
  margin-top: 30px;
  margin-right: -100px;
  margin-left: -150px;
  clip-path: polygon(0 0, 90% 0, 74% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-right {
  flex: 1;
  margin: 0 -150px -30px -150px;
  z-index: 1;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero text */
.sub-heading {
  color: #f2911e;
  letter-spacing: 10px;
  margin-bottom: 15px;
  font-weight: 860;
  font-size: 25px;
}

.hero-left h1 {
  font-size: 65px;
  font-weight: 860;
  margin-bottom: 25px;
}

/* CTA Button */
.cta-btn {
  background-color: #f7931e;
  color: #176d80;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px #b46810;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #ecb575;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #0c4251, #a5e2ef, #0c4251);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/* ---------------------- RESPONSIVE STYLES ---------------------- */

@media screen and (max-width: 1024px) {

  @media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .burger {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    display: none;
    margin-top: 15px;
    padding: 20px;
    clip-path: none;
  }

  .nav-menu.show {
    display: flex;
  }
  .hero {
    flex-direction: column;
  }

  .hero-left {
    padding: 60px 40px;
    clip-path: none;
    margin: 0;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .sub-heading {
    letter-spacing: 6px;
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-right {
    margin: 0;
    clip-path: none;
  }

  .header-left img {
    height: 100px;
  }
}

@media screen and (max-width: 600px) {
  .hero-left {
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .sub-heading {
    letter-spacing: 4px;
    font-size: 12px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .nav-menu a {
    font-size: 15px;
  }

  footer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
}