:root {
      --gold: #8C7A3C;
      --gold-light: #B09A52;
      --gold-pale: #F5EDD8;
      --dark: #3A3E48;
      --secondary: #6B6B64;
      --bg: #F5F7FA;
      --white: #FFFFFF;
      --divider: #E3E7EB;
      --navy: #1E2A3A;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* TOP BAR */
    .top-bar {
      background: var(--navy);
      color: #ccc;
      font-size: 12.5px;
      font-weight: 500;
      padding: 8px 0;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-bar a {
      color: #ccc;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.2s;
    }

    .top-bar a:hover {
      color: var(--gold-light);
    }

    .top-bar a i {
      font-size: 11px;
      width: 14px;
      text-align: center;
    }

    .top-bar .tb-divider {
      color: rgba(255, 255, 255, 0.2);
    }

    .top-bar .social-wrap {
      display: flex;
      gap: 8px;
    }

    .top-bar .social-wrap a {
      width: 26px;
      height: 26px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 5px;
      justify-content: center;
      font-size: 13px;
    }

    .top-bar .social-wrap a:hover {
      background: var(--gold);
      color: white;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 0;
      gap: 10px;
    }

    .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

    .logo-icon {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.5px;
    }

    .logo-text {
      line-height: 1.2;
    }

    .logo-text strong {
      display: block;
      font-size: 17px;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .logo-text span {
      font-size: 10px;
      color: var(--gold);
      letter-spacing: 1.8px;
      text-transform: uppercase;
      font-weight: 600;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1px;
      flex-wrap: nowrap;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: block;
      padding: 8px 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.2s;
      white-space: nowrap;
      letter-spacing: 0.2px;
    }

    .nav-link:hover,
    .nav-item:hover>.nav-link {
      color: var(--gold);
      background: var(--gold-pale);
    }

    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
      min-width: 220px;
      padding: 8px 0;
      z-index: 200;
      border-top: 3px solid var(--gold);
    }

    .nav-item:hover .dropdown {
      display: block;
      animation: fadeDown 0.18s ease;
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-8px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .dropdown a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      transition: all 0.15s;
    }

    .dropdown a:hover {
      background: var(--gold-pale);
      color: var(--gold);
      padding-left: 24px;
    }

    .dropdown a span {
      width: 18px;
      text-align: center;
      color: var(--gold);
      font-size: 13px;
    }

    .mega-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: -100px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
      padding: 22px;
      z-index: 200;
      width: 500px;
      border-top: 3px solid var(--gold);
      gap: 20px;
    }

    .nav-item:hover .mega-dropdown {
      display: flex;
      animation: fadeDown 0.18s ease;
    }

    .mega-col {
      flex: 1;
    }

    .mega-col h4 {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 12px;
      font-weight: 700;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--divider);
    }

    .mega-col a {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 0;
      font-size: 13px;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(227, 231, 235, 0.5);
      transition: all 0.15s;
    }

    .mega-col a:last-child {
      border-bottom: none;
    }

    .mega-col a:hover {
      color: var(--gold);
      padding-left: 5px;
    }

    .mega-col a i {
      width: 18px;
      text-align: center;
      color: var(--gold);
      font-size: 13px;
    }

    .btn-cta {
      background: var(--gold);
      color: var(--white);
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      letter-spacing: 0.5px;
      margin-left: 4px;
      white-space: nowrap;
      flex-shrink: 0;
      text-transform: uppercase;
    }

    .btn-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(140, 122, 60, 0.35);
    }

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

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: white;
      border-top: 1px solid var(--divider);
      padding: 8px 0 16px;
      max-height: 80vh;
      overflow-y: auto;
    }

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

    .mobile-nav-item {
      border-bottom: 1px solid var(--divider);
    }

    .mobile-nav-item:last-child {
      border-bottom: none;
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 24px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .mobile-nav-link:hover {
      color: var(--gold);
    }

    .mobile-sub {
      display: none;
      background: var(--bg);
      padding: 4px 0;
    }

    .mobile-sub.open {
      display: block;
    }

    .mobile-sub a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px 10px 36px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mobile-sub a:hover {
      color: var(--gold);
    }

    .mobile-sub a i {
      width: 18px;
      text-align: center;
      font-size: 13px;
    }

    .mobile-cta-row {
      padding: 14px 24px 0;
    }

    .mobile-cta-row a {
      display: block;
      text-align: center;
      background: var(--gold);
      color: white;
      padding: 13px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* CONTAINER */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* SECTION COMMON */
    section {
      padding: 80px 0;
    }

    .section-tag {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 14px;
      line-height: 1.22;
      letter-spacing: -0.3px;
    }

    .section-sub {
      font-size: 14.5px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.78;
      max-width: 540px;
    }

    .gold-line {
      width: 48px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 14px 0 24px;
    }

    .center-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .center-header .section-sub {
      margin: 0 auto;
    }

    .center-header .gold-line {
      margin: 14px auto 24px;
    }


    /* MOBILE FIX */
@media (max-width: 991px) {

    nav {
        display: none;
    }

    .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    .mobile-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }
}

    /* HERO */
    .hero {
      background: linear-gradient(140deg, #F5F7FA 0%, #EEF1F5 100%);
      padding: 80px 0 64px;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(140, 122, 60, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border: 1px solid rgba(140, 122, 60, 0.3);
      color: var(--gold);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-badge i {
      font-size: 13px;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.18;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-desc {
      font-size: 15px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.8;
      margin-bottom: 34px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .btn-primary {
      background: var(--gold);
      color: white;
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13.5px;
      transition: all 0.2s;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(140, 122, 60, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--dark);
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13.5px;
      border: 2px solid var(--divider);
      transition: all 0.2s;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .trust-badges {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
    }

    .trust-badge .check {
      color: var(--gold);
      font-size: 13px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-img-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .floating-card {
      position: absolute;
      background: white;
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .floating-card .icon {
      font-size: 18px;
      color: var(--gold);
    }

    .floating-card.card1 {
      bottom: 28px;
      left: -18px;
      animation: float1 3s ease-in-out infinite;
    }

    .floating-card.card2 {
      top: 20px;
      right: -18px;
      animation: float2 3s ease-in-out infinite 1s;
    }

    .floating-card.card3 {
      top: 50%;
      right: -26px;
      animation: float3 3s ease-in-out infinite 2s;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-7px)
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(-50%)
      }

      50% {
        transform: translateY(calc(-50% - 7px))
      }
    }

    /* ABOUT */
    .about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-visual {
      background: linear-gradient(145deg, #1E2A3A 0%, #2C3E50 100%);
      border-radius: 18px;
      padding: 46px 34px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border: 40px solid rgba(140, 122, 60, 0.18);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-visual h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .about-visual>p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.78;
      margin-bottom: 26px;
      font-weight: 400;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .stat-item {
      text-align: center;
      padding: 18px 12px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--gold-light);
    }

    .stat-label {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 4px;
      letter-spacing: 0.3px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
      margin-top: 26px;
    }

    .about-feature {
      padding: 17px 15px;
      background: var(--bg);
      border-radius: 12px;
      border-left: 3px solid var(--gold);
      transition: transform 0.2s;
    }

    .about-feature:hover {
      transform: translateY(-2px);
    }

    .about-feature .feat-icon {
      font-size: 20px;
      margin-bottom: 6px;
      color: var(--gold);
    }

    .about-feature h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
    }

    .about-feature p {
      font-size: 12px;
      color: var(--secondary);
      margin-top: 4px;
      line-height: 1.55;
      font-weight: 400;
    }
.services {
  padding: 80px 0;
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.center-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin: 10px 0;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* 4-Column Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row */
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

/* Image Container & Overlay */
.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Black shadow color */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
}

.know-more-btn {
  color: white;
  text-decoration: none;
  border: 2px solid var(--gold);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover .image-overlay {
  opacity: 1;
}

.service-card:hover .know-more-btn {
  transform: translateY(0);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Text Content Area */
.service-info {
  padding: 20px;
}

.service-info h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-info p {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
  .section-title {
    font-size: 2rem;
  }
}

    .hk-divider {
      text-align: center;
      margin: 0 0 26px;
    }

    .hk-divider h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .hk-divider h3 i {
      color: var(--gold);
      font-size: 22px;
    }

    .hk-divider h3::before,
    .hk-divider h3::after {
      content: '';
      display: block;
      width: 50px;
      height: 2px;
      background: var(--divider);
      border-radius: 2px;
    }

    .hk-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    /* WHY */
    .why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .why-item {
      display: flex;
      gap: 14px;
      padding: 17px;
      background: var(--bg);
      border-radius: 12px;
      transition: all 0.2s;
      align-items: flex-start;
    }

    .why-item:hover {
      transform: translateX(6px);
      background: var(--gold-pale);
    }

    .why-num {
      width: 37px;
      height: 37px;
      background: var(--gold);
      color: white;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 13px;
      flex-shrink: 0;
    }

    .why-item h4 {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .why-item p {
      font-size: 13px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.6;
    }

    .why-visual {
      background: linear-gradient(145deg, var(--gold-pale) 0%, #EEE2B8 100%);
      border-radius: 20px;
      padding: 46px 34px;
      text-align: center;
      overflow: hidden;
    }

    .shield-big {
      font-size: 90px;
      margin-bottom: 16px;
      filter: drop-shadow(0 8px 20px rgba(140, 122, 60, 0.28));
      display: block;
      color: var(--gold);
    }

    .why-visual h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .why-visual p {
      font-size: 13px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.75;
    }

    .why-badges {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .why-badge {
      background: white;
      border: 1px solid rgba(140, 122, 60, 0.3);
      border-radius: 100px;
      padding: 6px 13px;
      font-size: 11.5px;
      font-weight: 700;
      color: var(--gold);
    }

    /* CLIENTS */
    .clients {
      background: var(--bg);
    }

    .client-logos {
      overflow: hidden;
      position: relative;
      padding: 8px 0;
    }

    .client-logos::before,
    .client-logos::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
    }

    .client-logos::before {
      left: 0;
      background: linear-gradient(to right, var(--bg), transparent);
    }

    .client-logos::after {
      right: 0;
      background: linear-gradient(to left, var(--bg), transparent);
    }

    .logos-track {
      display: flex;
      gap: 18px;
      animation: scroll 22s linear infinite;
      width: max-content;
    }

    @keyframes scroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .client-logo {
      flex-shrink: 0;
      width: 148px;
      height: 70px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid var(--divider);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 11.5px;
      color: var(--secondary);
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.2s;
    }

    .client-logo:hover {
      border-color: var(--gold);
      color: var(--gold);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    /* AWARDS */
    .awards {
      background: var(--white);
    }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .award-card {
      text-align: center;
      padding: 34px 22px;
      background: var(--bg);
      border-radius: 14px;
      border: 1px solid var(--divider);
      transition: all 0.2s;
    }

    .award-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .award-icon {
      font-size: 42px;
      margin-bottom: 13px;
      display: block;
      color: var(--gold);
    }

    .award-card h4 {
      font-size: 14.5px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .award-card p {
      font-size: 13px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.65;
    }

    /* GALLERY */
    .gallery {
      background: white;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
      gap: 14px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .gallery-item:first-child {
      grid-row: span 2;
    }

    .gallery-thumb {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.4s;
    }

    .gallery-item:hover .gallery-thumb {
      transform: scale(1.06);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(0, 0, 0, 0.35);
    }

    .gallery-overlay i {
      font-size: 28px;
      color: white;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-overlay i {
      opacity: 1;
    }

    .gallery-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
      letter-spacing: 0.5px;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    /* Gallery Responsive — Tablet */
    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
      }

      .gallery-item:first-child {
        grid-row: span 2;
      }
    }

    /* Gallery Responsive — Mobile */
    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
      }

      .gallery-item:first-child {
        grid-row: span 1;
      }

      .gallery-label {
        bottom: 10px;
        left: 10px;
        font-size: 10.5px;
        padding: 4px 10px;
      }

      .gallery-overlay i {
        font-size: 24px;
      }
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--white);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testi-card {
      background: var(--bg);
      border-radius: 14px;
      padding: 26px 22px;
      border: 1px solid var(--divider);
      transition: all 0.2s;
    }

    .testi-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-3px);
    }

    .quote-mark {
      font-size: 50px;
      color: var(--gold);
      line-height: 0.8;
      font-family: Georgia, serif;
      margin-bottom: 12px;
    }

    .testi-stars {
      color: #F5A623;
      font-size: 13px;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }

    .testi-stars i {
      margin-right: 1px;
    }

    .testi-text {
      font-size: 13.5px;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.82;
      margin-bottom: 18px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
    }

    .testi-company {
      font-size: 11.5px;
      font-weight: 400;
      color: var(--secondary);
    }

    /* CTA BANNER */
    .cta-banner {
      background: linear-gradient(135deg, #1E2A3A 0%, #2C3E50 100%);
      padding: 70px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60px;
      left: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(140, 122, 60, 0.22) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(140, 122, 60, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-banner h2 {
      font-size: 32px;
      font-weight: 800;
      color: white;
      margin-bottom: 14px;
      letter-spacing: -0.3px;
      position: relative;
      z-index: 1;
    }

    .cta-banner p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 32px;
      font-weight: 400;
      position: relative;
      z-index: 1;
    }

    .cta-banner .btn-primary {
      font-size: 14px;
      padding: 15px 36px;
      position: relative;
      z-index: 1;
    }

    /* CONTACT */
    .contact {
      background: var(--bg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .contact-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      background: var(--gold-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
      color: var(--gold);
    }

    .contact-item h4 {
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 5px;
    }

    .contact-item p,
    .contact-item a {
      font-size: 13.5px;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.65;
      text-decoration: none;
    }

    .contact-item a:hover {
      color: var(--gold);
    }

    .map-placeholder {
      background: linear-gradient(145deg, #e0e5ec, #d5dce6);
      border-radius: 14px;
      height: 200px;
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--secondary);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .map-placeholder:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .map-placeholder .map-icon {
      font-size: 34px;
      color: var(--gold);
    }

    .map-placeholder strong {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }

    .enquiry-form {
      background: var(--white);
      border-radius: 16px;
      padding: 34px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    }

    .enquiry-form h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 13px;
      border: 1.5px solid var(--divider);
      border-radius: 8px;
      font-size: 13px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      color: var(--dark);
      transition: border-color 0.2s;
      background: var(--bg);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: white;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 92px;
    }

    .btn-submit {
      width: 100%;
      background: var(--gold);
      color: white;
      padding: 13px;
      border: none;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .btn-submit:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(140, 122, 60, 0.35);
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.65);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 2fr;
      gap: 34px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .footer-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--gold);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    .footer-logo-text strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: white;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .footer-logo-text span {
      font-size: 9.5px;
      color: var(--gold-light);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    footer p {
      font-size: 13.5px;
      line-height: 1.75;
      font-weight: 400;
    }

    .footer-title {
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold-light);
      font-weight: 700;
      margin-bottom: 15px;
    }

    footer ul {
      list-style: none;
    }

    footer ul li {
      margin-bottom: 8px;
    }

    footer ul li a {
      color: rgba(255, 255, 255, 0.58);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      transition: color 0.2s;
    }

    footer ul li a:hover {
      color: var(--gold-light);
    }

    .footer-contact p {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .footer-contact p span:first-child {
      color: var(--gold-light);
      flex-shrink: 0;
      margin-top: 2px;
      width: 16px;
      text-align: center;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, 0.58);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-contact a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      padding: 18px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.32);
    }

    .footer-social {
      display: flex;
      gap: 8px;
    }

    .footer-social a {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.2s;
    }

    .footer-social a:hover {
      background: var(--gold);
      color: white;
    }

    /* STICKY CTA */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background: var(--gold);
      color: white;
      padding: 13px 20px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 13px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(140, 122, 60, 0.48);
      transition: all 0.2s;
      letter-spacing: 0.3px;
    }

    .sticky-mobile-cta:hover {
      background: var(--gold-light);
      transform: scale(1.04);
    }

    .sticky-mobile-cta i {
      margin-right: 6px;
    }

    /* REVEAL */
    .reveal {
      /* opacity: 0; */
      transform: translateY(26px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1080px) {

      .services-grid,
      .hk-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
      }

      .hero h1 {
        font-size: 36px;
      }
    }

    @media (max-width: 900px) {

      .about-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr 1fr;
      }

      .awards-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }

      .gallery-item:first-child {
        grid-row: span 1;
      }
    }

    @media (max-width: 768px) {

      nav,
      .btn-cta {
        display: none !important;
      }

      .hamburger {
        display: flex;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      .hero {
        padding: 48px 0 40px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .section-title {
        font-size: 24px;
      }

      .services-grid,
      .hk-grid,
      .testi-grid,
      .awards-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .sticky-mobile-cta {
        display: block;
      }

      .cta-banner h2 {
        font-size: 24px;
      }

      section {
        padding: 54px 0;
      }
    }

    @media (max-width: 480px) {
      .top-bar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
      }

      .top-bar-left,
      .top-bar-right {
        justify-content: center;
      }

      .hero h1 {
        font-size: 24px;
      }

      .hero-btns {
        flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
        text-align: center;
      }

      .trust-badges {
        flex-direction: column;
        gap: 10px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .footer-grid {
        gap: 20px;
      }

      .awards-grid,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .stat-grid {
        grid-template-columns: 1fr 1fr;
      }
    }




    .hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    width: 90%;
    max-width: 1150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
}

.content-left {
    animation: fadeInUp 1s ease forwards;
}

.short-title {
    display: block;
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #d2a62b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover { background: #0056b3; }

.content-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: fadeInRight 1s ease forwards;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active { background: #fff; width: 30px; border-radius: 10px; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-title { font-size: 1.5rem; }
    .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.top-bar{
  display: none;
}
}

@media (max-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }
    .content-right {
        order: -1; /* Image appears above text on mobile */
    }
    .content-right img {
        max-width: 300px;
        margin: 0 auto;
    }
}



/* --- Breadcrumb Section --- */
.breadcrumb-area {
    background-color: var(--navy);
    padding: 80px 0;
    text-align: center; /* Centering the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-content {
    width: 100%;
}

.breadcrumb-content h1 {
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
}

.breadcrumb-nav {
    color: var(--white);
    font-size: 16px;
    text-align: center; /* Ensuring text alignment */
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav .separator {
    color: var(--gold);
    margin: 0 10px;
}

.breadcrumb-nav .current {
    color: var(--gold);
}

/* --- Founder Profile Section --- */
.founder-section {
    padding: 100px 0;
    background-color: var(--white);
}

.founder-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.founder-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border: 10px solid var(--navy);
    padding: 10px;
}

.image-frame img {
    width: 100%;
    max-width: 400px;
    display: block;
}

.accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--gold);
    z-index: -1;
}

.founder-details {
    flex: 1.5;
    min-width: 300px;
}

.founder-details .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.founder-details h2 {
    color: var(--navy);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.content-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-box {
    border-left: 5px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: var(--navy);
    font-size: 18px;
    margin-top: 30px;
}

/* --- NEW SECTION: Impact & Journey (White Background) --- */
.impact-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.impact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item h4 {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Leadership Values (Navy Background) --- */
.values-grid-section {
    padding: 80px 0;
    background-color: var(--navy);
}

.section-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(210, 166, 43, 0.05);
    padding: 40px;
    border: 1px solid var(--gold);
    text-align: center;
    transition: 0.3s;
}

.value-card:hover {
    background: rgba(210, 166, 43, 0.15);
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .founder-grid {
        flex-direction: column;
    }
    .founder-details h2 {
        font-size: 30px;
    }
}




/* --- Why Choose Us --- */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.choose-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #eee;
    transition: 0.3s;
}

.choose-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.choose-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
}

.choose-content h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.choose-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* --- Accreditations --- */
.accreditation-section {
    padding: 50px 0;
    background-color: var(--navy);
    border-top: 4px solid var(--gold);
}

.accreditation-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.acc-item {
    text-align: center;
    color: var(--white);
}

.acc-item img {
    width: 100px;
    border-radius: 50px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.acc-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* --- Final CTA --- */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 42, 58, 0.9), rgba(30, 42, 58, 0.9));
    background-size: cover;
    text-align: center;
}

.cta-card h2 {
    color: var(--gold);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-card h2 {
        font-size: 28px;
    }
}



.testimonial-section {
    padding: 100px 0;
    background-color: #ffffff; /* White Background */
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 20px;
    visibility: hidden;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    font-size: 80px;
    color: #d2a62b; /* Gold */
    font-family: serif;
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: #1e2a3a; /* Dark Navy */
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background-color: #1e2a3a;
    color: #d2a62b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #d2a62b;
}

.client-details h4 {
    margin: 0;
    color: #1e2a3a;
    font-size: 18px;
    text-align: left;
}

.client-details span {
    color: #d2a62b;
    font-size: 14px;
    display: block;
    text-align: left;
}


/* --- Vision, Mission, Values Section --- */
.vmv-section {
    padding: 100px 0;
    background-color: #ffffff; /* White Background */
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three boxes side by side */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vmv-card {
    background: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    /* Box Shadow Format */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #1e2a3a; /* Dark Navy Accent */
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #d2a62b; /* Change to Gold on hover */
}

.vmv-icon {
    font-size: 40px;
    color: #d2a62b; /* Gold */
    margin-bottom: 20px;
}

.vmv-card h3 {
    color: #1e2a3a; /* Dark Navy */
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmv-line {
    width: 50px;
    height: 3px;
    background-color: #d2a62b; /* Gold Line */
    margin: 0 auto 20px;
}

.vmv-card p {
    color: #555555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .vmv-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 boxes on tablets */
    }
}

@media (max-width: 768px) {
    .vmv-grid {
        grid-template-columns: 1fr; /* 1 box on mobile */
    }
    
    .vmv-section {
        padding: 60px 0;
    }
}



/* --- Awards Section Styling --- */
.awards-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.awards-header h2 {
    color: #1e2a3a;
    font-size: 36px;
    margin-bottom: 15px;
}

.awards-header .subtitle {
    color: #d2a62b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Award Item */
.award-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #1e2a3a;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: #d2a62b;
}

.award-item.highlight {
    background-color: #1e2a3a;
}

.award-item.highlight h3, 
.award-item.highlight p {
    color: #ffffff;
}

.award-year {
    font-size: 24px;
    font-weight: 800;
    color: #d2a62b;
    min-width: 80px;
}

.award-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(210, 166, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.trophy-icon {
    font-size: 30px;
}

.award-info {
    flex: 1;
}

.award-info h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #1e2a3a;
}

.awarded-by {
    color: #d2a62b;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.award-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Certification Footer */
.certification-footer {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.certification-footer p {
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cert-logos {
    font-size: 18px;
    font-weight: 700;
    color: #1e2a3a;
}

.cert-logos .divider {
    color: #d2a62b;
    margin: 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .award-item {
        flex-direction: column;
        text-align: center;
    }
    .award-icon-box {
        margin: 15px 0;
    }
    .award-year {
        min-width: auto;
    }
}



/* Hero Section */
.service-detail-hero { padding: 80px 0; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 5px; box-shadow: 20px 20px 0 var(--navy); }
.experience-badge { 
    position: absolute; bottom: -20px; right: -20px; 
    background: var(--gold); padding: 20px; text-align: center;
}
.experience-badge .num { display: block; font-size: 30px; font-weight: 800; color: var(--navy); }
.experience-badge .txt { font-size: 12px; font-weight: 600; text-transform: uppercase; }

.hero-text .subtitle { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.hero-text h2 { color: var(--navy); font-size: 38px; margin: 15px 0; }
.hero-text p { color: #666; line-height: 1.8; margin-bottom: 25px; }

.points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.point { font-weight: 600; color: var(--navy); }
.check { color: var(--gold); margin-right: 8px; }

/* --- Specialized Services Section --- */
.specialized-services { 
    padding: 80px 0; 
    background: #f8f9fa; /* Light gray background */
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-title h2 {
    color: #1e2a3a; /* Navy */
    font-size: 36px;
    font-weight: 700;
}

.title-line { 
    width: 60px; 
    height: 3px; 
    background: #d2a62b; /* Gold */
    margin: 15px auto; 
}

/* Services Grid */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

/* Service Card Style */
.service-card { 
    background: #ffffff; 
    border-radius: 8px;
    overflow: hidden; /* Ensures image corners are rounded */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); 
}

/* Image Box */
.service-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 42, 58, 0.2), rgba(30, 42, 58, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.icon-tag {
    background: #d2a62b;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

/* Content Box */
.service-content { 
    padding: 30px 25px; 
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 { 
    color: #1e2a3a; 
    margin-bottom: 15px; 
    font-size: 22px;
    font-weight: 700;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Enquiry Button */
.enquiry-btn {
    display: inline-block;
    background: transparent;
    color: #1e2a3a;
    border: 2px solid #1e2a3a;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: center;
}

.enquiry-btn:hover {
    background: #d2a62b;
    border-color: #d2a62b;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .specialized-services {
        padding: 60px 0;
    }
}

/* Process Section */
.process-section { padding: 80px 0; background: var(--navy); color: var(--white); }
.process-flex { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; margin-top: 40px; }
.process-step { flex: 1; min-width: 200px; text-align: center; position: relative; }
.step-num { 
    width: 60px; height: 60px; border: 2px solid var(--gold); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; font-size: 20px; font-weight: 800; color: var(--gold);
}
.process-step h4 { margin-bottom: 10px; color: var(--gold); }
.process-step p { font-size: 14px; opacity: 0.8; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image img { box-shadow: none; }
    .section-title h2{
        font-size: 30px;
    }
}


/* Training Section */
.training-compliance { padding: 100px 0; background: #fff; }
.training-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.t-item { display: flex; gap: 20px; margin-bottom: 30px; }
.t-icon { font-size: 30px; min-width: 50px; height: 50px; background: rgba(210, 166, 43, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.t-txt h4 { color: var(--navy); margin-bottom: 5px; }
.t-txt p { font-size: 14px; color: #666; margin: 0; }

.image-stack { position: relative; padding-bottom: 40px; }
.img-main { width: 100%; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-box { 
    position: absolute; bottom: 0; left: -30px; 
    background: var(--navy); color: #fff; padding: 25px; 
    max-width: 250px; border-left: 5px solid var(--gold); 
}
.experience-box h5 { color: var(--gold); margin-bottom: 10px; }
.experience-box p { font-size: 13px; margin: 0; opacity: 0.9; }

/* FAQ Section */
.security-faq { padding: 100px 0; background: var(--gray); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 15px; border-radius: 5px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-question { 
    width: 100%; padding: 20px 25px; background: none; border: none; 
    display: flex; justify-content: space-between; align-items: center; 
    font-size: 18px; font-weight: 700; color: var(--navy); cursor: pointer; text-align: left;
}
.faq-question .icon { color: var(--gold); font-size: 24px; transition: 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 25px; }
.faq-answer p { padding-bottom: 20px; color: #666; line-height: 1.6; }

.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--navy); }

@media (max-width: 992px) {
    .training-grid { grid-template-columns: 1fr; }
    .experience-box { left: 0; position: relative; max-width: 100%; margin-top: 20px; }
}




/* Gallery Section Base */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #1e2a3a;
    font-size: 36px;
    margin: 10px 0;
}

.section-header .subtitle {
    color: #d2a62b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #d2a62b;
    margin: 0 auto;
}

/* Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #1e2a3a;
    color: #1e2a3a;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn.active, .filter-btn:hover {
    background: #1e2a3a;
    color: #d2a62b;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    /* Animation for filtering */
    transition: all 0.4s ease;
}

.gallery-img-box {
    position: relative;
    height: 300px;
    width: 100%;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 42, 58, 0.85); /* Navy with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-img-box img {
    transform: scale(1.1);
}

.hover-content h4 {
    color: #d2a62b; /* Gold */
    font-size: 20px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: 0.4s;
}

.hover-content span {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: 0.5s;
}

.gallery-item:hover .hover-content h4,
.gallery-item:hover .hover-content span {
    transform: translateY(0);
}

/* Hide classes for JS */
.gallery-item.hide {
    display: none;
}



/* 1200px CENTERED CONTAINER */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden; /* Clips the background colors to the radius */
}

/* --- Left Side: Form --- */
.contact-form-side {
    flex: 1.2;
    padding: 60px;
    background-color: var(--white);
}

.contact-form-side h2 { color: var(--navy); font-size: 32px; margin-bottom: 20px; }
.contact-form-side .subtitle { color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }

.main-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.main-contact-form input, 
.main-contact-form select, 
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--bg-light);
    outline: none;
}

.submit-btn {
    background: var(--navy);
    color: var(--gold);
    padding: 15px 40px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* --- Right Side: Details --- */
.contact-details-side {
    flex: 0.8;
    background-color: var(--navy);
    color: var(--white);
    padding: 60px;
}

.contact-details-side h2 { color: var(--gold); margin-bottom: 40px; }

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 20px;
    color: var(--gold);
    background: rgba(210, 166, 43, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-text h4 { color: var(--gold); margin-bottom: 5px; }
.info-text p { opacity: 0.8; line-height: 1.6; font-size: 14px; }

/* --- Map --- */
.map-section { line-height: 0; }

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form-side, .contact-details-side {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .main-contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.map-section{
    padding: 0px;
}


/* --- Thank You Section Styles --- */
.thank-you {
    padding: 100px 0;
    background-color: #f9f9f9;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.thank-you-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 700px;
    width: 100%;
    border-top: 5px solid #d2a62b; /* Gold Accent */
}

/* Success Icon Animation */
.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: #d2a62b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(210, 166, 43, 0.3);
}

.check-mark {
    color: #1e2a3a;
    font-size: 40px;
    font-weight: bold;
}

.thank-you-subtitle {
    color: #d2a62b;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.thank-you-title {
    color: #1e2a3a;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

.thank-you-divider {
    width: 100px;
    height: 2px;
    background-color: #eee;
    margin: 0 auto 30px;
}

.thank-you-actions p {
    color: #1e2a3a;
    font-weight: 600;
    margin-bottom: 20px;
}

.thank-you-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-home {
    background-color: #1e2a3a;
    color: #d2a62b;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
    border: 2px solid #1e2a3a;
}

.btn-home:hover {
    background-color: #d2a62b;
    color: #1e2a3a;
    border-color: #d2a62b;
}

.btn-services {
    background-color: transparent;
    color: #1e2a3a;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #1e2a3a;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-services:hover {
    background-color: #1e2a3a;
    color: #ffffff;
}

.thank-you-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
}

.thank-you-footer a {
    color: #d2a62b;
    text-decoration: none;
    font-weight: 700;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 20px;
    }
    
    .thank-you-title {
        font-size: 28px;
    }

    .thank-you-btns {
        flex-direction: column;
    }

    .btn-home, .btn-services {
        width: 100%;
        display: block;
    }
}



/* --- Error Section Styles --- */
.new-error {
    padding: 100px 0;
    background-color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-error-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.new-error-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* 404 Visual Style */
.new-error-visual {
    position: relative;
    margin-bottom: 20px;
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    color: #1e2a3a;
    line-height: 1;
    margin: 0;
    letter-spacing: -5px;
    opacity: 0.08; /* Ghost effect */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.new-error-heading {
    color: #1e2a3a;
    font-size: 42px;
    font-weight: 800;
    position: relative;
    margin-bottom: 20px;
}

.error-line {
    width: 60px;
    height: 4px;
    background-color: #d2a62b;
    margin: 10px auto 30px;
}

.new-error-text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Action Buttons */
.new-error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.error-btn-primary {
    background-color: #1e2a3a;
    color: #d2a62b;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid #1e2a3a;
    text-transform: uppercase;
    font-size: 14px;
}

.error-btn-primary:hover {
    background-color: #d2a62b;
    color: #1e2a3a;
    border-color: #d2a62b;
}

.error-btn-secondary {
    background-color: transparent;
    color: #1e2a3a;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #1e2a3a;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.error-btn-secondary:hover {
    background-color: #1e2a3a;
    color: #ffffff;
}

/* Quick Links Area */
.new-error-links p {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.new-error-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.new-error-links ul li a {
    color: #1e2a3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.new-error-links ul li a:hover {
    color: #d2a62b;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .error-code {
        font-size: 100px;
    }
    
    .new-error-heading {
        font-size: 30px;
    }

    .new-error-actions {
        flex-direction: column;
    }

    .error-btn-primary, .error-btn-secondary {
        width: 100%;
    }

    .new-error-links ul {
        flex-direction: column;
        gap: 10px;
    }
}