* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* =========================
   HEADER
========================= */

.top-header {
  width: 100%;
  padding: 18px 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;

  /* Glass */
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 90px;
  margin-left: 200px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links li a:hover {
  color: #0b7e88;
}

/* Active link */
.active-link {
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* =========================
   HOME HERO
========================= */

.hero {
  height: 520px;
  width: 100%;
  background: url("../img/home-img.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  color: white;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.05;
}

/* Wave under hero */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================
   IMAGE BOX SECTION
========================= */

.image-box-section {
  width: 100%;
  padding: 60px 50px;
  background: white;
}

.image-box {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.image-box-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 0 20px;
}

.overlay-text {
  max-width: 650px;
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
}

/* =========================
   INFO SECTION (TEXT + CIRCLE IMAGE)
========================= */

.info-section {
  width: 100%;
  background: #fff;
  padding: 110px 90px;
}

.info-container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.info-left {
  flex: 1.2;
}

.info-left h2 {
  font-size: 70px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 35px;
}

.info-left p {
  max-width: 600px;
  font-size: 22px;
  line-height: 2;
  font-weight: 300;
  color: #111;
}

.info-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.circle-img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CONTACT SECTION (HOME)
========================= */

.contact-section {
  background: #fff;
  padding: 100px 50px 150px;
  text-align: center;
}

.contact-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #000;
  line-height: 1.3;
}

.contact-info {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.contact-box {
  flex: 1;
}

.contact-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.contact-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #111;
}

.contact-box a {
  text-decoration: none;
  color: #0b7e88;
  font-weight: 500;
}

.contact-btn {
  display: inline-block;
  margin-top: 25px;
  background: #0b6b7a;
  color: white !important;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
  text-decoration: none;
}

.contact-btn:hover {
  background: #084d57;
}

/* =========================
   FOOTER (HOME - WAVE)
========================= */

.footer {
  position: relative;
  background: #0b6b7a;
  padding: 140px 60px 70px;
  overflow: visible;
}

.footer-wave {
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 200px;
  height: auto;
  opacity: 0.9;
}

.footer-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* =========================
   CONTACT PAGE HERO
========================= */

.contact-hero {
  height: 100vh;
  width: 100%;
  background: url("../img/background-contact") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 170px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: white;
}

.contact-hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 35px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.contact-hero-content h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 45px;
  max-width: 900px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.contact-link {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.contact-location {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* =========================
   FOOTER SIMPLE (contact.html etc.)
========================= */

.footer-simple {
  background: #0b6b7a;
  padding: 70px 60px;
}

.footer-content-simple {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-simple .footer-logo {
  width: 200px;
  height: auto;
}

.footer-simple .footer-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* =========================
   FREE BUTTON (IP + BI)
========================= */

.free-btn {
  display: inline-block;
  margin-top: 25px;
  background: #0b6b7a;
  color: white !important;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
  text-decoration: none;
}

.free-btn:hover {
  background: #084d57;
}

/* =========================
   INTELLECTUAL PROPERTY PAGE HERO
========================= */

.ip-hero {
  height: 100vh;
  width: 100%;
  background: url("../img/intellectual-property.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.ip-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.ip-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 160px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.ip-hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* =========================
   IP SERVICES SECTION
========================= */

.ip-services {
  background: #fff;
  padding: 110px 50px 140px;
}

.ip-services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ip-services-title {
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 90px;
}

.ip-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 140px;
  row-gap: 120px;
  align-items: start;
}

.ip-service h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 22px;
}

.ip-service p {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #111;
}

.ip-button {
  background: #fff;
  padding: 0 50px 120px;
}

.ip-button .ip-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   BUSINESS INCORPORATION PAGE HERO
========================= */

.bi-hero {
  height: 100vh;
  width: 100%;
  background: url("../img/business-corporation.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.bi-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.bi-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 160px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.bi-hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* =========================
   BI SERVICES SECTION
========================= */

.bi-services {
  background: #fff;
  padding: 110px 50px 140px;
}

.bi-services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.bi-services-title {
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 90px;
}

.bi-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 140px;
  row-gap: 120px;
  align-items: start;
}

.bi-service h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 22px;
}

.bi-service p {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #111;
}

/* 5th paragraph centered */
.bi-extra {
  margin-top: 110px;
  text-align: center;
}

.bi-extra h3 {
  text-align: center;
  font-size: 22px; /* match other titles */
  font-weight: 700;
  margin-bottom: 22px; /* match spacing */
  color: #000;
}

.bi-extra p {
  text-align: center;
  max-width: 520px; /* match paragraph width feel */
  margin: 0 auto 35px;
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #111;
}

.bi-button {
  background: #fff;
  padding: 0 50px 120px;
}

.bi-button-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   ✅ MOBILE (ONLY ONE MEDIA QUERY)
========================= */

@media (max-width: 768px) {
  /* Header */
  .top-header {
    padding: 12px 16px;
  }

  .nav-bar {
    gap: 12px;
  }

  .nav-logo img {
    width: 140px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-left: 0;
  }

  .nav-links li a {
    font-size: 14px;
  }

  /* Home hero */
  .hero {
    height: 520px;
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    padding: 0 16px;
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
    max-width: 320px;
    margin: 0 auto;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }

  .wave {
    height: 85px;
  }

  /* Image box */
  .image-box-section {
    padding: 35px 16px;
  }

  .image-box img {
    height: 260px;
  }

  .overlay-text {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.8;
  }

  /* ✅ INFO SECTION MOBILE (IMAGE 2 STYLE: row, circle right) */
  .info-section {
    padding: 60px 16px;
  }

  .info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
  }

  .info-left {
    flex: 1;
    min-width: 0;
  }

  .info-left h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .info-left p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .info-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .circle-img {
    width: 150px;
    height: 150px;
    flex: 0 0 auto;
  }

  /* Contact section */
  .contact-section {
    padding: 70px 16px 140px;
  }

  .contact-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .contact-box p {
    font-size: 16px;
  }

  /* Footer home */
  .footer {
    padding: 150px 16px 50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-text {
    font-size: 16px;
  }

  .footer-wave {
    top: -120px;
    height: 180px;
  }

  /* Contact hero */
  .contact-hero-content {
    padding-top: 140px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-hero-content h1 {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .contact-hero-content h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .contact-link,
  .contact-location {
    font-size: 16px;
  }

  /* Footer simple */
  .footer-simple {
    padding: 50px 16px;
  }

  .footer-content-simple {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-simple .footer-logo {
    width: 150px;
  }

  /* IP services mobile */
  .ip-services {
    padding: 70px 16px 90px;
  }

  .ip-services-title {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .ip-services-grid {
    grid-template-columns: 1fr;
    row-gap: 55px;
    column-gap: 0;
  }

  .ip-service h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .ip-service p {
    font-size: 15px;
    line-height: 1.85;
    max-width: 100%;
  }

  .ip-button {
    padding: 0 16px 80px;
  }

  .free-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* BI mobile */
  .bi-hero-content {
    padding-top: 140px;
  }

  .bi-hero-content h1 {
    font-size: 42px;
  }

  .bi-services {
    padding: 70px 16px 80px;
  }

  .bi-services-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .bi-services-grid {
    grid-template-columns: 1fr;
    row-gap: 55px;
    column-gap: 0;
  }

  .bi-service h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .bi-service p {
    font-size: 15px;
    line-height: 1.85;
    max-width: 100%;
  }

  .bi-extra {
    margin-top: 60px;
  }

  .bi-extra h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .bi-extra p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.85;
  }

  .bi-button {
    padding: 0 16px 80px;
  }
}

/* =========================
   PARTNERS PAGE HERO
========================= */

.partners-hero {
  height: 100vh;
  width: 100%;
  background: url("../img/partners.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.partners-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.partners-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 160px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.partners-hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* =========================
   PARTNERS FORM SECTION
========================= */

.partners-form-section {
  background: #fff;
  padding: 110px 50px 140px;
}

.partners-form-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partners-form-container h2 {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
}

.partners-form-container p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: #111;
  margin-bottom: 50px;
}

.partners-form {
  text-align: left;
  background: rgba(11, 107, 122, 0.06);
  padding: 45px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

.form-group textarea {
  resize: none;
}

.partners-submit-btn {
  margin-top: 25px;
  width: 100%;
  background: #0b6b7a;
  color: white;
  padding: 14px 40px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.partners-submit-btn:hover {
  background: #084d57;
}

/* ✅ Mobile */
@media (max-width: 768px) {
  .partners-hero-content {
    padding-top: 140px;
  }

  .partners-hero-content h1 {
    font-size: 42px;
  }

  .partners-form-section {
    padding: 70px 16px 90px;
  }

  .partners-form-container h2 {
    font-size: 32px;
  }

  .partners-form {
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}

/* ✅ Success Message */
.form-success-msg {
  display: none; /* hidden by default */
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #1f9d55; /* green */
  text-align: center;
}