* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #444;
}

header {
  background-color: #00a8e8;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-weight: 600;
}



/* NAVBAR */
nav {
  background-color: #00334e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

nav .logo {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00a8e8;
}

/* ONLY for navbar buttons */
nav .highlight {
  background-color: #00a8e8;
  padding: 8px 18px;
  border-radius: 25px;
  color: white;
}


/* ABOUT SECTION */
.about-section {
  padding: 70px 20px;
}

.about-container {
  max-width: 1500px;
  margin: auto;
}

.about-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: #9acd32;
  margin: 0 auto 40px;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  background: #2f2f7f;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
}

.know-more-section {
  background: linear-gradient(
    180deg,
    #0f4c75 0%,
    #0b5c7a 50%,
    #053b5f 100%
  );
  padding: 85px 20px 95px;
  text-align: center;
}


.know-more-container {
  max-width: 1100px;
  margin: 0 auto;
}

.know-more-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.know-more-text {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 10px;
}

.know-more-subtext {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 34px;
}

/* Highlight Green (Yora style) */
.highlight {
  color: #7ed321;
  font-weight: 600;
  text-decoration: none;
}

/* CONTACT BUTTON – matched */
.contact-btn {
  display: inline-block;
  background-color: #7ed321;
  color: #0b0b0b;

  padding: 12px 36px;
  border-radius: 4px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #6bb81c;
  transform: translateY(-1px);
}


/* FOOTER */
footer {
  background: #00334e;
  color: white;
  text-align: center;
  padding: 18px;
  /* margin-top: 60px; */
}
