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

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 0 30px;
  height: 80px;
  border: 1px solid #e2e2e2;
  top: 0;
  z-index: 1000;
  position: relative; 
}
#navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}


.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  cursor: pointer;
}

.logo-img {
  height: 60px;  
  width: auto;
  object-fit: contain;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}



.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #274182;
}

.nav-link.active {
  color: #274182;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #274182;
  border-radius: 2px 2px 0 0;
}


.enquiry-btn {
  background-color: #274182;
  color: #ffffff;
  border: none;
  padding: 0 45px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  
}

.enquiry-btn:hover {
  background-color: #274182;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #274182;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .enquiry-btn {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 30px;
    width: 100%;
    display: block;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    border-left: 4px solid #274182;
    padding-left: 26px;
  }
}


.footer {
  background-color: #274182;
  color: #ffffff;
  padding: 50px 60px 30px;
}


.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}


.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
}




.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}


.linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #1da8b8;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.linkedin-btn:hover {
  background-color: #179aaa;
  transform: scale(1.08);
}


.footer-spacer {
  flex: 1;
}


.footer-links {
  min-width: 140px;
}

.links-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}


.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0 24px;
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  transition: color 0.2s ease;
}

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


@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 24px;
  }

  .footer-main {
    flex-direction: column;
    gap: 36px;
  }

  .footer-spacer {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
  }
}


.services-hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/assets/images/IMG-20260427-WA0029.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  padding: 4rem 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.hero-content {
  max-width: 950px;
  color: #ffffff;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
  animation-delay: 0.2s;
}

.hero-title {
  font-size: 62px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 24px;
  animation-delay: 0.4s;
}

.hero-description {
  font-size: 18px;
  line-height: 1.5;
  animation-delay: 0.6s;
}

.hero-label, .hero-title, .hero-description {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services List */
.services {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #e3e8f0;
  margin-bottom: 3rem;
}

.service-heading {
  font-size: 48px;
  color: #274182;
  margin-bottom: 80px;
  line-height: 0.9;
  text-align: center;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 calc(50% - 1.5rem);
  max-width: 580px;
  background-color: #ffffff;
  border: 1px solid #e3e8f0;
  padding: 2rem;
  opacity: 0;
  animation: fadeUp linear both;
  animation-timeline: view();
  animation-range: entry 15% cover 30%;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #2C83BA;
  margin-bottom: 8px;
}

.service-card-subtitle {
  font-size: 16px;
  line-height: 1.4;
  color: #191C1E;
  margin-bottom: 8px;
}

.service-card-description {
  font-size: 16px;
  color: #45464D;
  line-height: 1.4;
}

/* process Flow */
.process {
  padding: 80px 20px;
  background: #ECEEF0;
  text-align: center;
}

.process-label {
  font-size: 14px;
  font-weight: 600;
  color: #2C83BA;
  text-align: center;
  margin-bottom: 8px;
}

.process-heading {
  font-size: 48px;
  color: #274182;
  margin-bottom: 80px;
  line-height: 0.9;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E0E0E0;
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp linear both;
  animation-timeline: view();
  animation-range: entry 15% cover 30%;
}

.process-icon {
  width: 64px;
  height: 64px;
  background-color: #274182;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  animation: iconPop 0.6s ease forwards;
}

@keyframes iconPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.process-content h3 {
  font-size: 16px;
  color: #274182;
  margin-bottom: 8px;
}

.process-content p {
  font-size: 14px;
  color: #145464;
  line-height: 1.6;
}

/* services CTA */
.service-cta {
  padding: 80px 20px;
  background: #2C83BA;
  text-align: center;
}

.cta-title {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeScale linear both;
  animation-timeline: view();
  animation-range: entry 25% cover 40%;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 4rem;
  background-color: #ffffff;
  color: #274182;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #163a8a;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Mobile */
/* hero */
@media (max-width: 768px) {
  .services-hero {
    min-height: 70vh;
  }

  .hero-content {
    max-width: 80vw;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1;
  }

  .hero-description {
    font-size: 16px;
  }

  /* services list */
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* process flow */
  .process {
    text-align: left;
  }

  .process-heading, .process-label {
    text-align: center;
  }

  .process-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .process-flow {
    flex-direction: column;
    gap: 2rem;
  }

  .process-flow:before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 27px;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .process-icon {
    margin: 0;
    flex-shrink: 0;
  }

  /* services CTA */
  .service-cta {
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 36px;
  }
  .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 1rem 3rem;
  }
  
}

@media (hover: hover) {
  .service-cta .cta-button:hover {
    background-color: #163a8a;
    transform: translateY(-2px);
    color: #ffffff;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


