
    /* =========================================================
           ROOT
        ========================================================== */

    :root {
      --navy: #061d3a;

      --navy-dark: #03152c;

      --blue: #0878cf;

      --blue-dark: #0563ac;

      --blue-light: #edf7ff;

      --gold: #f4bd1b;

      --green: #18b96a;

      --white: #ffffff;

      --text: #182d40;

      --text-light: #627481;

      --muted: #85949e;

      --border: #dfe8ee;

      --page-bg: #edf3f7;

      --shadow: 0 22px 65px rgba(3, 27, 53, 0.14);

      --soft-shadow: 0 10px 30px rgba(3, 27, 53, 0.08);
    }

    /* =========================================================
           RESET
        ========================================================== */

    * {
      box-sizing: border-box;
    }

    /* html {
      scroll-behavior: smooth;

      scroll-padding-top: 80px;
    } */

    body {
      margin: 0;

      padding: 0;

      background:
        radial-gradient(circle at 8% 8%,
          rgba(8, 120, 207, 0.07),
          transparent 25%),
        radial-gradient(circle at 92% 92%,
          rgba(244, 189, 27, 0.07),
          transparent 25%),
        var(--page-bg);

      color: var(--text);

      font-family: "Inter", Arial, sans-serif;

      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;

      text-decoration: none !important;
    }

    img {
      max-width: 100%;

      display: block;
    }

    button,
    input,
    textarea {
      font-family: inherit;
    }

    /* =========================================================
           MAIN PAGE
        ========================================================== */

    .vcard-page {
      width: calc(100% - 40px);
      max-width: 1380px;
      min-height: calc(100vh - 40px);
      height: auto;
      margin: 20px auto;
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 18px;
    }

    /* =========================================================
           LEFT PROFILE
        ========================================================== */

    .profile-card {
      height: 100%;

      position: sticky;

      top: 20px;

      overflow: hidden;

      display: flex;

      flex-direction: column;

      background: #fff;

      /* border-radius: 26px; */

      box-shadow: var(--shadow);
    }

    /* =========================================================
           PROFILE HERO
        ========================================================== */

    .profile-hero {
      position: relative;

      height: 120px;

      flex-shrink: 0;

      display: flex;

      align-items: center;

      justify-content: center;

      overflow: visible;

      background:
        radial-gradient(circle at 90% 10%,
          rgba(255, 255, 255, 0.14),
          transparent 30%),
        radial-gradient(circle at 10% 90%,
          rgba(255, 255, 255, 0.08),
          transparent 32%),
        linear-gradient(145deg, var(--navy-dark), #0b477f);
    }

    .profile-hero::before {
      content: "";

      position: absolute;

      width: 360px;

      height: 360px;

      right: -225px;

      top: -235px;

      border: 1px solid rgba(255, 255, 255, 0.1);

      border-radius: 50%;
    }

    .profile-hero::after {
      content: "";

      position: absolute;

      width: 230px;

      height: 230px;

      left: -175px;

      bottom: -175px;

      border: 1px solid rgba(255, 255, 255, 0.08);

      border-radius: 50%;
    }

    /* =========================================================
           PROFILE PHOTO
        ========================================================== */

    .profile-photo {
      position: absolute;

      z-index: 10;

      width: 160px;

      height: 160px;

      left: 50%;

      bottom: -61px;

      transform: translateX(-50%);

      padding: 6px;

      background: #fff;

      border-radius: 50%;

      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    }

    .profile-photo img {
      width: 100%;

      height: 100%;

      object-fit: cover;

      border-radius: 50%;
    }

    .profile-status {
      position: absolute;

      right: 7px;

      bottom: 13px;

      width: 21px;

      height: 21px;

      background: var(--green);

      border: 4px solid #fff;

      border-radius: 50%;
    }

    /* =========================================================
           PROFILE CONTENT
        ========================================================== */

    .profile-content {
      min-height: 0;
      overflow: visible;
      padding: 75px 20px 15px !important;
    }

    /* .profile-content::-webkit-scrollbar {
      width: 4px;
    }

    .profile-content::-webkit-scrollbar-thumb {
      background: #d2dde4;

      border-radius: 20px;
    } */

    /* =========================================================
           IDENTITY
        ========================================================== */

    .identity {
      text-align: center;
    }

    .identity h1 {
      margin: 0;

      color: var(--navy);

      font-family: "Manrope", Arial, sans-serif;

      font-size: 27px;

      line-height: 1.2;

      font-weight: 800;

      letter-spacing: -0.5px;
    }

    .designation {
      margin-top: 8px;

      color: var(--blue);

      font-size: 11px;

      line-height: 1.4;

      font-weight: 800;

      letter-spacing: 1px;

      text-transform: uppercase;
    }

    .company-name {
      margin-top: 5px;

      color: #84939e;

      font-size: 12px;
    }

    /* =========================================================
           LOGO
        ========================================================== */

    .brand-lockup {
      width: max-content;

      max-width: 100%;

      /* min-width: 180px; */

      margin: 20px auto;

      padding: 12px 22px;

      text-align: center;

      border-top: 1px solid var(--border);

      border-bottom: 1px solid var(--border);
    }

    .brand-lockup img {
      width: auto;

      height: 90px;

      max-width: 100%;

      object-fit: contain;
    }

    /* =========================================================
           SOCIALS
        ========================================================== */

    .socials {
      display: flex;

      align-items: center;

      justify-content: center;

      gap: 9px;

      margin-bottom: 24px;
    }

    .socials a {
      width: 37px;

      height: 37px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: var(--navy);

      background: #f2f6f9;

      border-radius: 50%;

      font-size: 13px;

      transition: all 0.25s ease;
    }

    .socials a:hover {
      color: #fff;

      background: var(--blue);

      transform: translateY(-3px);

      box-shadow: 0 9px 20px rgba(8, 120, 207, 0.25);
    }

    /* =========================================================
           CONTACT
        ========================================================== */

    .contact-list {
      border-top: 1px solid var(--border);
    }

    .contact-item {
      display: grid;

      grid-template-columns:
        42px minmax(0, 1fr);

      gap: 13px;

      align-items: center;

      padding: 15px 0;

      border-bottom: 1px solid var(--border);
    }

    .contact-icon {
      width: 39px;

      height: 39px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: var(--blue);

      background: var(--blue-light);

      border-radius: 10px;

      font-size: 13px;
    }

    .contact-label {
      display: block;

      margin-bottom: 4px;

      color: #93a1aa;

      font-size: 10px;

      line-height: 1;

      font-weight: 800;

      letter-spacing: 1.1px;

      text-transform: uppercase;
    }

    .contact-value {
      display: block;

      color: #405463;

      font-size: 13px;

      line-height: 1.55;

      overflow-wrap: anywhere;
    }

    .contact-item:hover .contact-value {
      color: var(--blue);
    }

    /* =========================================================
           PROFILE ACTIONS
        ========================================================== */

    .profile-actions {
      display: grid;

      grid-template-columns: 1fr 1fr;

      margin-top: 22px;

      overflow: hidden;

      border: 1px solid var(--border);

      border-radius: 11px;
    }

    .profile-action {
      min-height: 50px;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 8px;

      font-size: 10px;

      font-weight: 800;

      text-transform: uppercase;

      transition: all 0.2s ease;
    }

    .profile-action.primary {
      color: #fff;

      background: var(--navy);
    }

    .profile-action.primary:hover {
      background: var(--blue);
    }

    .profile-action.secondary {
      color: var(--blue);

      background: #fff;

      border-left: 1px solid var(--border);
    }

    .profile-action.secondary:hover {
      background: var(--blue-light);
    }

    /* =========================================================
           MAIN CONTENT
        ========================================================== */

    .main-content {
      min-width: 0;
      height: auto;
      overflow: visible;
      background: #fff;
      box-shadow: var(--shadow);
    }

    /* .main-content::-webkit-scrollbar {
      width: 5px;
    }

    .main-content::-webkit-scrollbar-thumb {
      background: #ccd8e0;

      border-radius: 20px;
    } */

    /* =========================================================
           DESKTOP NAV
        ========================================================== */

    .desktop-navbar {
      position: sticky;

      top: 0;

      z-index: 100;

      height: 72px;

      display: flex;

      align-items: center;

      justify-content: flex-end;

      padding: 0 28px;

      background: rgba(255, 255, 255, 0.96);

      border-bottom: 1px solid var(--border);

      backdrop-filter: blur(16px);
    }

    .desktop-nav {
      display: flex;

      align-items: center;

      gap: 5px;

      padding: 0;

      margin: 0;

      list-style: none;
    }

    .desktop-nav a {
      min-width: 75px;

      height: 45px;

      padding: 0 14px;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 8px;

      color: #71818d;

      border-radius: 10px;

      font-size: 11px;

      font-weight: 700;

      transition: all 0.2s ease;
    }

    .desktop-nav a:hover {
      color: var(--blue);

      background: var(--blue-light);
    }

    .desktop-nav a.active {
      color: #fff;

      background: var(--navy);

      box-shadow: 0 7px 18px rgba(6, 29, 58, 0.18);
    }

    /* =========================================================
           HERO SLIDER
        ========================================================== */

    .hero-slider {
      position: relative;

      height: 380px;

      overflow: hidden;

      background: var(--navy);
    }

    .slide {
      position: absolute;

      inset: 0;

      opacity: 0;

      transform: scale(1.04);

      transition:
        opacity 0.7s ease,
        transform 5s ease;
    }

    .slide.active {
      opacity: 1;

      transform: scale(1);
    }

    .slide img {
      width: 100%;

      height: 100%;

      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;

      z-index: 3;

      inset: 0;

      pointer-events: none;

      background:
        linear-gradient(90deg, rgba(2, 19, 40, 0.28), transparent 65%),
        linear-gradient(0deg, rgba(2, 19, 40, 0.32), transparent 50%);
    }

    /* =========================================================
           SLIDER CONTROLS
        ========================================================== */

    .slider-btn {
      position: absolute;

      z-index: 10;

      top: 50%;

      width: 45px;

      height: 45px;

      transform: translateY(-50%);

      display: flex;

      align-items: center;

      justify-content: center;

      color: #fff;

      background: rgba(4, 24, 47, 0.4);

      border: 1px solid rgba(255, 255, 255, 0.3);

      border-radius: 50%;

      cursor: pointer;

      backdrop-filter: blur(8px);

      transition: all 0.2s ease;
    }

    .slider-btn:hover {
      color: var(--navy);

      background: var(--gold);
    }

    .slider-prev {
      left: 20px;
    }

    .slider-next {
      right: 20px;
    }

    /* =========================================================
           SLIDER DOTS
        ========================================================== */

    .slider-dots {
      position: absolute;

      z-index: 12;

      left: 50%;

      bottom: 17px;

      transform: translateX(-50%);

      display: flex;

      gap: 7px;
    }

    .slider-dot {
      width: 8px;

      height: 8px;

      padding: 0;

      border: 0;

      border-radius: 20px;

      background: rgba(255, 255, 255, 0.55);

      cursor: pointer;

      transition: all 0.25s ease;
    }

    .slider-dot.active {
      width: 27px;

      background: var(--gold);
    }

    /* =========================================================
           SECTION
        ========================================================== */

    .section {
      padding: 48px 46px;

      border-bottom: 1px solid var(--border);
    }

    .section:last-child {
      border-bottom: 0;
    }

    .section-header {
      display: flex;

      align-items: center;

      justify-content: space-between;

      margin-bottom: 28px;
    }

    .section-title {
      display: flex;

      align-items: center;

      gap: 12px;
    }

    .section-marker {
      width: 6px;

      height: 31px;

      flex-shrink: 0;

      border-radius: 20px;

      background: linear-gradient(to bottom,
          var(--gold) 0 45%,
          var(--blue) 45% 100%);
    }

    .section-title h2 {
      margin: 0;

      color: var(--navy);

      font-family: "Manrope", Arial, sans-serif;

      font-size: 24px;

      line-height: 1.25;

      font-weight: 800;

      letter-spacing: -0.3px;
    }

    .section-title h2 span {
      color: var(--blue);
    }

    .section-caption {
      color: #9aa8b1;

      font-size: 9px;

      font-weight: 800;

      letter-spacing: 1.3px;

      text-transform: uppercase;
    }

    /* =========================================================
           ABOUT
        ========================================================== */

    .about-grid {
      display: grid;

      grid-template-columns:
        minmax(0, 1.4fr) minmax(230px, 0.7fr);

      gap: 32px;
    }

    .about-text p {
      margin: 0 0 15px;
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.6;
    }

    .about-text p:last-child {
      margin-bottom: 0;
    }

    .about-highlight {
      position: relative;

      min-height: 180px;

      padding: 27px;

      overflow: hidden;

      color: #fff;

      border-radius: 18px;

      background: linear-gradient(145deg, var(--navy), #0b467d);

      box-shadow: 0 14px 35px rgba(6, 29, 58, 0.15);
    }

    .about-highlight::after {
      content: "";

      position: absolute;

      width: 200px;

      height: 200px;

      right: -100px;

      bottom: -100px;

      border: 1px solid rgba(255, 255, 255, 0.12);

      border-radius: 50%;
    }

    .highlight-icon {
      width: 44px;

      height: 44px;

      display: flex;

      align-items: center;

      justify-content: center;

      margin-bottom: 18px;

      color: var(--navy);

      background: var(--gold);

      border-radius: 11px;

      font-size: 17px;
    }

    .about-highlight strong {
      position: relative;

      z-index: 2;

      display: block;

      font-family: "Manrope";

      font-size: 16px;
    }

    .about-highlight small {
      position: relative;

      z-index: 2;

      display: block;

      margin-top: 7px;

      color: rgba(255, 255, 255, 0.72);

      font-size: 11px;

      line-height: 1.7;
    }

    /* =========================================================
           SERVICES
           
           DESKTOP = 4 COLUMNS
           MOBILE  = 2 COLUMNS
        ========================================================== */

    .service-wrapper {
      position: relative;

      overflow: hidden;

      background: #fff;

      /* border: 1px solid var(--border);

      border-radius: 17px;

      box-shadow: 0 7px 25px rgba(3, 27, 53, 0.035); */
    }

    .service-grid {
      display: grid;

      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-item {
      min-height: 155px;

      padding: 22px 14px;

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      text-align: center;

      background: #fff;

      transition:
        background 0.25s ease,
        transform 0.25s ease;
    }

    /* Vertical separators */

    .service-item:not(:nth-child(4n)) {
      border-right: 1px solid var(--border);
    }

    /* Horizontal separators */

    .service-item:nth-child(n + 5) {
      border-top: 1px solid var(--border);
    }

    .service-item:hover {
      position: relative;

      z-index: 2;

      background: linear-gradient(180deg, #ffffff, #f8fcff);

      box-shadow: inset 0 -3px 0 var(--blue);
    }

    .service-icon {
      width: 50px;

      height: 50px;

      margin-bottom: 16px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: var(--blue);

      background: var(--blue-light);

      border-radius: 50%;

      font-size: 16px;

      box-shadow: 0 5px 15px rgba(8, 120, 207, 0.06);

      transition: all 0.25s ease;
    }

    .service-item:hover .service-icon {
      color: #fff;

      background: var(--blue);

      transform: translateY(-3px) scale(1.05);

      box-shadow: 0 9px 20px rgba(8, 120, 207, 0.2);
    }

    .service-item h3 {
      max-width: 180px;
      margin: 0;
      color: var(--navy);
      font-size: 16px;
      line-height: 1.45;
      font-weight: 400;
    }

    /* =========================================================
           GALLERY
        ========================================================== */

    .gallery-grid {
      display: grid;

      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 15px;
    }

    .gallery-item {
      position: relative;

      height: 185px;

      overflow: hidden;

      background: #edf2f5;

      border-radius: 15px;

      cursor: zoom-in;
    }

    .gallery-item img {
      width: 100%;

      height: 100%;

      object-fit: cover;

      transition: transform 0.45s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.07);
    }

    .gallery-overlay {
      position: absolute;

      inset: 0;

      display: flex;

      align-items: center;

      justify-content: center;

      opacity: 0;

      background: rgba(3, 25, 49, 0.48);

      transition: opacity 0.25s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay span {
      width: 46px;

      height: 46px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: var(--navy);

      background: #fff;

      border-radius: 50%;

      font-size: 15px;
    }

    /* =========================================================
           ENQUIRY
        ========================================================== */

    .enquiry-section {
      background: linear-gradient(135deg, #f8fafc, #edf6fb);
    }

    .enquiry-grid {
      display: grid;

      grid-template-columns:
        0.65fr 1.35fr;

      gap: 40px;
    }

    .enquiry-copy h3 {
      margin: 0 10px;

      color: var(--navy);

      font-family: "Manrope";

      font-size: 21px;

      font-weight: 800;
    }

    .enquiry-copy p {
      margin: 0;

      color: var(--text-light);

      font-size: 12px;

      line-height: 1.8;
    }

    .enquiry-note {
      margin-top: 20px;

      display: flex;

      align-items: center;

      gap: 10px;

      color: var(--blue);

      font-size: 10px;

      font-weight: 800;
    }

    .enquiry-note i {
      width: 34px;

      height: 34px;

      display: flex;

      align-items: center;

      justify-content: center;

      background: #fff;

      border-radius: 9px;

      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }

    .form-grid {
      display: grid;

      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 11px;
    }

    .form-control-custom {
      width: 100%;

      height: 48px;

      padding: 0 14px;

      color: var(--text);

      background: #fff;

      border: 1px solid #d9e4ea;

      border-radius: 9px;

      outline: none;

      font-size: 12px;

      box-shadow: none;
    }

    .form-control-custom:focus {
      border-color: var(--blue);

      box-shadow: 0 0 0 3px rgba(8, 120, 207, 0.08);
    }

    textarea.form-control-custom {
      min-height: 110px;

      padding: 13px;

      resize: vertical;

      grid-column: 1 / -1;
    }

    .form-actions {
      display: flex;

      gap: 9px;

      margin-top: 12px;
    }

    .form-btn {
      min-height: 43px;

      padding: 0 19px;

      border-radius: 9px;

      font-size: 12px;

      font-weight: 800;

      cursor: pointer;

      transition: all 0.2s ease;
    }

    .form-btn-primary {
      border: 0;

      color: #fff;

      background: var(--navy);
    }

    .form-btn-primary:hover {
      background: var(--blue);
    }

    .form-btn-light {
      color: #687985;

      background: #fff;

      border: 1px solid var(--border);
    }

    /* =========================================================
           MOBILE BOTTOM NAV
        ========================================================== */

    .mobile-bottom-nav {
      display: none;
    }

    /* =========================================================
           FLOATING BUTTONS
        ========================================================== */

    .floating-actions {
      position: fixed;

      z-index: 500;

      right: 22px;

      bottom: 22px;

      display: flex;

      flex-direction: column;

      gap: 10px;
    }

    .floating-btn {
      width: 49px;

      height: 49px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: #fff;

      border-radius: 50%;

      box-shadow: 0 11px 28px rgba(0, 0, 0, 0.22);

      transition: all 0.25s ease;
    }

    .floating-btn:hover {
      color: #fff;

      transform: translateY(-4px) scale(1.04);
    }

    .floating-call {
      background: var(--blue);
    }

    .floating-whatsapp {
      background: var(--green);
    }

    /* =========================================================
           LIGHTBOX
        ========================================================== */

    .lightbox {
      position: fixed;

      inset: 0;

      z-index: 2000;

      display: none;

      align-items: center;

      justify-content: center;

      padding: 20px;

      background: rgba(2, 13, 27, 0.96);

      backdrop-filter: blur(10px);
    }

    .lightbox.show {
      display: flex;
    }

    .lightbox-image {
      max-width: 92vw;

      max-height: 88vh;

      object-fit: contain;

      border-radius: 9px;
    }

    .lightbox-btn {
      position: absolute;

      width: 46px;

      height: 46px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: #fff;

      background: rgba(255, 255, 255, 0.1);

      border: 1px solid rgba(255, 255, 255, 0.16);

      border-radius: 50%;

      cursor: pointer;

      transition: all 0.2s ease;
    }

    .lightbox-btn:hover {
      color: var(--navy);

      background: var(--gold);
    }

    .lightbox-close {
      top: 20px;

      right: 20px;
    }

    .lightbox-prev {
      left: 20px;

      top: 50%;

      transform: translateY(-50%);
    }

    .lightbox-next {
      right: 20px;

      top: 50%;

      transform: translateY(-50%);
    }

    /* =========================================================
           TABLET
        ========================================================== */

    @media (max-width: 1100px) {
      .vcard-page {
        width: calc(100% - 24px);

        height: auto;
        min-height: calc(100vh - 24px);

        margin: 12px auto;

        grid-template-columns:
          310px minmax(0, 1fr);
      }

      .profile-hero {
        height: 125px;
      }

      .profile-photo {
        width: 145px;

        height: 145px;

        bottom: -72px;
      }

      .profile-content {
        padding: 88px 21px 22px;
      }

      .section {
        padding: 38px 28px;
      }

      .hero-slider {
        height: 320px;
      }

      .desktop-navbar {
        padding: 0 16px;
      }

      .desktop-nav a {
        min-width: 65px;

        padding: 0 10px;

        font-size: 10px;
      }

      .service-item {
        min-height: 145px;
      }

      .service-item h3 {
        font-size: 12px;
      }
    }

    /* =========================================================
           MOBILE
        ========================================================== */

    @media (max-width: 767px) {
      html {
        scroll-padding-top: 0;
      }

      body {
        background: #fff;

        padding-bottom: calc(70px + env(safe-area-inset-bottom));
      }

      .vcard-page {
        width: 100%;

        height: auto;

        margin: 0;

        display: block;
      }

      /* PROFILE */

      .profile-card {
        position: relative;

        top: auto;

        height: auto;

        border-radius: 0;

        box-shadow: none;
      }

      .profile-hero {
        height: 105px;
      }

      .profile-photo {
        width: 138px;

        height: 138px;

        bottom: -69px;
      }

      .profile-content {
        overflow: visible;

        padding: 84px 18px 26px;
      }

      .identity h1 {
        font-size: 24px;
      }

      .designation {
        font-size: 12px;
      }

      .company-name {
        font-size: 11px;
      }

      .brand-lockup {
        margin: 18px auto;

        padding: 10px 18px;
      }

      .brand-lockup img {
        height: 78px;
      }

      .contact-value {
        font-size: 14px;
      }

      /* MAIN */

      .main-content {
        height: auto;

        overflow: visible;

        border-radius: 0;

        box-shadow: none;
      }

      /* DESKTOP NAV HIDDEN */

      .desktop-navbar {
        display: none;
      }

      /* HERO */

      .hero-slider {
        height: 215px;
      }

      .slider-btn {
        width: 37px;

        height: 37px;
      }

      .slider-prev {
        left: 9px;
      }

      .slider-next {
        right: 9px;
      }

      .slider-dots {
        bottom: 11px;
      }

      /* SECTION */

      .section {
        padding: 34px 16px;
      }

      .section-header {
        margin-bottom: 22px;
      }

      .section-marker {
        width: 5px;

        height: 27px;
      }

      .section-title h2 {
        font-size: 21px;
      }

      .section-caption {
        display: none;
      }

      /* ABOUT */

      .about-grid {
        grid-template-columns: 1fr;

        gap: 22px;
      }

      .about-text p {
        font-size: 14px;

        line-height: 1.85;
      }

      .about-highlight {
        min-height: 155px;

        padding: 23px;
      }

      /* =====================================================
               SERVICES

               MOBILE = 2 COLUMNS
            ====================================================== */

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-item {
        min-height: 145px;

        padding: 20px 9px;
      }

      /* Mobile vertical divider */

      .service-item:not(:nth-child(4n)) {
        border-right: 0;
      }

      .service-item:nth-child(odd) {
        border-right: 1px solid var(--border);
      }

      /* Mobile horizontal divider */

      .service-item:nth-child(n + 3) {
        border-top: 1px solid var(--border);
      }

      .service-icon {
        width: 47px;

        height: 47px;

        margin-bottom: 13px;

        font-size: 15px;
      }

      .service-item h3 {
        max-width: 145px;

        font-size: 11px;

        line-height: 1.5;
      }

      /* GALLERY */

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
      }

      .gallery-item {
        height: 145px;
      }

      /* ENQUIRY */

      .enquiry-grid {
        grid-template-columns: 1fr;

        gap: 25px;
      }

      .enquiry-copy h3 {
        font-size: 20px;
      }

      .enquiry-copy p {
        font-size: 12px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      textarea.form-control-custom {
        grid-column: auto;
      }

      .form-actions {
        flex-direction: column;
      }

      .form-btn {
        width: 100%;
      }

      /* FLOATING */

      .floating-actions {
        right: 10px;

        bottom: calc(78px + env(safe-area-inset-bottom));
      }

      .floating-btn {
        width: 43px;

        height: 43px;
      }

      /* =====================================================
               MOBILE FOOTER MENU
            ====================================================== */

      .mobile-bottom-nav {
        position: fixed;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 1500;

        height: calc(66px + env(safe-area-inset-bottom));

        display: flex;

        align-items: flex-start;

        justify-content: space-around;

        padding: 4px 3px env(safe-area-inset-bottom);

        background: rgba(255, 255, 255, 0.98);

        border-top: 1px solid #dfe8ee;

        box-shadow: 0 -9px 28px rgba(3, 27, 53, 0.09);

        backdrop-filter: blur(15px);
      }

      .mobile-nav-item {
        flex: 1;

        height: 60px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        color: #7d8d97;

        font-size: 9px;

        font-weight: 700;

        transition: all 0.2s ease;
      }

      .mobile-nav-icon {
        width: 32px;

        height: 32px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 9px;

        font-size: 13px;

        transition: all 0.2s ease;
      }

      .mobile-nav-item.active {
        color: var(--blue);
      }

      .mobile-nav-item.active .mobile-nav-icon {
        color: #fff;

        background: var(--navy);

        box-shadow: 0 5px 14px rgba(6, 29, 58, 0.18);
      }
    }

    /* =========================================================
           SMALL MOBILE
        ========================================================== */

    @media (max-width: 420px) {
      .profile-hero {
        height: 100px;
      }

      .profile-photo {
        width: 140px;

        height: 140px;

        bottom: -65px;
      }

      .profile-content {
        padding-top: 80px;
      }

      .identity h1 {
        font-size: 24px;
      }

      .hero-slider {
        height: 200px;
      }

      .section {
        padding: 30px 14px;
      }

      .section-title h2 {
        font-size: 20px;
      }

      .service-item {
        min-height: 138px;

        padding: 18px 7px;
      }

      .service-icon {
        width: 44px;

        height: 44px;

        margin-bottom: 11px;
      }

      .service-item h3 {
        max-width: 130px;

        font-size: 14px;
      }

      .gallery-item {
        height: 130px;
      }
    }

    /* =========================================================
           VERY SMALL MOBILE
        ========================================================== */

    @media (max-width: 350px) {
      .service-item {
        min-height: 130px;
      }

      .service-item h3 {
        font-size: 9px;
      }

      .mobile-nav-item {
        font-size: 8px;
      }
    }

    /* =========================================================
           REDUCED MOTION
        ========================================================== */

    @media (prefers-reduced-motion: reduce) {
      /* html {
        scroll-behavior: auto;
      } */

      * {
        animation: none !important;

        transition: none !important;
      }
    }

    /* =========================================================
   SHARE PROFILE
========================================================= */

    .share-profile-box {
      /* margin-top: 18px; */

      padding-top: 18px;

      /* border-top: 1px solid var(--border); */
    }

    .profile-action-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .profile-action-buttons .share-main-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* =========================================================
   SHARE TITLE
========================================================= */

    .share-profile-title {
      display: flex;

      align-items: center;

      justify-content: center;

      gap: 8px;

      margin-bottom: 12px;

      color: var(--navy);

      font-size: 12px;

      font-weight: 800;
    }

    .share-profile-title i {
      color: var(--blue);

      font-size: 13px;
    }

    /* =========================================================
   COPY LINK
========================================================= */

    .share-link-box {
      position: relative;

      display: flex;

      align-items: center;

      width: 100%;

      height: 43px;

      margin-bottom: 10px;

      background: #f7f9fb;

      border: 1px solid var(--border);

      border-radius: 9px;

      overflow: hidden;
    }

    .share-link-box input {
      width: 100%;

      height: 100%;

      min-width: 0;

      padding: 0 45px 0 12px;

      border: 0;

      outline: 0;

      background: transparent;

      color: #657682;

      font-size: 11px;

      text-overflow: ellipsis;
    }

    .share-link-box button {
      position: absolute;

      right: 0;

      top: 0;

      width: 43px;

      height: 43px;

      display: flex;

      align-items: center;

      justify-content: center;

      border: 0;

      color: #596b77;

      background: #edf2f5;

      cursor: pointer;

      transition: all 0.2s ease;
    }

    .share-link-box button:hover {
      color: #fff;

      background: var(--blue);
    }

    /* =========================================================
   MAIN SHARE BUTTON
========================================================= */

    .share-main-btn {
      width: 100%;

      height: 43px;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 8px;

      margin-bottom: 17px;

      border: 0;

      border-radius: 8px;

      color: #fff;

      background: #858585;

      font-size: 11px;

      font-weight: 700;

      cursor: pointer;

      transition: all 0.2s ease;
    }

    .share-main-btn:hover {
      background: var(--navy);

      transform: translateY(-1px);
    }

    .share-main-btn i {
      font-size: 13px;
    }

    /* =========================================================
   WHATSAPP TITLE
========================================================= */

    .whatsapp-share-title {
      margin-bottom: 8px;

      color: #677783;

      text-align: center;

      font-size: 10px;

      font-weight: 600;
    }

    /* =========================================================
   WHATSAPP NUMBER ROW
========================================================= */

    .whatsapp-number-row {
      display: flex;

      align-items: center;

      width: 100%;

      height: 42px;

      border: 1px solid #d5dce1;

      background: #fff;
    }

    /* COUNTRY */

    .country-code {
      height: 100%;

      flex-shrink: 0;

      display: flex;

      align-items: center;

      gap: 6px;

      padding: 0 9px;

      border-right: 1px solid #d5dce1;

      color: #586a76;

      font-size: 10px;
    }

    .country-code span:first-child {
      font-size: 17px;
    }

    .country-code i {
      margin-left: 1px;

      color: #697a85;

      font-size: 7px;
    }

    /* MOBILE INPUT */

    .whatsapp-number-row input {
      width: 100%;

      min-width: 0;

      height: 100%;

      padding: 0 10px;

      border: 0;

      outline: 0;

      color: #445661;

      font-size: 11px;
    }

    .whatsapp-number-row input::placeholder {
      color: #9aa5ac;
    }

    /* WHATSAPP BUTTON */

    .whatsapp-number-row button {
      height: 100%;

      flex-shrink: 0;

      padding: 0 13px;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 6px;

      border: 0;

      color: #fff;

      background: #5dbb68;

      font-size: 10px;

      font-weight: 700;

      cursor: pointer;

      transition: all 0.2s ease;
    }

    .whatsapp-number-row button:hover {
      background: #35a947;
    }

    .whatsapp-number-row button i {
      font-size: 13px;
    }

    /* =========================================================
   SUCCESS / ERROR MESSAGE
========================================================= */

    .share-message {
      min-height: 17px;

      margin-top: 7px;

      text-align: center;

      font-size: 9px;

      font-weight: 600;
    }

    .share-message.success {
      color: #19a45a;
    }

    .share-message.error {
      color: #dc4c4c;
    }

    /* =========================================================
   MOBILE
========================================================= */

    @media (max-width: 767px) {
      .share-profile-box {
        /* margin-top: 20px; */

        padding-top: 20px;
      }

      .share-profile-title {
        font-size: 13px;
      }

      .share-link-box {
        height: 45px;
      }

      .share-link-box button {
        width: 45px;

        height: 45px;
      }

      .share-link-box input {
        font-size: 11px;
      }

      .share-main-btn {
        height: 45px;

        font-size: 11px;
      }

      .whatsapp-share-title {
        font-size: 10px;
      }
    }

    /* =========================================================
   VCARD FOOTER
========================================================= */

    .vcard-footer {
      margin-top: 0;

      color: rgba(255, 255, 255, 0.78);

      background: linear-gradient(135deg, #03152c, #082e54);
    }

    /* =========================================================
   FOOTER INNER
========================================================= */

    .footer-inner {
      display: grid;

      grid-template-columns:
        1.25fr 1fr auto;

      align-items: center;

      gap: 35px;

      padding: 38px 46px;

      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* =========================================================
   FOOTER BRAND
========================================================= */

    .footer-brand {
      min-width: 0;
    }

    .footer-logo {
      display: inline-flex;

      align-items: center;

      justify-content: center;

      padding: 8px 14px;

      background: #fff;

      border-radius: 8px;
    }

    .footer-logo img {
      width: auto;

      height: 52px;

      max-width: 190px;

      object-fit: contain;
    }

    .footer-tagline {
      margin: 13px 0 0;

      color: rgba(255, 255, 255, 0.62);

      font-size: 10px;

      line-height: 1.7;
    }

    /* =========================================================
   FOOTER CONTACT
========================================================= */

    .footer-contact {
      display: flex;

      flex-direction: column;

      gap: 9px;
    }

    .footer-contact a {
      display: flex;

      align-items: center;

      gap: 10px;

      color: rgba(255, 255, 255, 0.72);

      font-size: 10px;

      transition: all 0.2s ease;
    }

    .footer-contact a i {
      width: 27px;

      height: 27px;

      display: flex;

      align-items: center;

      justify-content: center;

      flex-shrink: 0;

      color: var(--gold);

      background: rgba(255, 255, 255, 0.07);

      border-radius: 7px;

      font-size: 10px;
    }

    .footer-contact a:hover {
      color: #fff;
    }

    .footer-contact a:hover i {
      color: var(--navy);

      background: var(--gold);
    }

    /* =========================================================
   FOOTER SOCIAL
========================================================= */

    .footer-social {
      display: flex;

      align-items: center;

      justify-content: flex-end;

      gap: 8px;
    }

    .footer-social a {
      width: 36px;

      height: 36px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: rgba(255, 255, 255, 0.72);

      background: rgba(255, 255, 255, 0.08);

      border: 1px solid rgba(255, 255, 255, 0.1);

      border-radius: 50%;

      font-size: 12px;

      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      color: var(--navy);

      background: var(--gold);

      border-color: var(--gold);

      transform: translateY(-3px);
    }

    /* =========================================================
   FOOTER BOTTOM
========================================================= */

    .footer-bottom {
      min-height: 54px;

      padding: 0 46px;

      display: flex;

      align-items: center;

      justify-content: space-between;

      gap: 20px;
    }

    .footer-copyright,
    .footer-vcard {
      color: #ffffffbd;
      font-size: 12px;
      line-height: 1.5;
    }

    .footer-vcard {
      text-align: right;
    }

    .footer-vcard strong {
      color: rgba(255, 255, 255, 0.75);

      font-weight: 700;
    }

    /* =========================================================
   TABLET
========================================================= */

    @media (max-width: 1100px) {
      .footer-inner {
        padding: 32px 28px;

        gap: 25px;
      }

      .footer-bottom {
        padding: 0 28px;
      }
    }

    /* =========================================================
   MOBILE
========================================================= */

    @media (max-width: 767px) {
      .vcard-footer {
        /*
         * Extra bottom space because the
         * mobile navigation is fixed.
         */

        /* padding-bottom: 68px; */
      }

      .footer-inner {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 32px 20px 26px;

        text-align: center;
      }

      .footer-brand {
        display: flex;

        flex-direction: column;

        align-items: center;
      }

      .footer-logo {
        padding: 7px 12px;
      }

      .footer-logo img {
        height: 48px;

        max-width: 175px;
      }

      .footer-tagline {
        max-width: 270px;

        margin-top: 11px;

        font-size: 10px;
      }

      .footer-contact {
        align-items: center;

        gap: 10px;
      }

      .footer-contact a {
        justify-content: center;

        font-size: 10px;
      }

      .footer-social {
        justify-content: center;

        margin-top: 3px;
      }

      .footer-bottom {
        min-height: auto;

        padding: 16px 20px;

        flex-direction: column;

        justify-content: center;

        gap: 7px;

        text-align: center;
      }

      .footer-copyright,
      .footer-vcard {
        font-size: 10px;

        text-align: center;
      }
    }



    .profile-info p {
      margin-bottom: 10px;
      line-height: 1.7;
    }


    .vcard-page {
      height: auto !important;
      min-height: 0 !important;
    }

    .profile-card {
      height: fit-content !important;
      min-height: 0 !important;
      align-self: start !important;
    }

    .profile-content {
      height: fit-content !important;
      min-height: 0 !important;
      flex: none !important;
      overflow: visible !important;
      padding-bottom: 10px !important;
    }
