* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

/* ===== GLASS NAVBAR ===== */

.glass-navbar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
}

.glass-inner {
  backdrop-filter: blur(14px);
  background: rgba(202, 201, 201, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 60px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

/* ===== MENU WHITE PILL ===== */

.nav-pill {
  background: #f3f3f3;
  border-radius: 50px;
  padding: 6px 18px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-pill a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
}

/* ===== CTA PILL ===== */

.enquiry-pill {
  background: #f3f3f3;
  border-radius: 50px;
  padding: 8px 18px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  margin-left: 14px;
}

/* ===== MOBILE ===== */

.custom-toggler {
  border: none;
  font-size: 24px;
  background: transparent;
  color: white;
  display: none;
}

/* Desktop layout only */
@media (min-width: 992px) {
  #navMenu {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .custom-toggler {
    display: block;
  }

  #navMenu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .nav-pill {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    padding: 15px;
  }

  .enquiry-pill {
    width: 100%;
    text-align: center;
    margin-left: 18%;
  }
}

.hero-wrapper {
  background-image: url("/img/hero.webp");
  background-size: cover;
  background-position: center right;
  border-radius: 28px;
  margin: 20px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* CONTENT POSITION */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* BADGE */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b2e5b;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #2fa84f;
  border-radius: 50%;
}

/* TITLE */

.hero-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.05;
  margin: 10px 0 5px;
  color: white;
}

/* DESCRIPTION */

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 10px;
}

/* BUTTON */

.hero-btn {
  background: white;
  color: #111;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.hero-btn-icon {
  width: 32px;
  height: 32px;
  background: #2fa84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  rotate: -50deg;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 58px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.15;
  }
}

@media (max-width: 576px) {
  .hero-wrapper {
    /* min-height: 85vh; */
    border-radius: 18px;
    margin: 12px;
  }

  .hero-title {
    font-size: 34px;
  }
}

.stats-number {
  font-size: 64px;
  font-weight: 700;
  color: #0b2e5b;
  margin-bottom: 6px;
}

.stats-label {
  font-size: 14px;
  color: #6c757d;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Mobile tuning */

@media (max-width: 768px) {
  .stats-number {
    font-size: 34px;
  }

  .stats-label {
    font-size: 11px;
  }
}

.about-img {
  border-radius: 20px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: #f4a300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label span {
  width: 40px;
  height: 2px;
  background: #f4a300;
  display: inline-block;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2e5b;
  margin: 12px 0 16px;
}

.about-desc {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 22px;
}

/* FEATURE STRIP */

.feature-strip {
  background: #f5f7fa;
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid #2fa84f;
}

.feature-strip h6 {
  font-weight: 600;
  color: #0b2e5b;
  margin-bottom: 4px;
}

.feature-strip p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #e8f5ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #2fa84f;
  font-size: 18px;
  flex-shrink: 0;
}

/* CTA */

.about-cta {
  background: #0b2e5b;
  color: white;
  border-radius: 50px;
  padding: 12px 22px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-title {
    font-size: 32px;
  }
}

/* ===== SERVICES SECTION ===== */

.services-section {
  background: #ffffff;
}

.section-top-label {
  color: #2fa84f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2e5b;
}

/* CARD */

.service-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
  filter: brightness(0.9);
}

/* GLASS LEARN PILL */

.learn-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* GLASS CONTENT BOX */

.glass-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

  padding: 20px 22px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: white;
}

.glass-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.glass-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .section-main-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .service-card img {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .section-main-title {
    font-size: 28px;
  }

  .service-card img {
    height: 300px;
  }
}

.integrated-services {
  background: #ffffff;
}

.integrated-box {
  background: #f4f6f8;
  border-radius: 26px;
}

.integrated-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2e5b;
}

.integrated-desc {
  max-width: 720px;
  margin: auto;
  color: #6c757d;
  font-size: 15px;
}
.service-card-link{
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card{
    transition: 0.35s ease;
    cursor: pointer;
}

.service-card:hover{
    transform: translateY(-6px);
}

.service-card:hover img{
    transform: scale(1.05);
}

.service-card img{
    transition: 0.5s ease;
}
/* CARD */

.int-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}

.int-card h5 {
  font-weight: 600;
  color: #111;
  margin-top: 14px;
}

.int-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/* ICON */

.int-icon {
  width: 54px;
  height: 54px;
  background: #2fa84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin: auto;
}

/* FEATURED */

.int-card.featured {
  background: #0b0b0b;
  color: white;
}

.int-card.featured h5 {
  color: white;
}

.int-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .integrated-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .int-card {
    padding: 20px 14px;
  }

  .int-card h5 {
    font-size: 15px;
  }

  .int-card p {
    font-size: 12px;
  }

  .int-icon {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}

/* CTA BUTTON */

.int-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 2px solid #222;
  border-radius: 50px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.int-cta:hover {
  background: #111;
  color: white;
}

/* GREEN CIRCLE */

.int-cta-icon {
  width: 34px;
  height: 34px;
  background: #2fa84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* ===== WHY SECTION COMPACT ===== */

.why-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2e5b;
  margin: 8px 0 10px;
}
.why-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f59e0b; /* warm orange */
  text-transform: uppercase;
  margin-bottom: 6px;
}

.why-line {
  width: 34px;
  height: 2px;
  background: #f59e0b;
  display: inline-block;
}
.why-desc {
  font-size: 15px;
  color: #555;
  max-width: 560px;
  margin-bottom: 10px;
}

/* CARDS */

.why-card {
  border-radius: 18px;
  padding: 22px 20px;
  height: 100%;
  min-height: 170px;
}

.blue-card {
  background: #cfdde8;
}

.green-card {
  background: #dce6d6;
}

.why-card h6 {
  font-weight: 600;
  margin: 8px 0 6px;
}

.why-card p {
  font-size: 13px;
  margin: 0;
  color: #333;
}

/* ICON */

.why-icon {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.65);
}

/* IMAGE */

.why-img {
  border-radius: 26px;
  height: 100%;
  object-fit: cover;
}

/* CTA */

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #111;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.why-cta span {
  width: 26px;
  height: 26px;
  background: #2fa84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-title {
    font-size: 26px;
  }

  .why-img {
    margin-top: 15px;
    height: auto;
  }
}

/* ===== CONTACT CTA ===== */

.contact-box {
  background: #000;
  border-radius: 28px;
  color: white;
}

.cta-label {
  color: #2fa84f;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
}

.cta-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-desc {
  max-width: 700px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* INFO */

.cta-info i {
  font-size: 18px;
  color: #fff;
}

/* IMAGE */

.cta-img {
  border-radius: 22px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* FLOATING FORM */

.cta-form-card {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #f3f3f3;
  padding: 24px;
  border-radius: 20px;
  width: 320px;
}

/* FORM INPUT */

.cta-form-card .form-control {
  border-radius: 50px;
  padding: 10px 16px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* BUTTON */

.cta-send-btn {
  border: 1.5px solid #111;
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-send-btn span {
  width: 26px;
  height: 26px;
  background: #2fa84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-image-wrap {
    margin-top: 20px;
  }

  .cta-form-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 15px;
  }

  .cta-img {
    height: 260px;
  }
}

/* ===== FOOTER ===== */

.site-footer {
  background: #1976a8;
  color: #dbeaf4;
  font-size: 14px;
}

.footer-logo {
  height: 42px;
}

.footer-desc {
  line-height: 1.7;
  max-width: 260px;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbeaf4;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* CONTACT */

.footer-contact {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: #6ed36e;
  margin-top: 3px;
}

/* SOCIAL */

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: white;
  transition: 0.2s;
}

.footer-social a:hover {
  background: white;
  color: #1976a8;
}

/* DIVIDER */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* COPYRIGHT */

.footer-copy {
  font-size: 13px;
  color: #c7deea;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .footer-desc {
    max-width: 100%;
  }
}
