@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
}
.floating-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.85); /* less transparent white */
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 10;
  transition: background 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  height: 42px; /* unified logo height */
  width: auto;
  display: block;
  margin-right: 1.2rem;
  vertical-align: middle;
}
.logocenter {
  height: 90px; /* unified logo height */
  width: auto;
  display: block;
  margin: 0 auto;   /* centers the image horizontally */
}

.logo-link {
  display: flex;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #006289;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem; /* unified desktop size to match Home */
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover, .nav-links li a:focus {
  background: #FFC80B;
  color: #006289;
}
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0 4rem 0;
  box-sizing: border-box;
  background: #fff;
}
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  background: #fffbe7;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-bg-slideshow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s;
  z-index: 1;
}
.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-bg-dim {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(24, 36, 54, 0.45);
  z-index: 3;
  transition: opacity 1.6s;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-top: 1.5rem;
  color: #fff;
}
.hero-content h1 {
  font-size: 2.7rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content p {
  font-size: 1.2rem;
  color: #f6f7fa;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-quote {
  font-weight: bold;
  color: #FFC80B;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
#home { background: #fffbe7; }
#about { background: #f6f7fa; }
#services { background: #f3f3f3; }
#contact {
  background: url('assets/contact-bg.jpg') center center/cover no-repeat;
}
@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1rem; /* more top/bottom to avoid cramped logo */
  }
  .nav-links {
    gap: 1rem;
  }
  .logo {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem; /* more vertical breathing room on very small screens */
  }
  .logo-link {
    margin-right: auto;
  }
  .hamburger {
    margin-left: auto;
  }
  .logo { height: 32px; }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section {
    min-height: 50vh;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .section {
    min-height: 60vh;
    padding-bottom: 2rem;
  }
}
.hero-learnmore-group {
  margin: 1.5rem 0 0.5rem 0;
  position: relative;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-learnmore {
  display: none;
  background: #FFC80B;
  color: #;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, opacity 1.2s;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-learnmore.active {
  display: inline-block;
  opacity: 1;
  position: static;
  transform: none;
}
.hero-learnmore:focus, .hero-learnmore:hover {
  background: #ffd700;
  color: #006289;
}
.hero-title-0, .hero-title-1, .hero-title-2,
.hero-desc-0, .hero-desc-1, .hero-desc-2 {
  display: none;
  opacity: 0;
  transition: opacity 1.2s;
}
.hero-title-0.active, .hero-title-1.active, .hero-title-2.active,
.hero-desc-0.active, .hero-desc-1.active, .hero-desc-2.active {
  display: block;
  opacity: 1;
}
.hero-title-0.active, .hero-title-1.active, .hero-title-2.active {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-desc-0.active, .hero-desc-1.active, .hero-desc-2.active {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .hero-title-0.active, .hero-title-1.active, .hero-title-2.active {
    font-size: 2.2rem;
  }
  .hero-desc-0.active, .hero-desc-1.active, .hero-desc-2.active {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .hero-title-0.active, .hero-title-1.active, .hero-title-2.active {
    font-size: 1.3rem;
  }
  .hero-desc-0.active, .hero-desc-1.active, .hero-desc-2.active {
    font-size: 0.95rem;
  }
}
.about-section {
  background: #f3f3f3;
  width: 100%;
  min-height: 30vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0 0.5rem 0;
}
.about-section h2 {
  font-size: 3rem;
  color: #006289;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  font-weight: 800;
  margin-top: 0.5rem;
}
.about-section h2::after {
  content: '';
  display: block;
  margin: 0.3rem auto 0 auto;
  width: 72px;
  height: 4px;
  background: #FFC80B;
  border-radius: 2px;
}
.about-section p {
  font-size: 1.15rem;
  color: #006289;
  max-width: 700px;
  margin: 0.5rem auto 0 auto;
  padding: 0 1rem;
}
.steps-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  background: #f6f7fa;
  padding: 2.5rem 1rem;
  margin: 0 auto 2rem auto;
  width: 100%;
  box-sizing: border-box;
}
.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.step:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.step-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 1.2rem;
}
.step h3 {
  font-size: 1.3rem;
  color: #4a90e2;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.step p {
  font-size: 1.05rem;
  color: #006289;
  margin: 0;
}
@media (max-width: 900px) {
  .steps-section {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .step {
    max-width: 100%;
    width: 100%;
  }
}
.about-img {
  display: block;
  margin: 1.2rem auto 1.2rem auto;
  max-width: 120px;
  width: 100%;
  height: auto;
}
.about-highlight {
  color: #006289;
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 2rem;
  text-align: center;
}
.about-img-crop {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
}
.about-img-crop .step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.about-img-crop .step:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.about-steps-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  width: 100%;
  margin-bottom: 0;
  max-width: 100vw;
  box-sizing: border-box;
  background: rgba(163,163,163,0.85);
  border-radius: 0;
  padding: 2.5rem 1.5rem;
}
.about-steps-row .step {
  background: #fff;
  border: 2px solid #FFC80B;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.18s ease-in, box-shadow 0.18s ease-in, border-color 0.18s ease-in;
  opacity: 0;
  transform: none;
}
.about-steps-row .step.in-view.step-left {
  animation: slideInLeft 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
.about-steps-row .step.in-view.step-center {
  animation: slideInUp 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
.about-steps-row .step.in-view.step-right {
  animation: slideInRight 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
.about-steps-row .step:hover, .about-steps-row .step:focus-within {
  border-color: #FFC80B;
  transform: scale(1.06);
  box-shadow: 0 0 32px 8px #ffe066, 0 2px 8px rgba(0,0,0,0.10);
}
.about-steps-row .step h3 {
  font-size: 1.3rem;
  color: #006289;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-steps-row .step-icon {
  width: 95px;
  height: 95px;
  margin-bottom: 1.2rem;
  filter: none;
}
@media (max-width: 900px) {
  .about-section h2 {
    padding: 0 1rem;
  }
  .about-steps-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-steps-row .step {
    margin: 0 1rem;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 480px) {
  .about-section h2 {
    padding: 0 1rem;
  }
  .about-section p {
    padding: 0 1.2rem;
  }
  .about-steps-row .step {
    margin: 0 1.2rem;
    width: calc(100% - 2.4rem);
  }
}


@media (max-width: 360px) {
  .about-section h2 {
    padding: 0 1.2rem;
  }
  .about-section p {
    padding: 0 1.5rem;
  }
  .about-steps-row .step {
    margin: 0 1.5rem;
    width: calc(100% - 3rem);
  }
}

.about-img-cropper {
  width: 100vw;
  height: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.about-img-cropped {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  margin: 0;
  padding: 0;
  display: block;
  opacity: 0;
  transform: translateX(80px);
  transition: none;
}
.about-img-cropped.in-view {
  animation: slideInLeftImg 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes slideInLeftImg {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInDownZoom {
  from { opacity: 0; transform: scale(1.06) translateY(-80px); }
  to { opacity: 1; transform: scale(1.06) translateY(0); }
}
@media (max-width: 900px) {
  .about-img-cropped {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .about-img-cropper {
    height: auto;
  }
  .about-img-cropped {
    margin-top: 0;
    width: 100vw;
    height: auto;
  }
} 
.about-split-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  min-height: 400px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f6f7fa;
}
.about-split-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.5rem 3rem 6vw;
  box-sizing: border-box;
}
.about-split-left h2 {
  font-size: 2.8rem;
  color: #006289;
  margin-bottom: 0.3rem;
  margin-top: 1.2rem;
  letter-spacing: 1px;
  font-weight: 800;
}
.about-split-left p {
  font-size: 1.1rem;
  color: #006289;
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.about-split-btn {
  display: block;
  width: auto;
  align-self: flex-start;
  margin-top: 2.2rem;
  background: #FFC80B;
  color: #006289;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, opacity 0.3s;
  opacity: 1;
  text-align: center;
}
.about-split-btn:focus, .about-split-btn:hover {
  background: #ffd700;
  color: #006289;
}
.about-split-right {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.about-split-img {
  opacity: 0;
  transform: translateX(-80px);
  transition: none;
}
.about-split-img.in-view {
  animation: slideInLeft 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
@media (max-width: 900px) {
  .about-split-section {
    flex-direction: column;
    min-height: 0;
  }
  .about-split-left, .about-split-right {
    flex: 1 1 100%;
    padding: 2rem 1rem;
    min-width: 0;
    min-height: 0;
  }
  .about-split-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
} 
.about-split-btn-row {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
} 
.team-section {
  min-height: 100vh;
  width: 100vw;
  background: url('assets/teambg.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.team-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.team-section-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  text-align: center;
  color: #fff;
}
.team-quote {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 1000px;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  letter-spacing: 1.5px;
}
.team-sub {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
@media (max-width: 700px) {
  .team-quote {
    font-size: 1.5rem;
    max-width: 95vw;
  }
  .team-sub {
    font-size: 1.1rem;
  }
} 
.team-members-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3rem;
  width: 100vw;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #A3A3A3;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 3rem 3rem 2rem 3rem;
  min-width: 220px;
  max-width: 400px;
  width: 100%;
  position: relative;
  border: 2px solid #006289;
  transition: transform 0.18s ease-in, box-shadow 0.18s ease-in, border-color 0.18s ease-in;
  opacity: 0;
  transform: none;
}
.team-member.in-view.team-left {
  animation: slideInLeft 1.6s ease-in-out forwards;
}
.team-member.in-view.team-right {
  animation: slideInRight 1.6s ease-in-out forwards;
}
.team-member:hover, .team-member:focus-within {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13), 0 3px 12px rgba(0,0,0,0.08);
  border-color: #006289;
}
.team-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  background: #eee;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #006289 0%, #0a7a9a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.team-email {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(247,183,11,0.8);
  color: #006289;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 2;
  white-space: nowrap;
}
.team-member:hover .team-email,
.team-member:focus-within .team-email,
.team-img:hover + .team-email,
.team-avatar:hover + .team-email {
  opacity: 1;
  pointer-events: auto;
}
.team-role {
  color: rgba(247,183,11,0.8);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.team-name {
  color: #006289;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 900px) {
  .team-members-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .team-member {
    max-width: 100%;
    width: 100%;
    padding: 2rem 1rem 1.5rem 1rem;
  }
} 
.section-divider {
  width: 100%;
  max-width: 900px;
  height: 0;
  border: none;
  border-top: 2.5px solid #e0e0e0;
  margin: 1.5rem auto 1.5rem auto;
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
} 
.services-title {
  font-size: 2.2rem;
  color: #006289;
  font-weight: 800;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.services-underline {
  width: 80px;
  height: 4px;
  background: #FFC80B;
  margin: 0 auto 1.1rem auto;
  border-radius: 2px;
}
.services-sub {
  text-align: center;
  font-size: 1.15rem;
  color: #006289;
  font-weight: 500;
  margin-bottom: 2.2rem;
} 
.services-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  margin: 2.5rem 0 1.5rem 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.services-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  flex: 1 1 320px;
  max-width: 350px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2rem 0 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: none;
}
.services-card.in-view.card-left {
  animation: dropInTop 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
.services-card.in-view.card-center {
  animation: zoomBounceIn 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
.services-card.in-view.card-right {
  animation: riseInBottom 1.2s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes dropInTop {
  0% { opacity: 0; transform: translateY(-400px); }
  80% { opacity: 1; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes riseInBottom {
  0% { opacity: 0; transform: translateY(400px); }
  80% { opacity: 1; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes zoomBounceIn {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.08); }
  80% { transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}
.services-img {
  width: 100%;
  max-width: 900px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background: #f3f3f3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 2px solid #FFC80B;
}
.services-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #006289;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}
.services-card-desc {
  font-size: 1.08rem;
  color: #006289;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (max-width: 1000px) {
  .services-cards-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .services-card {
    max-width: 95vw;
    width: 100%;
  }
} 
.contact-content {
  max-width: 600px;
  margin: 4rem auto 0 auto;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 3px solid #006289;
  top: 0;
  padding-top: 1.1rem;
}
.contact-title {
  font-size: 2.2rem;
  color: #006289;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}
.contact-title-underline {
  width: 80px;
  height: 4px;
  background: #FFC80B;
  margin: 0.5rem auto 1.1rem auto;
  border-radius: 2px;
}
.contact-sub {
  font-size: 1.15rem;
  color: #006289;
  font-weight: 500;
  margin-bottom: 2.2rem;
}
.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
  margin: 0 auto;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.08rem;
  color: #006289;
  background: none;
  border: none;
  box-shadow: none;
}
.contact-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(0%) brightness(0.95) sepia(0.2) hue-rotate(30deg) saturate(2.5);
}
.services-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(0%) brightness(0.95) sepia(0.2) hue-rotate(30deg) saturate(2.5);
}

.contact-info-label {
  font-size: 1.08rem;
  color: #006289;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 700px) {
  .contact-content {
    padding: 1.2rem 0.8rem 1.2rem 0.8rem; /* add side gutters to prevent outline touching edges */
    margin: 3rem 0.8rem 0 0.8rem; /* slightly closer to navbar */
  }
  .contact-info-group {
    gap: 0.8rem;
  }
  .contact-title {
    font-size: 1.3rem;
  }
} 
.site-footer {
  width: 100%;
  background: #fff;
  color: #006289;
  font-size: 1rem;
  text-align: center;
  padding: 0.7rem 0 0.7rem 0;
  border-top: 1.5px solid #eee;
  letter-spacing: 0.2px;
  z-index: 10;
}
.footer-link {
  color: #006289;
  text-decoration: underline;
  font-weight: 500;
}
.cookies-popup {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
}
.cookies-card {
  background: #fff;
  border: 2.5px solid #006289;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 1.3rem 2.2rem 1.3rem 1.5rem;
  min-width: 270px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  font-size: 1.05rem;
  color: #006289;
}
.cookies-text {
  margin-bottom: 0.5rem;
  color: #006289;
  font-size: 1.05rem;
}
.cookies-btn-row {
  display: flex;
  gap: 1rem;
}
.cookies-allow-btn, .cookies-reject-btn {
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookies-allow-btn {
  background: #FFC80B;
  color: #006289;
}
.cookies-allow-btn:hover, .cookies-allow-btn:focus {
  background: #ffd700;
}
.cookies-reject-btn {
  background: #eee;
  color: #006289;
}
.cookies-reject-btn:hover, .cookies-reject-btn:focus {
  background: #006289;
  color: #fff;
}
@media (max-width: 700px) {
  .cookies-popup {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .cookies-card {
    min-width: 180px;
    max-width: 95vw;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
} 
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-right: 0.6rem; /* pull away from the far right edge */
}
.hamburger-bar {
  width: 26px;
  height: 3.5px;
  background: #006289;
  margin: 3.5px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.mobile-menu-overlay {
  position: absolute;
  top: 60px;
  right: 1.2rem;
  left: auto;
  width: 210px;
  height: auto;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(.4,2,.6,1), transform 0.35s cubic-bezier(.4,2,.6,1), max-height 0.4s ease, padding 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 0 0.5rem; /* closed state: collapse vertical padding */
  overflow: hidden;
  max-height: 0; /* accordion closed */
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 70vh; /* accordion open max */
  padding: 1.2rem 0.5rem; /* restore padding when open */
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.5rem;
}
.mobile-nav-links li {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mobile-menu-overlay.open .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu-overlay.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-overlay.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-links li {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobile-nav-links li a {
  color: #006289;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
  margin: 0;
  border-radius: 6px;
  display: block;
  width: 100%;
  text-align: center;
}
.mobile-nav-links li a:hover, .mobile-nav-links li a:focus {
  color: #FFC80B;
  background: #f6f7fa;
}
@media (min-width: 901px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Mobile menu attached to navbar on small screens */
@media (max-width: 900px) {
  .mobile-menu-overlay {
    position: fixed; /* attach to navbar */
    top: 60px; /* navbar height */
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    border-radius: 0; /* flush with edges */
    box-shadow: none; /* no floating look */
    right: 0;
  }
  .mobile-menu-overlay.open {
    padding: 0.5rem 0; /* simple vertical rhythm */
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
  }
  .mobile-nav-links {
    align-items: stretch; /* full-width items */
  }
  .mobile-nav-links li {
    opacity: 1;
    transform: none;
  }
  .mobile-nav-links li a {
    text-align: left;
    padding: 0.9rem 1rem;
  }
}

/* Ensure desktop navbar spacing is consistent */
@media (min-width: 901px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    gap: 0;
    padding: 1rem 1rem;
    justify-content: space-between;
  }
} 

/* ===================== Services Page Styles (moved from services.html) ===================== */
/* Service split sections */
.service-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 550px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  gap: 0;
}
.service-section:nth-child(even) { background: #f6f7fa; }
.service-section:nth-child(odd) { background: #fff; }
.service-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  border: 3px solid #FFC80B;
  border-radius: 8px;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.service-section:nth-child(odd) .service-content { order: 2; }
.service-section:nth-child(even) .service-content { order: 1; }
.service-title {
  font-size: 2.8rem;
  color: #006289;
  margin-bottom: 1rem;
  margin-top: 0;
  letter-spacing: 0.5px;
  font-weight: 800;
}
.service-description {
  font-size: 1.3rem;
  color: #006289;
  margin: 0;
  line-height: 1.5;
}
.service-image-container {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.service-section:nth-child(odd) .service-image-container { order: 1; }
.service-section:nth-child(even) .service-image-container { order: 2; }
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateX(-80px);
  transition: none;
  border-radius: 12px;
}
.service-section:nth-child(odd) .service-image { transform: translateX(-80px); }
.service-section:nth-child(even) .service-image { transform: translateX(80px); }
.service-content.in-view { animation: slideInUp 1.2s cubic-bezier(.4,2,.6,1) forwards; }
.service-section:nth-child(odd) .service-image.in-view { animation: slideInLeft 1.2s cubic-bezier(.4,2,.6,1) forwards; }
.service-section:nth-child(even) .service-image.in-view { animation: slideInRight 1.2s cubic-bezier(.4,2,.6,1) forwards; }

@media (max-width: 900px) {
  .service-section { flex-direction: column; min-height: 0; }
  .service-content, .service-image-container {
    flex: 1 1 100%;
    padding: 2rem 1rem;
    min-width: 0; min-height: 0;
    order: unset !important;
  }
  .service-content {
    margin-bottom: 1.5rem;
  }
  .service-image {
    width: 100%; height: 300px; object-fit: cover;
    transform: translateY(80px) !important;
  }
  .service-image.in-view { animation: slideInUp 1.2s cubic-bezier(.4,2,.6,1) forwards !important; }
  .service-title { font-size: 2.2rem; letter-spacing: 0.3px; word-break: break-word; overflow-wrap: anywhere; }
  .service-description { font-size: 1.15rem; }
}
@media (max-width: 600px) {
  .service-content { padding: 1.5rem 1rem; margin-bottom: 1.5rem; }
  .service-title { font-size: 1.8rem; letter-spacing: 0.2px; }
  .service-description { font-size: 1.05rem; }
}
@media (max-width: 360px) {
  .service-title { font-size: 1.6rem; line-height: 1.1; }
  .service-description { font-size: 1rem; }
}
/* Tight gutters on very small screens */
@media (max-width: 480px) {
  .service-content, .service-image-container { padding-left: 1rem; padding-right: 1rem; }
  .service-content { margin-bottom: 1.5rem; }
  .service-section .service-image-container { order: -1; padding-top: 0; margin: 0; }
  .service-image { transform: none !important; }
}
@media (max-width: 360px) {
  .service-content { padding: 1.2rem 0.8rem; margin-bottom: 1.5rem; }
  .service-image-container { padding-left: 0.8rem; padding-right: 0.8rem; }
}


/* OUR CORPORATE */
.team-section {
    padding: 100px 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* CEO SECTION */
.ceo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ceo-card {
    max-width: 380px !important;
    width: 100%;
    padding: 40px;
    border: 2px solid #f4b400;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ceo-card .avatar {
    width: 90px;
    height: 90px;
    font-size: 24px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* from 220px → 300px */
    gap: 30px;
    max-width: 1200px;
    margin: auto;

}

.team-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #FFC80B;
    max-width: 1000px;
}

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

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #474747;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card h3 {
    margin: 20px 0 15px;
    font-size: 1.5rem;
    color: #006289;

}

.team-card p {
    font-size: 1.5rem;
    color: #006289;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eef2f7;
}

/* SECTION */
.team-section-face {
  padding: 60px 20px;
}

/* GRID */
.team-container-face {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.team-card-face {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */
.team-card-face img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* TEXT AREA */
.card-info-face {
  padding: 15px;
  background: #FFC80B;
}

.card-info-face h3 {
  margin: 5px 0;
  font-size: 18px;
}

.card-info-face p {
  font-size: 13px;
  color: #555;
}

/* HOVER LIFT */
.team-card-face:hover {
  transform: translateY(-8px);
}

/* 🔥 ANIMATED BORDER */
.team-card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #FFC80B, #FFC80B, #FFC80B);
  
  /* mask trick */
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.4s ease;
}

/* SHOW BORDER ON HOVER */
.team-card-face:hover::before {
  opacity: 1;
}
.team-card-face:hover {
  transform: translateY(-10px) scale(1.02);
}

.team-card-face {
  backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits-section { background: #fff; padding: 4rem 0; }
.benefits-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.benefits-title { font-size: 3rem; color: #006289; font-weight: 800; margin-bottom: 1rem; letter-spacing: 1px; }
.benefits-underline { width: 80px; height: 4px; background: #FFC80B; margin: 0 auto 1rem; border-radius: 2px; }
.benefits-subtitle { font-size: 1.3rem; color: #006289; margin-bottom: 3rem; font-weight: 500; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.benefit-item { background: #f6f7fa; padding: 2.5rem 2rem; border-radius: 12px; border-left: 4px solid #FFC80B; text-align: left; transition: all 0.3s ease; }
.benefit-item:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; display: block; }
.benefit-item h3 { font-size: 1.4rem; color: #006289; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.benefit-item p { font-size: 1rem; color: #006289; line-height: 1.6; margin-bottom: 1.5rem; text-align: justify; }
.benefit-metric { background: #006289; color: #fff; padding: 1rem; border-radius: 8px; text-align: center; }
.metric-number { display: block; font-size: 1.8rem; font-weight: 800; color: #FFC80B; margin-bottom: 0.3rem; }
.metric-label { font-size: 0.9rem; font-weight: 500; }
@media (max-width: 480px) { .benefits-container { padding: 0 1rem; } }
@media (max-width: 360px) { .benefits-container { padding: 0 0.8rem; } }
@media (max-width: 320px) { .benefits-container { padding: 0 0.6rem; } }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, #FFC80B 0%, #FFC80B 100%); padding: 4rem 0; text-align: center; }
.cta-container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.cta-title { font-size: 3rem; color: #006289; font-weight: 800; margin-bottom: 1rem; letter-spacing: 1px; }
.cta-subtitle { font-size: 1.3rem; color: #006289; margin-bottom: 2rem; font-weight: 500; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-primary { background: #006289; color: #fff; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; box-sizing: border-box; }
.cta-primary:hover { background: #0a8bb3; transform: translateY(-2px); }
.cta-secondary { background: transparent; color: #006289; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; border: 2px solid #006289; transition: all 0.3s ease; box-sizing: border-box; }
.cta-secondary:hover { background: #006289; color: #fff; transform: translateY(-2px); }
@media (max-width: 768px) { .cta-buttons { padding: 0 0.5rem; flex-direction: column; align-items: center; } .cta-primary, .cta-secondary { width: min(320px, 100%); text-align: center; display: block; margin: 0 auto; box-sizing: border-box; } }

/* IT Team Composition */
.it-team-section { background: #f6f7fa; padding: 4rem 0; }
.it-team-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.it-team-title { font-size: 3rem; color: #006289; font-weight: 800; margin-bottom: 1rem; letter-spacing: 1px; }
.it-team-subtitle { font-size: 1.3rem; color: #006289; margin-bottom: 3rem; font-weight: 500; }
.it-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.it-role-card { background: #fff; padding: 2.5rem 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px solid #e0e0e0; transition: all 0.3s ease; text-align: center; }
.it-role-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-color: #FFC80B; }
.role-icon { font-size: 3rem; margin-bottom: 1rem; text-align: center; }
.role-title { font-size: 1.5rem; color: #006289; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.role-description { font-size: 1rem; color: #006289; line-height: 1.6; margin-bottom: 1.5rem; text-align: center; }
.role-skills { list-style: none; padding: 0; margin: 0; text-align: center; }
.role-skills li { padding: 0.5rem 0; color: #006289; font-size: 0.95rem; padding-left: 0; text-align: center; }
.role-skills li:before { content: "✓"; color: #FFC80B; font-weight: bold; position: static; display: inline-block; margin-right: 0.4rem; }
@media (max-width: 480px) { .it-team-container { padding: 0 1rem; } }
@media (max-width: 360px) { .it-team-container { padding: 0 0.8rem; } .it-team-title { font-size: 2rem; } .it-team-subtitle { font-size: 1.1rem; } }
@media (max-width: 320px) { .it-team-container { padding: 0 0.6rem; } .it-team-title { font-size: 1.8rem; } .it-team-subtitle { font-size: 1rem; } }
@media (max-width: 280px) { .it-team-title { font-size: 1.7rem; } .it-team-subtitle { font-size: 0.95rem; } }

/* Quote section (baseline) */
.quote-section { background: #f6f7fa; padding: 4rem 0; text-align: center; }
.quote-section .quote-container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.quote-section h2 { font-size: 2.5rem; color: #006289; font-weight: 800; margin-bottom: 2rem; letter-spacing: 1px; }
.quote-section p { font-size: 1.3rem; color: #006289; font-weight: 600; }
/* Responsive font tweaks for quote section already exist below */