﻿@charset "UTF-8";
/* Font Family */
/* Font Sizes */
/* Font Weight */
/* Line Heights */
/* Brand Colors */
/* Neutrals */
/* Semantic UI Colors */
/*$gradient-overlay*/
/* Spacing Scale */
/* Border radius */
/* Shadows */
/* Transitions */
/* Layout */
/* Breakpoints */
/* Z-index scale */
/* ======================================================
   RESPONSIVE BREAKPOINTS (Mobile First)
   Usage:
   @include respond(md) { ... }
====================================================== */
/* ======================================================
   CONTAINER
   Standard centered layout container
====================================================== */
/* ======================================================
   FLEX HELPERS
====================================================== */
/*@mixin sticky-header {
    position: sticky;
    top: 0;
    z-index: $z-header;
    background: $white;
}*/
/* ======================================================
   GRID AUTO FIT (for cards / services / gallery)
====================================================== */
/* ======================================================
   SECTION SPACING SYSTEM
====================================================== */
/* ======================================================
   BUTTON / CARD HOVER ANIMATION
====================================================== */
/* ======================================================
   GRADIENT TEXT
====================================================== */
/* ======================================================
   TEXT TRUNCATE (single line)
====================================================== */
/* ======================================================
   MULTI LINE CLAMP
====================================================== */
/* ======================================================
   FLUID RESPONSIVE FONT SIZE
   Usage: @include fluid-text(2rem, 3rem);
====================================================== */
/* ======================================================
   IMAGE COVER HELPER
====================================================== */
/* ======================================================
   OVERLAY (hero / banners)
====================================================== */
/* =========================================
   SCROLL REVEAL BASE
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal--left {
  transform: translateX(-60px);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================
   GLOBAL RESET
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font: inherit;
}

/* ================================
   TYPOGRAPHY SYSTEM
================================ */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1c1c1c;
  background: #ffffff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

/* Responsive typography */
@media (max-width: 767px) {
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
}
/* ================================
   LAYOUT UTILITIES
================================ */
/*.container {
    max-width: $container-width;
    margin-inline: auto;
    padding-inline: $space-4;
}*/
/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Spacing utilities */
.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.py-2 {
  padding-block: 2rem;
}

/* Section helper */
.section {
  padding-block: 4rem;
  background: #f8fafc;
}

/*// Components*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #D6006B;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background-color: rgb(192.6, 0, 96.3);
  transform: translateY(-2px);
}

/* ========================================
   BUTTON SYSTEM
======================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 16px;
  transition: 0.3s ease;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
/*.btn-primary {
    background: $color-primary;
    color: $white;
    border: 1px solid $color-primary;

    &:hover {
        background: $color-secondary;
        border-color: $color-secondary;
    }
}*/
/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: #D6006B;
  border: 1px solid #D6006B;
}
.btn-secondary:hover {
  background: #D6006B;
  color: #ffffff;
}

/* Accent Button (for CTA) */
.btn-accent {
  background: #FF8800;
  color: #ffffff;
  border: none;
}
.btn-accent:hover {
  opacity: 0.9;
}

section {
  padding-block: 6rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  section {
    padding-block: 4rem;
  }
}
section .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .container {
    padding-inline: 1rem;
  }
}
section .container .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  /* SCROLL REVEAL STYLES */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
section .container .section-header.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
section .container .section-header .section-subtitle {
  color: #D6006B;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}
section .container .section-header .section-title {
  font-size: 2.3rem;
  color: #1c1c1c;
  margin: 0.5rem 0 0.75rem 0;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  section .container .section-header .section-title {
    font-size: 2rem;
  }
}
section .container .section-header .section-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Optional: Generic Utility Class for Multi-Element Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.section-body-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section-body-description strong {
  color: #1c1c1c;
}

/*// Layout*/
/* ======================================================
   HEADER BASE (ALL DEVICES)
====================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.header.scrolled {
  height: 75px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.header.scrolled .header-inner {
  height: 75px;
}

body {
  padding-top: 100px;
}

/* Corrected selector name to match Razor HTML class */
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: height 0.3s ease;
}
@media (max-width: 767px) {
  .header-inner {
    padding-inline: 1rem;
  }
}

/* =========================================
   LOGO
========================================= */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.header-logo img {
  max-height: 50px;
  width: auto;
}
.header-logo .names {
  line-height: 1.2;
}
.header-logo .names .company-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1F2DBE;
  letter-spacing: 0.5px;
  margin: 0;
}
.header-logo .names .moto {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* =========================================
   NAVIGATION (DESKTOP DEFAULT)
========================================= */
.header-nav .menu-close {
  display: none;
}
.header-nav .nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav .nav-items .nav-item .nav_link {
  position: relative;
  color: #1c1c1c;
  font-size: 1.12rem;
  font-weight: 600;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-nav .nav-items .nav-item .nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.header-nav .nav-items .nav-item .nav_link:hover, .header-nav .nav-items .nav-item .nav_link.active {
  color: #1F2DBE;
}
.header-nav .nav-items .nav-item .nav_link:hover::after, .header-nav .nav-items .nav-item .nav_link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-nav .nav-items .nav-item .nav_link:focus-visible {
  outline: 2px solid #D6006B;
  outline-offset: 4px;
}

.header-cta .btn-call {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-cta .btn-call .call-text {
  line-height: 1.2;
}
.header-cta .btn-call .call-text .call-label {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: block;
}
.header-cta .btn-call .call-text .call-number {
  font-size: 1rem;
  display: block;
}
.header-cta .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
}

.desktop-cta {
  display: block;
}

.mobile-cta {
  display: none;
}

/* Desktop Breakpoint Adjustments */
@media (max-width: 1199px) {
  .header-nav .nav-items {
    gap: 1rem;
  }
  .header-nav .nav-items .nav-item .nav_link {
    font-size: 1rem;
    padding-block: 0.25rem;
  }
  .header-cta .btn-call {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
  }
}
/* =========================================
   MOBILE / TABLET HEADER
========================================= */
@media (max-width: 1023px) {
  .header {
    height: 75px;
  }
  body {
    padding-top: 75px;
  }
  .header-inner {
    height: 75px;
  }
  .desktop-cta {
    display: none;
  }
  .mobile-cta {
    display: block;
    margin-top: auto;
  }
  .header-toggle {
    display: block;
    font-size: 26px;
    color: #1F2DBE;
    cursor: pointer;
    z-index: 1100;
  }
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999 !important;
  }
  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 999 !important;
  }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
    z-index: 10000 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto !important;
    /* FIX 1: Add active class transform to slide the drawer in */
  }
  .header-nav.active {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }
  .header-nav .nav_link,
  .header-nav .btn-call,
  .header-nav .menu-close {
    pointer-events: auto !important;
    cursor: pointer;
  }
  .header-nav .nav-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
  }
  .header-nav .nav-items .nav-item {
    width: 100%;
  }
  .header-nav .nav-items .nav-item .nav_link {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    width: 100%;
    position: relative;
    z-index: 3;
  }
  .header-nav .menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: #1F2DBE;
    z-index: 10;
  }
  body.menu-open {
    overflow: hidden;
  }
}
body.menu-open .header-toggle-open {
  display: none;
}

/*@use "sass:color";
@use "../base/variables"as *;
@use "../abstracts/mixins"as *;*/
/* ======================================================
   HEADER BASE (ALL DEVICES)
====================================================== */
/*.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: $header-height;
    z-index: $z-header;
    background: $white;
    box-shadow: $shadow-sm;
    transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.header.scrolled {
    height: 75px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
}*/
/* Push page content below fixed header */
/*body {
    padding-top: $header-height;
}

.header__inner {
    @include container;
    @include flex-between;
    height: $header-height;
}*/
/* =========================================
   LOGO
========================================= */
/*.header-inner {
    @include flex-start;
    gap: $space-2;
    text-decoration: none;

    img {
        max-height: 50px;
    }

    .names {
        line-height: $line-height-tight;

        .company-name {
            font-size: $font-size-lg;
            font-weight: $font-weight-bold;
            text-transform: uppercase;
            color: $color-secondary;
            letter-spacing: .5px;
        }

        .moto {
            font-size: $font-size-xs;
            color: $color-text-light;
        }
    }
}*/
/* =========================================
   NAVIGATION (DESKTOP DEFAULT)
========================================= */
/*.header-nav {

    .menu-close {
        display: none;
    }

    .nav-items {
        @include flex-between;
        gap: $space-6;
        list-style: none;

        .nav-item {
            .nav_link {
                position: relative;
                color: $color-text-primary;
                font-size: $font-size-md;
                font-weight: $font-weight-semibold;
                padding-block: $space-2;
                transition: $transition-normal;

                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -6px;
                    width: 100%;
                    height: 2px;
                    background: $gradient-primary;
                    transform: scaleX(0);
                    transform-origin: right;
                    transition: transform .35s ease;
                }

                &:hover {
                    color: $color-secondary;

                    &::after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }
                }

                &.active {
                    color: $color-secondary;

                    &::after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }
                }
            }

            .nav_link:focus-visible {
                outline: 2px solid $brand-primary;
                outline-offset: 4px;
            }
        }
    }
}

.header-cta {
    .btn-call {
        @include flex-start;
        gap: $space-2;
        background: $gradient-primary;
        color: $white;
        padding: $space-2 $space-4;
        border-radius: $radius-md;
        font-weight: $font-weight-semibold;
        box-shadow: $shadow-sm;
        transition: transform .3s ease, box-shadow .3s ease;

        .call-text {
            line-height: $line-height-tight;

            .call-label {
                font-size: $font-size-xs;
                letter-spacing: .5px;
                display: block;
            }

            .call-number {
                font-size: $font-size-base;
                display: block;
            }
        }

        &:hover {
            transform: translateY(-2px);
            box-shadow: $shadow-md;
        }
    }
}

.header-toggle {
    display: none;
}*/
/* Desktop / Mobile CTA visibility */
/*.desktop-cta {
    display: block;
}

.mobile-cta {
    display: none;
}


@include respond(xl) {
    .header-nav {
        .nav-items {
            gap: $space-4;

            .nav-item {
                .nav_link {
                    font-size: $font-size-base;
                    padding-block: $space-1;
                }
            }
        }
    }

    .header-cta {
        .btn-call {
            padding: $space-2 $space-2;
            border-radius: $font-size-base;
            border-radius: $radius-sm;
        }
    }
}*/
/* =========================================
   MOBILE / TABLET HEADER
========================================= */
/*@include respond(lg) {*/
/* Smaller header */
/*.header {
    height: $header-height-mobile;
}

body {
    padding-top: $header-height-mobile;
}

.header-inner {
    height: $header-height-mobile;
}*/
/* CTA switching */
/*.desktop-cta {
    display: none;
}

.mobile-cta {
    display: block;
    margin-top: auto;
}*/
/* Show hamburger */
/*.header-toggle {
    display: block;
    font-size: 26px;*/
/*background: none;*/
/*  border: none;*/
/*color: $color-secondary;
    cursor: pointer;
    z-index: $z-menu;
}*/
/* Mobile nav panel */
/*.header-nav {
    position: fixed;
    top: $header-height-mobile;
    left: 0;*/
/* left: -100%;*/
/* left: -420px;*/
/*width: 100%;*/
/*width: 100%;*/
/*max-width: 420px;*/
/*height: calc(100vh - $header-height-mobile);
background: $white;*/
/*padding: 40px;*/
/*padding: $space-8 $space-6;
z-index: $z-menu;*/
/*box-shadow: $shadow-lg;*/
/*display: flex;
flex-direction: column;*/
/*gap: $space-4;*/
/*transform: translateX(-100%);
transition: transform .35s ease;

&.active {
    transform: translateX(0);
}

.nav-items {
    flex-direction: column;
    align-items: flex-start;
    gap: $space-5;

    .nav-item {
        .nav_link {
            font-size: $font-size-lg;
            font-weight: $font-weight-semibold;
        }
    }
}

.header-cta {
    .btn-call {
        padding: $space-3 $space-4;

        .call-text {
            .call-label {
                display: inline;
            }

            .call-number {
                display: inline;
            }
        }
    }
}*/
/* Close button inside panel */
/*.menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;*/
/* border: none;
background: none;*/
/*cursor: pointer;
        color: $color-secondary;
        z-index: 10;
    }
}*/
/* Overlay background */
/*.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: $transition-normal;
    z-index: $z-overlay;

    &.active {
        opacity: 1;
        pointer-events: auto;
    }
}*/
/* Prevent scroll when menu open */
/*body.menu-open {
        overflow: hidden;
    }
}*/
/* Hide hamburger when menu is open */
/*body.menu-open .header-toggle-open {
    display: none;
}*/
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.15) 100%);
}
.hero .hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .hero .hero-inner {
    padding-inline: 1rem;
  }
}
.hero .hero-inner .hero-content {
  max-width: 720px;
  color: #ffffff;
}
.hero .hero-inner .hero-content .hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 620px;
}
.hero .hero-inner .hero-content .hero-title .hero-title-line {
  display: inline-block;
  font-size: clamp(2.2rem, 1rem + 1vw, 3.2rem);
  font-weight: 700;
}
.hero .hero-inner .hero-content .hero-title .hero-title-highlight {
  display: inline-block;
  font-size: clamp(2.5rem, 1rem + 1vw, 3.6rem);
  font-weight: 700;
  color: #FF8800;
}
.hero .hero-inner .hero-content .hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero .hero-inner .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero .hero-inner .hero-content .hero-actions .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.hero .hero-inner .hero-content .hero-actions .hero-btn:focus-visible {
  outline: 3px solid #FF8800;
  outline-offset: 3px;
}
.hero .hero-inner .hero-content .hero-actions .hero-btn-fill {
  background: #FF8800;
  color: #000000;
  border: 1px solid #FF8800;
}
.hero .hero-inner .hero-content .hero-actions .hero-btn-fill:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}
.hero .hero-inner .hero-content .hero-actions .hero-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.hero .hero-inner .hero-content .hero-actions .hero-btn-outline:hover {
  background: #FF8800;
  color: #000000;
  border-color: #FF8800;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list .hero-stat {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list .hero-stat .hero-stat-data {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list .hero-stat .hero-stat-data .hero-stat-icon {
  font-size: 28px;
  color: #FF8800;
  min-width: 36px;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list .hero-stat .hero-stat-data .hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}
.hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list .hero-stat .hero-stat-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.hero .hero-inner .hero-contact {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero .hero-inner .hero-contact .hero-contact-label {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.hero .hero-inner .hero-contact .hero-contact-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.hero .hero-inner .hero-contact .hero-contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero .hero-inner .hero-contact .hero-contact-btn-call {
  background: #FF8800;
  color: #000000;
}
.hero .hero-inner .hero-contact .hero-contact-btn-whatsapp {
  background: #25D366;
}

@media (max-width: 1023px) {
  .hero {
    min-height: calc(100vh - 75px);
  }
  .hero .hero-content {
    max-width: 80%;
  }
  .hero .hero-contact {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero .hero-inner .hero-content {
    max-width: 100%;
  }
  .hero .hero-inner .hero-content .hero-stats {
    max-width: 100%;
  }
  .hero .hero-inner .hero-content .hero-stats .hero-stats-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .hero .hero-inner .hero-content .hero-stat {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .hero .hero-inner .hero-content .hero-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero .hero-inner .hero-contact {
    right: 15px;
  }
}
@media (max-width: 479px) {
  .hero {
    padding: 130px 0 110px;
  }
  .hero .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }
  .hero .hero-inner .hero-content {
    text-align: center;
  }
  .hero .hero-inner .hero-content .hero-actions {
    justify-content: center;
  }
  .hero .hero-inner .hero-content .hero-actions .hero-btn {
    width: 100%;
    max-width: 260px;
  }
  .hero .hero-inner .hero-content .hero-stats .hero-stats-inner .hero-stats-list {
    grid-template-columns: 1fr;
  }
  .hero .hero-inner .hero-contact {
    position: fixed;
    right: 15px;
    bottom: 15px;
    top: auto;
    transform: none;
    z-index: 999;
  }
  .hero .hero-inner .hero-contact .hero-contact-label {
    display: none;
  }
  .hero .hero-inner .hero-contact .hero-contact-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}
.hero .hero-animate .hero-title-line,
.hero .hero-animate .hero-title-highlight,
.hero .hero-animate .hero-subtitle,
.hero .hero-animate .hero-actions,
.hero .hero-animate .hero-stats,
.hero .hero-animate .hero-contact {
  opacity: 0;
}
.hero .hero-animate .hero-title-line,
.hero .hero-animate .hero-title-highlight {
  transform: translateY(40px);
}
.hero .hero-animate .hero-subtitle {
  transform: translateY(30px);
}
.hero .hero-animate .hero-actions {
  transform: translateY(20px);
}
.hero .hero-animate .hero-stats {
  transform: translateY(30px);
}
.hero .hero-animate .hero-contact {
  transform: translate(30px, -50%);
}
.hero .hero-active .hero-title-line,
.hero .hero-active .hero-title-highlight,
.hero .hero-active .hero-subtitle,
.hero .hero-active .hero-actions,
.hero .hero-active .hero-stats {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .hero-active .hero-contact {
  animation: heroFadeRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.hero .hero-active .hero-title-line:nth-child(1) {
  animation-delay: 0.1s;
}
.hero .hero-active .hero-title-highlight {
  animation-delay: 0.2s;
}
.hero .hero-active .hero-title-line:nth-child(3) {
  animation-delay: 0.3s;
}
.hero .hero-active .hero-subtitle {
  animation-delay: 0.4s;
}
.hero .hero-active .hero-actions {
  animation-delay: 0.6s;
}
.hero .hero-active .hero-stats {
  animation-delay: 0.8s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeRight {
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.about-section {
  background-color: #ffffff;
}
.about-section .container .about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .about-section .container .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-section .container .about-grid .about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.about-section .container .about-grid .about-content .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}
@media (max-width: 479px) {
  .about-section .container .about-grid .about-content .about-stats {
    grid-template-columns: 1fr;
  }
}
.about-section .container .about-grid .about-content .about-stats .stat-card {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #1F2DBE;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.about-section .container .about-grid .about-content .about-stats .stat-card .stat-number {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  color: #1F2DBE;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-section .container .about-grid .about-content .about-stats .stat-card .stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}
.about-section .container .about-grid .about-img {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #f5f5f5;
  /* opacity: 0;
   transform: translateX(40px);*/
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  /*   &.reveal-active {
         opacity: 1;
         transform: translateX(0);
     }*/
}
.about-section .container .about-grid .about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}
.about-section .container .about-grid .about-img .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  .about-section .container .about-grid .about-img .image {
    min-height: 320px;
  }
}
.about-section .container .about-grid .about-img .image:hover {
  transform: scale(1.04);
}

.about-page {
  background-color: #f8fafc;
}
.about-page .container {
  /* Content Styling */
  /* Image Wrapper Styling */
}
.about-page .container .wrapper-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  /* Scroll Reveal Base States */
}
@media (max-width: 768px) {
  .about-page .container .wrapper-container {
    gap: 2rem;
  }
}
.about-page .container .wrapper-container .about-content,
.about-page .container .wrapper-container .about-image-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.about-page .container .wrapper-container .about-content.reveal-active,
.about-page .container .wrapper-container .about-image-wrapper.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.about-page .container .wrapper-container .primary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.about-page .container .wrapper-container .primary-row .row-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.about-page .container .wrapper-container .primary-row .row-left:nth-child(1) .about-content {
  transition-delay: 0.1s;
}
.about-page .container .wrapper-container .primary-row .row-left:nth-child(2) .about-image-wrapper {
  transition-delay: 0.25s;
}
@media (max-width: 1024px) {
  .about-page .container .wrapper-container .primary-row .row-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-page .container .wrapper-container .primary-row .row-left:first-child {
    margin-bottom: 1.5rem;
  }
}
.about-page .container .wrapper-container .secondary-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.about-page .container .wrapper-container .secondary-row .row-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.about-page .container .wrapper-container .secondary-row .row-right:nth-child(1) .about-content {
  transition-delay: 0.1s;
}
.about-page .container .wrapper-container .secondary-row .row-right:nth-child(2) .about-image-wrapper {
  transition-delay: 0.25s;
}
@media (max-width: 1024px) {
  .about-page .container .wrapper-container .secondary-row .row-right {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .about-page .container .wrapper-container .secondary-row .row-right:first-child {
    order: 1;
    margin-bottom: 1.5rem;
  }
}
.about-page .container .about-content {
  padding-right: 1rem;
}
@media (max-width: 1024px) {
  .about-page .container .about-content {
    padding-right: 0;
  }
}
.about-page .container .about-content .lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.5;
  margin-bottom: 1rem;
  border-left: 3px solid #D6006B;
  padding-left: 0.75rem;
}
.about-page .container .about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-page .container .about-content h3 {
    font-size: 1.5rem;
  }
}
.about-page .container .about-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-page .container .about-content p:last-child {
  margin-bottom: 0;
}
.about-page .container .about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /*transition: transform $transition-normal, box-shadow $transition-normal;*/
}
.about-page .container .about-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about-page .container .about-image-wrapper:hover img {
  transform: scale(1.03);
}
.about-page .container .about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.md-message-section {
  background-color: #ffffff;
}
.md-message-section .container .md-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  /* Responsive 2-Column Grid */
}
@media (max-width: 1024px) {
  .md-message-section .container .md-card {
    padding: 1.5rem 1rem;
  }
}
.md-message-section .container .md-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
}
.md-message-section .container .md-card .md-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
  /* Scroll Reveal Base Classes */
  /* Staggered Delay */
  /* Left Column: Image & Profile */
  /* Right Column: Message Content */
}
@media (max-width: 1200px) {
  .md-message-section .container .md-card .md-grid {
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .md-message-section .container .md-card .md-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.md-message-section .container .md-card .md-grid .md-col-profile,
.md-message-section .container .md-card .md-grid .md-col-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.md-message-section .container .md-card .md-grid .md-col-profile.reveal-active,
.md-message-section .container .md-card .md-grid .md-col-content.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.md-message-section .container .md-card .md-grid .md-col-profile {
  transition-delay: 0.1s;
}
.md-message-section .container .md-card .md-grid .md-col-content {
  transition-delay: 0.25s;
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper {
  position: relative;
  text-align: center;
  /* Show mobile meta only when signature block is hidden/stacked */
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 380px;
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-image-box:hover img {
  transform: scale(1.03);
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-meta-mobile {
  display: none;
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-meta-mobile {
    display: block;
  }
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-meta-mobile .md-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}
.md-message-section .container .md-card .md-grid .md-col-profile .md-profile-wrapper .md-meta-mobile .md-role {
  font-size: 0.85rem;
  color: #D6006B;
  font-weight: 600;
  text-transform: uppercase;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote {
  position: relative;
  margin: 0 0 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #D6006B;
}
@media (max-width: 480px) {
  .md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote {
    padding-left: 0.75rem;
  }
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote .quote-icon {
  font-size: 2.3rem;
  color: rgba(214, 0, 107, 0.12);
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  z-index: 0;
  pointer-events: none;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote p {
  position: relative;
  z-index: 1;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote p:last-child {
  margin-bottom: 0;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-quote .lead-text {
  font-size: 1.12rem;
  font-weight: 500;
  color: #1c1c1c;
  line-height: 1.5;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 480px) {
  .md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-details .md-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.2;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-details .md-role {
  font-size: 0.85rem;
  color: #D6006B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 0.25rem;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-contact .md-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  color: #1c1c1c;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-contact .md-email-btn i {
  color: #D6006B;
  transition: transform 0.2s ease, color 0.2s ease;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-contact .md-email-btn:hover {
  background-color: #D6006B;
  color: #ffffff;
  border-color: #D6006B;
}
.md-message-section .container .md-card .md-grid .md-col-content .md-content .md-signature-block .md-contact .md-email-btn:hover i {
  color: #ffffff;
  transform: translateX(2px);
}

.vmq-section {
  background-color: #f8fafc;
}
.vmq-section .container {
  /* 2-Column Grid for Vision & Mission */
  /* Quality Policy Banner & 4 Pillars */
}
.vmq-section .container .vmq-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .vmq-section .container .vmq-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.vmq-section .container .vmq-cards-grid .vmq-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  /* Combined transitions for Hover and Scroll Reveal */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  will-change: opacity, transform;
  /* Staggered Delay for Vision & Mission Cards */
}
.vmq-section .container .vmq-cards-grid .vmq-card.reveal-active {
  opacity: 1;
  transform: translateY(0);
  /* Maintain hover effect without breaking reveal transform */
}
.vmq-section .container .vmq-cards-grid .vmq-card.reveal-active:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.vmq-section .container .vmq-cards-grid .vmq-card.vmq-card-vision {
  transition-delay: 0.1s, 0.1s, 0s;
}
.vmq-section .container .vmq-cards-grid .vmq-card.vmq-card-mission {
  transition-delay: 0.25s, 0.25s, 0s;
}
.vmq-section .container .vmq-cards-grid .vmq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.vmq-section .container .vmq-cards-grid .vmq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
.vmq-section .container .vmq-cards-grid .vmq-card.vmq-card-vision::before {
  background-color: #D6006B;
}
.vmq-section .container .vmq-cards-grid .vmq-card.vmq-card-mission::before {
  background-color: #FF8800;
}
.vmq-section .container .vmq-cards-grid .vmq-card .vmq-card-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  background-color: rgba(214, 0, 107, 0.08);
  color: #D6006B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.vmq-section .container .vmq-cards-grid .vmq-card .vmq-card-body .vmq-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.5rem 0;
}
.vmq-section .container .vmq-cards-grid .vmq-card .vmq-card-body .vmq-card-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.vmq-section .container .qp-banner {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* Banner Reveal State */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.vmq-section .container .qp-banner.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vmq-section .container .qp-banner {
    padding: 1rem;
  }
}
.vmq-section .container .qp-banner .qp-header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.vmq-section .container .qp-banner .qp-header .qp-title-block .qp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 136, 0, 0.12);
  color: #FF8800;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.vmq-section .container .qp-banner .qp-header .qp-title-block .qp-badge i {
  font-size: 0.9rem;
}
.vmq-section .container .qp-banner .qp-header .qp-title-block .qp-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.75rem 0;
}
.vmq-section .container .qp-banner .qp-header .qp-lead {
  font-size: 1.12rem;
  color: #1c1c1c;
  line-height: 1.5;
  margin: 0;
}
.vmq-section .container .qp-banner .qp-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .vmq-section .container .qp-banner .qp-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  /* Staggered Reveal State for Pillars */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  /* Staggered Delay Sequence for 4 Pillars */
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item:nth-child(1) {
  transition-delay: 0.1s;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item:nth-child(2) {
  transition-delay: 0.2s;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item:nth-child(3) {
  transition-delay: 0.3s;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item:nth-child(4) {
  transition-delay: 0.4s;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item .qp-pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background-color: rgba(214, 0, 107, 0.08);
  color: #D6006B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item .qp-pillar-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.25rem 0;
}
.vmq-section .container .qp-banner .qp-pillars .qp-pillar-item .qp-pillar-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.corp-info-section {
  background-color: #ffffff;
}
.corp-info-section .container .corp-info-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .corp-info-section .container .corp-info-card {
    padding: 1.5rem 1rem;
  }
}
.corp-info-section .container .corp-info-card .corp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .corp-info-section .container .corp-info-card .corp-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .group-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #D6006B;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .group-title i {
  font-size: 1rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #e2e8f0;
  /* Nested lists for affiliations */
  /* Badges for CIDA grades */
  /* Stats pills for workforce */
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .detail-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1c1c1c;
  line-height: 1.5;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .detail-value.highlight {
  color: #D6006B;
  font-weight: 700;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .sub-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .sub-list li {
  border: none;
  padding: 0;
  position: relative;
  padding-left: 0.75rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .sub-list li::before {
  content: "•";
  color: #D6006B;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .badge-list .cida-badge {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1c1c1c;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .badge-list .cida-badge strong {
  color: #FF8800;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .stats-inline .stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(214, 0, 107, 0.05);
  border: 1px solid rgba(214, 0, 107, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 16px;
  font-size: 0.85rem;
  color: #1c1c1c;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .stats-inline .stat-pill i {
  color: #D6006B;
}
.corp-info-section .container .corp-info-card .corp-info-grid .corp-info-col .corp-detail-list li .stats-inline .stat-pill strong {
  font-size: 0.9rem;
  color: #D6006B;
}

/* Initial hidden states */
.reveal-card,
.reveal-title,
.reveal-item,
.reveal-badge,
.reveal-pill {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-card {
  transform: translateY(30px);
}

.reveal-title {
  transform: translateX(-20px);
}

.reveal-item {
  transform: translateY(20px);
}

.reveal-badge {
  transform: scale(0.85);
}

.reveal-pill {
  transform: translateX(20px);
}

/* Active visible state triggered by JS */
.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Optional hover polish */
.stat-pill, .cida-badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-pill:hover, .cida-badge:hover {
  transform: translateY(-2px);
}

.services-section {
  background-color: #f8fafc;
}
.services-section .container .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.services-section .container .services-grid .service-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  /* Scroll Reveal Initial State */
  /*opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow $transition-normal, border-color $transition-normal;*/
  /* Active Revealed State */
  /*&.reveal-active {
      opacity: 1;
      transform: translateY(0);
  }*/
  /* Preserve hover effect after reveal */
  /*&.reveal-active:hover {
      transform: translateY(-5px);
      box-shadow: $shadow-md;
      border-color: lighten($brand-primary, 30%);

      .icon-wrapper {
          background-color: $brand-primary;
          color: $white;
      }
  }*/
}
.services-section .container .services-grid .service-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(214, 0, 107, 0.1);
  color: #D6006B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.services-section .container .services-grid .service-card .card-title {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.services-section .container .services-grid .service-card .card-text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.services-section .container .services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgb(255, 112, 183.5);
}
.services-section .container .services-grid .service-card:hover .icon-wrapper {
  background-color: #D6006B;
  color: #ffffff;
}

/* Accessibility: Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.why-us-section {
  background-color: #f8fafc;
}
.why-us-section .container .accordion-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .why-us-section .container .accordion-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.why-us-section .container .accordion-layout .accordion-media {
  position: sticky;
  top: 120px;
  /*  opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;

    &.reveal-active {
        opacity: 1;
        transform: translateX(0);
    }*/
}
@media (max-width: 1023px) {
  .why-us-section .container .accordion-layout .accordion-media {
    position: relative;
    top: 0;
  }
}
.why-us-section .container .accordion-layout .accordion-media .media-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .why-us-section .container .accordion-layout .accordion-media .media-card {
    min-height: 320px;
  }
}
.why-us-section .container .accordion-layout .accordion-media .media-card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-us-section .container .accordion-layout .accordion-media .media-card .media-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(46, 46, 58, 0.9);
  backdrop-filter: blur(8px);
  border-left: 4px solid #D6006B;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #ffffff;
}
.why-us-section .container .accordion-layout .accordion-media .media-card .media-overlay-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-us-section .container .accordion-layout .accordion-media .media-card .media-overlay-badge .badge-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e5e5e5;
}
.why-us-section .container .accordion-layout .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  /*opacity: 0;
  transform: translateY(25px);*/
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
  /*  &.reveal-active {
        opacity: 1;
        transform: translateY(0);
    }*/
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item[open] {
  border-color: rgb(255, 18.2, 136.6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item[open] .accordion-header .accordion-number {
  background-color: #D6006B;
  color: #ffffff;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item[open] .accordion-header .icon-arrow {
  transform: rotate(180deg);
  color: #D6006B;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header::-webkit-details-marker {
  display: none;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header .header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header .accordion-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D6006B;
  background-color: rgba(214, 0, 107, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header .accordion-title {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.2;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-header .icon-arrow {
  font-size: 0.9rem;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-body {
  padding: 0 1.5rem 1.5rem calc(1.5rem + 52px);
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-body {
    padding: 0 1rem 1rem 1rem;
  }
}
.why-us-section .container .accordion-layout .accordion-list .accordion-item .accordion-body p {
  margin: 0;
}

.projects-section {
  background-color: #ffffff;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .projects-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
}
.projects-section .projects-grid .project-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.projects-section .projects-grid .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgb(255, 18.2, 136.6);
}
.projects-section .projects-grid .project-card:hover .project-media .project-image {
  transform: scale(1.05);
}
.projects-section .projects-grid .project-card:hover .btn-project-link {
  color: #D6006B;
}
.projects-section .projects-grid .project-card:hover .btn-project-link i {
  transform: translateX(4px);
}
.projects-section .projects-grid .project-card .project-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.projects-section .projects-grid .project-card .project-media .project-media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.projects-section .projects-grid .project-card .project-media .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.projects-section .projects-grid .project-card .project-media .project-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(46, 46, 58, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border-left: 3px solid #ffffff;
  z-index: 2;
}
.projects-section .projects-grid .project-card .project-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.projects-section .projects-grid .project-card .project-body .project-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.projects-section .projects-grid .project-card .project-body .project-title .project-card-link {
  color: #1c1c1c;
  text-decoration: none;
  transition: color 0.2s ease;
  /* Stretched link pattern to make entire card clickable */
}
.projects-section .projects-grid .project-card .project-body .project-title .project-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.projects-section .projects-grid .project-card .project-body .project-title .project-card-link:hover {
  color: #D6006B;
}
.projects-section .projects-grid .project-card .project-body .project-location {
  font-size: 0.85rem;
  color: #D6006B;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.projects-section .projects-grid .project-card .project-body .project-location i {
  font-size: 0.85rem;
}
.projects-section .projects-grid .project-card .project-body .project-details {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}
.projects-section .projects-grid .project-card .project-body .project-footer {
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}
.projects-section .projects-grid .project-card .project-body .project-footer .btn-project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c1c1c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.projects-section .projects-grid .project-card .project-body .project-footer .btn-project-link i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.projects-section .projects-action {
  margin-top: 3rem;
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.faq-section {
  background-color: #f8fafc;
}
.faq-section .faq-accordion {
  max-width: 840px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-section .faq-accordion .faq-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-section .faq-accordion .faq-item[open] {
  border-color: rgb(255, 18.2, 136.6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-accordion .faq-item[open] .faq-header .faq-question {
  color: #D6006B;
}
.faq-section .faq-accordion .faq-item[open] .faq-header .faq-icon {
  transform: rotate(180deg);
  color: #D6006B;
}
.faq-section .faq-accordion .faq-item .faq-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.faq-section .faq-accordion .faq-item .faq-header::-webkit-details-marker {
  display: none;
}
.faq-section .faq-accordion .faq-item .faq-header .faq-question {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.faq-section .faq-accordion .faq-item .faq-header .faq-icon {
  font-size: 0.9rem;
  color: #666;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-section .faq-accordion .faq-item .faq-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}
.faq-section .faq-accordion .faq-item .faq-body p {
  margin: 0;
}

.clients-section {
  background-color: #ffffff;
}
.clients-section .clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0 auto;
}
@media (max-width: 479px) {
  .clients-section .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.clients-section .clients-grid .client-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.clients-section .clients-grid .client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgb(255, 18.2, 136.6);
}
.clients-section .clients-grid .client-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}
.clients-section .clients-grid .client-card .client-logo-wrapper {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.clients-section .clients-grid .client-card .client-logo-wrapper .client-logo {
  max-height: 100%;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.clients-section .clients-grid .client-card .client-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.clients-section .clients-grid .client-card .client-type {
  font-size: 0.85rem;
  color: #D6006B;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-section {
  background-color: #f8fafc;
}
.cta-section .cta-card {
  position: relative;
  background: linear-gradient(135deg, #2e2e3a 0%, rgb(41.4, 41.4, 52.2) 100%);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgb(63.5454545455, 88.9636363636, 122.8545454545);
}
@media (max-width: 767px) {
  .cta-section .cta-card {
    padding: 2rem 1rem;
  }
}
.cta-section .cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214, 0, 107, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.cta-section .cta-card .cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-section .cta-card .cta-content .cta-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #D6006B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.cta-section .cta-card .cta-content .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .cta-section .cta-card .cta-content .cta-title {
    font-size: 1.5rem;
  }
}
.cta-section .cta-card .cta-content .cta-description {
  font-size: 0.9rem;
  color: #e5e5e5;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.cta-section .cta-card .cta-content .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 479px) {
  .cta-section .cta-card .cta-content .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-section .cta-card .cta-content .cta-actions .btn {
    width: 100%;
  }
}
.cta-section .cta-card .cta-content .cta-actions .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.cta-section .cta-card .cta-content .cta-actions .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.contact-section {
  background-color: #ffffff;
}
.contact-section .container {
  /* Grid Layout: Contact Info & Form */
  /* Bottom: Map Container */
}
.contact-section .container .contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  /* Left Column: Contact Cards */
  /* Right Column: Form */
}
@media (max-width: 1200px) {
  .contact-section .container .contact-grid {
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .contact-section .container .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.contact-section .container .contact-grid .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, box-shadow 0.2s ease;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:nth-child(2) {
  transition-delay: 0.2s;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:nth-child(3) {
  transition-delay: 0.3s;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:nth-child(4) {
  transition-delay: 0.4s;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:nth-child(5) {
  transition-delay: 0.5s;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background-color: rgba(214, 0, 107, 0.08);
  color: #D6006B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.5rem 0;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content p a {
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content p a:hover {
  color: #D6006B;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content .sub-note {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-top: 0.25rem;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content .hours-list li {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content .hours-list li strong {
  color: #1c1c1c;
}
.contact-section .container .contact-grid .contact-info-wrapper .info-card .card-content .hours-list li strong.closed-tag {
  color: #d9534f;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 0.2s;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .contact-section .container .contact-grid .contact-form-wrapper .form-card {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section .container .contact-grid .contact-form-wrapper .form-card {
    padding: 1rem;
  }
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.25rem 0;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .form-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form {
  /* Honeypot Field CSS Shield (Invisibly conceals honeypot from human visitors) */
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) {
  .contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group label .required {
  color: #FF8800;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group .form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9rem;
  color: #1c1c1c;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #D6006B;
  box-shadow: 0 0 0 3px rgba(214, 0, 107, 0.12);
  background-color: #ffffff;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group .form-control::placeholder {
  color: #666;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-section .container .contact-grid .contact-form-wrapper .form-card .contact-form .btn-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.contact-section .container .map-section .map-card {
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 0.15s;
}
.contact-section .container .map-section .map-card.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.contact-section .container .map-section .map-card.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
.contact-section .container .map-section .map-card .map-header {
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.contact-section .container .map-section .map-card .map-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-section .container .map-section .map-card .map-header h3 i {
  color: #D6006B;
}
.contact-section .container .map-section .map-card .map-header p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}
.contact-section .container .map-section .map-card .map-container {
  width: 100%;
  line-height: 0;
}
.contact-section .container .map-section .map-card .map-container iframe {
  width: 100%;
  height: 380px;
  display: block;
}

.gallery-section {
  background-color: #ffffff;
}
.gallery-section .image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .gallery-section .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .gallery-section .image-gallery {
    grid-template-columns: 1fr;
  }
}
.gallery-section .image-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.gallery-section .image-gallery .gallery-item .gallery-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-section .image-gallery .gallery-item .gallery-trigger img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  /*display: block;*/
  transition: transform 0.4s ease;
}
.gallery-section .image-gallery .gallery-item .gallery-trigger:hover img {
  transform: scale(1.05);
}

/* Native HTML Dialog Styling */
/* Native HTML Dialog Styling */
.gallery-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  overflow: visible;
  /* Absolute Screen Centering */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  /* Animation Setup */
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  /* Open State */
  /* Closing Animation State */
  /* Backdrop Styling */
}
.gallery-modal[open] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-modal.is-closing {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}
@starting-style {
  .gallery-modal[open] {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
}
.gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-modal[open]::backdrop {
  opacity: 1;
}
.gallery-modal.is-closing::backdrop {
  opacity: 0;
}
@starting-style {
  .gallery-modal[open]::backdrop {
    opacity: 0;
  }
}

/* Inner Layout Styling */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111111;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  max-width: 90vw;
  max-height: 90vh;
  /* Fits image within viewport without breaking bounds */
  /* Close Button Positioning & Visibility Fix */
}
.modal-content .modal-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.modal-content img {
  max-width: 80vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.modal-content .modal-caption {
  color: #e0e0e0;
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
}
.modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: #e63946;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.modal-content .modal-close:hover {
  background: #d62828;
  transform: scale(1.1);
}

.footer_section {
  background: #2e2e3a;
  color: #ffffff;
  padding: 4rem 0 2rem;
  /*==================================
      ROW 1
  ==================================*/
  /*==================================
      ABOUT
  ==================================*/
  /*==================================
      QUICK LINKS
  ==================================*/
  /*==================================
      CONTACT
  ==================================*/
  /*==================================
      ROW 2
  ==================================*/
}
.footer_section .section_content {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .footer_section .section_content {
    padding-inline: 1rem;
  }
}
.footer_section h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer_section h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
  border-radius: 8px;
}
.footer_section .row1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 3rem;
}
.footer_section .aboutus p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer_section .aboutus .social_link_list {
  display: flex;
  gap: 1rem;
}
.footer_section .aboutus .social_link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  transition: 0.3s ease;
}
.footer_section .aboutus .social_link:hover {
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
  transform: translateY(-3px);
}
.footer_section .quicklinks ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer_section .quicklinks .link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s ease;
}
.footer_section .quicklinks .link a i {
  color: #FF8800;
}
.footer_section .quicklinks .link a:hover {
  color: #ffffff;
  padding-left: 6px;
}
.footer_section .contact .contact_info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_section .contact .detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer_section .contact .icon {
  width: 24px;
  font-size: 1.1rem;
  color: #FF8800;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer_section .contact .info p,
.footer_section .contact .info a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  transition: 0.3s ease;
}
.footer_section .contact .info a:hover {
  color: #ffffff;
}
.footer_section .row2 {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer_section .row2 h3 {
  display: none;
}
.footer_section .row2 .policy_text {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer_section .row2 .policy_text .policy_link {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s ease;
}
.footer_section .row2 .policy_text .policy_link:hover {
  color: #ffffff;
}

/*==================================
    COPYRIGHT
==================================*/
.footer1_section {
  background: linear-gradient(135deg, #D6006B, #1F2DBE);
  padding: 0.75rem 0;
}
.footer1_section .row3 {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .footer1_section .row3 {
    padding-inline: 1rem;
  }
}
.footer1_section .copyright_text {
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
}

/*==================================
    RESPONSIVE
==================================*/
@media (max-width: 1023px) {
  .footer_section .row1 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer_section .aboutus {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .footer_section .row1 {
    grid-template-columns: 1fr;
  }
  .footer_section .row2 .policy_text {
    gap: 1rem;
  }
}
@media (max-width: 479px) {
  .footer_section {
    padding: 3rem 0;
  }
  .footer_section h3 {
    font-size: 1.12rem;
  }
  .footer_section .row2 h3 {
    display: block;
  }
  .footer_section .row2 .policy_text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer1_section .copyright_text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}
