  @font-face {
        font-family: 'AvenirHeavy';
        src: url('/fonts/avenir-lt-w05_85-heavy.woff2') format('woff2');
        font-style: normal;
        font-weight: 700;
        font-display: swap;
  }
  @font-face {
    font-family: 'AvenirLight';
    src: url('/fonts/helvetica-w02-light.woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
  }

html {
        scroll-behavior: smooth;
      }

:root {
        --header-height: 96px;
      }

body {
        margin: 0;
        padding-top: var(--header-height);
        min-height: 100vh;
        min-height: 100dvh;
        font-family: 'AvenirLight', sans-serif;
        font-weight: 400;
        background:
          linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
          url('../images/bg_cover_img.jpg') center center / cover no-repeat fixed;
      }

      .site-header {
        width: 100%;
        min-height: 96px;
        background: #1b2f3f;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 31px 0 18px;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
      }

      .site-brand {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        color: #d9a84f;
        text-decoration: none;
      }

      .site-brand:hover,
      .site-brand:focus {
        color: #d9a84f;
        text-decoration: none;
      }

      .brand-mark {
        width: 62px;
        height: 62px;
        flex: 0 0 62px;
      }

      .brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        color: #d9a84f;
        font-family: "Arial Black", Arial, Helvetica, sans-serif;
        line-height: 0.92;
        letter-spacing: 0;
        text-transform: uppercase;
      }

      .brand-text .brand-line-1 {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 3px;
      }

      .brand-text .brand-line-2 {
        font-size: 30px;
        font-weight: 900;
        letter-spacing: 2px;
      }

      .site-nav {
        display: flex;
        align-items: center;
        gap: 26px;
        margin-top: 1px;
      }

      .site-nav a {
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase;
        text-decoration: none;
      }

      .site-nav a:hover,
      .site-nav a:focus {
        color: #d9a84f;
        text-decoration: none;
      }

      .site-nav a.active {
        color: #d9a84f;
        border-bottom: 2px solid #d9a84f;
        padding-bottom: 2px;
      }

      .vertical-slider-text {
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100svh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 28px;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: clamp(32px, 4.3vw, 60px);
        font-weight: 700;
        line-height: 1.42;
        color: #ffffff;
        text-align: center;
      }

      .hero-copy {
        animation: heroTextIn 0.9s ease both;
      }

      .scroll-indicator {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        text-decoration: none;
        animation: scrollBounce 1.5s ease-in-out infinite;
      }

      .scroll-indicator::before {
        content: "";
        width: 26px;
        height: 26px;
        border-right: 6px solid #ffffff;
        border-bottom: 6px solid #ffffff;
        transform: rotate(45deg);
      }

      .scroll-indicator:hover::before,
      .scroll-indicator:focus::before {
        border-color: #d9a84f;
      }

      @keyframes heroTextIn {
        from {
          opacity: 0;
          transform: translateY(18px);
        }

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

      @keyframes scrollBounce {
        0%,
        100% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(12px);
        }
      }
    
      .big-text{
        font-size: 60px;
        font-family: 'AvenirHeavy', sans-serif;
        font-weight: 700;
      }

      #why-trust {
        scroll-margin-top: var(--header-height);
      }

      #about {
        scroll-margin-top: var(--header-height);
      }

      .home-products-section {
        background-color: #ffffff;
        padding: 50px 0;
      }

      .home-products-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 28px;
      }

      .home-product-col {
        margin-bottom: 30px;
      }

      .home-product-card {
        max-width: 360px;
        min-height: 100%;
        margin: 0 auto;
        background: #ffffff;
        text-align: center;
        box-shadow: 0 2px 12px rgba(17, 34, 51, 0.08);
      }

      .home-product-image {
        display: block;
        width: 100%;
        height: 220px;
        object-fit: cover;
      }

      .home-product-title {
        min-height: 64px;
        margin: 28px 18px 22px;
        color: #314f6f;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.08;
        text-align: center;
      }

      .home-product-btn {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 144px;
        min-height: 42px;
        margin: 0 0 28px;
        padding: 10px 22px;
        border: 1px solid #333333;
        background: #ffffff;
        color: #222222;
        font-size: 14px;
        letter-spacing: 0;
        line-height: 1;
        text-decoration: none;
        text-transform: none;
        transition: background-color 0.2s ease, color 0.2s ease;
        cursor: pointer;
        pointer-events: auto;
        touch-action: manipulation;
        -ms-touch-action: manipulation;
      }

      .home-product-btn span {
        font-size: 26px;
        line-height: 12px;
      }

      .home-product-btn:focus {
        background-color: #222222;
        color: #ffffff;
        text-decoration: none;
      }

      @media (hover: hover) {
        .home-product-btn:hover {
          background-color: #222222;
          color: #ffffff;
          text-decoration: none;
        }
      }

      .home-count-section .backInUp {
        opacity: 0;
      }

      .home-count-section.is-visible .backInUp {
        opacity: 1;
      }

      .home-count-section.is-visible .backInUp:nth-child(2) {
        animation-delay: 0.1s;
      }

      .clients-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        margin: 28px 0 0;
        padding: 0;
        list-style: none;
        flex-wrap: nowrap;
      }

      .clients-list li {
        flex: 0 1 180px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .clients-list img {
        max-width: 100%;
        max-height: 90px;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
      }

      .contact-map {
        width: 100%;
        height: 365px;
        margin: 28px 0 24px;
        overflow: hidden;
        border: 1px solid #d7e2ec;
        background: #eef5fa;
        box-shadow: 0 8px 24px rgba(16, 45, 74, 0.12);
      }

      .contact-map iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
      }

      .contact-content {
        margin-top: 24px;
      }

      .contact-block {
        margin-bottom: 30px;
      }

      .contact-block h3,
      .contact-form h3,
      .contact-quote h3 {
        margin: 0 0 18px;
        color: #1d2b3a;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.2;
      }

      .contact-block p,
      .contact-details p {
        margin: 0;
        color: #172035;
        font-size: 20px;
        line-height: 1.6;
      }

      .contact-form {
        max-width: 450px;
      }

      .contact-form label {
        display: block;
        margin: 8px 0 4px;
        color: #172035;
        font-size: 20px;
        font-weight: 400;
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        display: block;
        border: 1px solid #29313b;
        border-radius: 0;
        background: #ffffff;
        color: #172035;
        font-size: 13px;
        line-height: 1.4;
        padding: 5px 7px;
        box-shadow: none;
      }

      .contact-form input {
        height: 22px;
      }

      .contact-form textarea {
        min-height: 86px;
        resize: vertical;
      }

      .contact-form button {
        width: 116px;
        height: 28px;
        display: block;
        margin: 7px 0 0 auto;
        border: 0;
        background: #2f2f31;
        color: #f4ae45;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
      }

      .contact-form button:hover,
      .contact-form button:focus {
        background: #1d2b3a;
      }

      .contact-right {
        padding-top: 4px;
      }

      .contact-quote {
        margin-top: 36px;
      }

      .contact-quote strong {
        display: block;
        color: #1d2b3a;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 19px;
        line-height: 1;
      }

      /* Snackbar Notification Styles */
      .snackbar {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 16px 24px;
        background-color: #323232;
        color: #fff;
        border-radius: 4px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
        font-size: 14px;
        font-weight: 500;
        z-index: 3000;
        opacity: 0;
        transform: translateX(400px);
        transition: all 0.3s ease;
        max-width: 350px;
        word-break: break-word;
      }

      .snackbar-success {
        background-color: #4caf50;
      }

      .snackbar-error {
        background-color: #f44336;
      }

      .snackbar-show {
        opacity: 1;
        transform: translateX(0);
      }

      @media (max-width: 768px) {
        .snackbar {
          top: auto;
          bottom: 20px;
          right: 20px;
          left: 20px;
          max-width: none;
          transform: translateY(100px);
        }

        .snackbar-show {
          transform: translateY(0);
        }
      }

      @media (max-width: 768px) {
        :root {
          --header-height: 128px;
        }

        body {
          padding-top: var(--header-height);
        }

        #why-trust {
          scroll-margin-top: var(--header-height);
        }

        #about {
          scroll-margin-top: var(--header-height);
        }

        .vertical-slider-text {
          min-height: calc(100vh - var(--header-height));
          min-height: calc(100svh - var(--header-height));
          min-height: calc(100dvh - var(--header-height));
          font-size: 32px;
          line-height: 1.35;
          gap: 22px;
        }

        .scroll-indicator {
          width: 36px;
          height: 36px;
        }

        .scroll-indicator::before {
          width: 22px;
          height: 22px;
          border-right-width: 5px;
          border-bottom-width: 5px;
        }

        .home-product-image {
          height: 190px;
        }

        .home-product-title {
          font-size: 22px;
        }

        .clients-list {
          justify-content: flex-start;
          gap: 18px;
          overflow-x: auto;
          padding-bottom: 8px;
        }

        .clients-list li {
          flex: 0 0 130px;
        }

        .clients-list img {
          max-height: 70px;
        }

        .contact-map {
          height: 300px;
        }

        .contact-form {
          max-width: none;
        }

        .contact-right {
          padding-top: 28px;
        }
      }
      .home-about-section {
        position: relative;
        overflow: hidden;
        padding: 64px 0 56px;
        background:
          linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 58%, rgba(238, 247, 255, 0.9) 58%, rgba(255, 255, 255, 0.96) 100%),
          url('../images/bg_cover_img.jpg') center center / cover no-repeat;
        color: #172035;
        font-size: 20px;
      }
      .projects-page {
        padding: 80px 0;
        background: rgba(0, 0, 0, 0.3);
      }


      .projects-hero {
        text-align: left;
        padding-bottom: 42px;
        
      }

      .projects-hero h1 {
        margin: 0;
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.05;
        color: #fff;
        letter-spacing: -0.04em;
      }

      .project-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
        margin-bottom: 48px;
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 18px 50px rgba(31, 63, 94, 0.08);
      }

      .project-item-right {
        direction: rtl;
      }

      .project-item-right .project-info,
      .project-item-right .project-image {
        direction: ltr;
      }

      .project-image {
        min-height: 420px;
        max-height: 520px;
        overflow: hidden;
      }

      .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
      }

      .project-info {
        padding: 48px 40px;
      }

      .project-number {
        display: block;
        margin-bottom: 18px;
        font-size: 18px;
        color: #8b96a5;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .project-info h2 {
        margin: 0;
        font-size: clamp(32px, 4vw, 50px);
        line-height: 1.05;
        color: #2e3a4b;
      }

      .projects-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 32px;
        padding: 40px 48px;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(31, 63, 94, 0.06);
      }

      .projects-cta p {
        margin: 0;
        font-size: 25px;
        font-weight: 700;
        color: #1b2f3f;
      }

      .projects-cta .btn {
        min-width: 160px;
        padding: 14px 24px;
        background: #1b2f3f;
        color: #ffffff;
        border: none;
        border-radius: 10px;
        text-transform: uppercase;
        font-weight: 700;
      }

      .projects-cta .btn:hover,
      .projects-cta .btn:focus {
        background: #0f2132;
      }

      @media (max-width: 992px) {
        .project-item {
          grid-template-columns: 1fr;
        }

        .project-item-right {
          direction: ltr;
        }

        .project-info {
          padding: 32px 28px;
        }

        .project-image {
          min-height: 320px;
        }
      }

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

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

        .project-info {
          padding: 28px 20px;
        }

        .projects-cta {
          flex-direction: column;
          align-items: stretch;
          text-align: center;
        }

        .projects-cta p {
          font-size: 22px;
        }

        .projects-cta .btn {
          width: 100%;
        }
      }

      .whatsapp-chat {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 99999;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 100px;
        padding: 10px;
        background: transparent;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .whatsapp-chat img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }

      .whatsapp-chat:hover,
      .whatsapp-chat:focus {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      }

      @media (max-width: 768px) {
        .whatsapp-chat {
          right: 16px;
          bottom: 16px;
          width: 120px;
          height: 120px;
        }
      }

      .home-about-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(135deg, transparent 0 48%, rgba(17, 104, 177, 0.08) 48% 49%, transparent 49% 100%);
        pointer-events: none;
      }

      .about-brand-panel {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 11%;
        min-width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background:
          linear-gradient(rgba(6, 68, 126, 0.78), rgba(4, 56, 105, 0.9)),
          url('../images/bg_cover_img.jpg') center center / cover no-repeat;
        clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
        z-index: 1;
      }

      .about-brand-logo {
        width: 96px;
        max-width: 68%;
        height: auto;
      }

      .about-container {
        position: relative;
        z-index: 2;
        width: 96%;
        max-width: 1500px;
        padding-left: max(15px, 5%);
        padding-right: 28px;
      }

      .about-layout {
        display: flex;
        align-items: stretch;
      }

      .about-copy {
        padding-right: 44px;
      }

      .about-title {
        position: relative;
        margin: 0 0 30px;
        color: #111b35;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 58px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
      }

      .about-title span {
        color: #0b63ad;
      }

      .about-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -18px;
        width: 92px;
        height: 5px;
        background: #0b77bd;
      }

      .about-intro {
        max-width: 720px;
        margin: 0 0 28px;
        color: #182033;
        font-size: 20px;
        line-height: 1.45;
      }

      .about-subhead {
        display: flex;
        align-items: center;
        gap: 18px;
        margin: 22px 0 14px;
      }

      .about-subhead-icon {
        width: 64px;
        height: 64px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #0b77bd;
        color: #ffffff;
        font-size: 32px;
        line-height: 1;
      }

      .about-subhead h3 {
        position: relative;
        margin: 0;
        color: #141d34;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
      }

      .about-subhead h3::after {
        content: "";
        display: inline-block;
        width: 92px;
        height: 2px;
        margin-left: 16px;
        vertical-align: middle;
        background: #0b77bd;
      }

      .about-list {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .about-list li {
        position: relative;
        padding: 12px 0 12px 42px;
        border-bottom: 1px dashed #c7ccd4;
        color: #182033;
        font-size: 20px;
        line-height: 1.4;
      }

      .about-list li::before {
        content: "\2713";
        position: absolute;
        left: 8px;
        top: 14px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #0b63ad;
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
      }

      .about-media {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .about-profile {
        position: relative;
        overflow: hidden;
        min-height: 400px;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(15, 39, 68, 0.18);
        transform: skewX(-8deg);
      }

      .about-profile::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 8px;
        height: 20%;
        background: #0b77bd;
        z-index: 2;
      }

      .about-profile-image {
        width: 118%;
        height: 400px;
        margin-left: -9%;
        display: block;
        object-fit: cover;
        object-position: center top;
        transform: skewX(8deg);
      }

      .about-profile-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 28px 14px 54px;
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transform: skewX(8deg);
        transform-origin: left bottom;
      }

      .about-person-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #0b63ad;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
      }

      .about-role {
        color: #0b63ad;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1;
      }

      .about-name {
        margin-top: 6px;
        color: #172035;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 19px;
        font-weight: 700;
        line-height: 1.1;
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 4px;
        padding: 14px 18px;
        background: linear-gradient(135deg, #0a6caf, #1288ca);
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(15, 39, 68, 0.18);
      }

      .about-stat {
        min-width: 0;
        padding: 0 14px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.35);
      }

      .about-stat:last-child {
        border-right: 0;
      }

      .about-stat-icon {
        min-height: 34px;
        margin-bottom: 5px;
        font-size: 25px;
        line-height: 1;
      }

      .about-stat strong {
        display: block;
        font-family: 'AvenirHeavy', sans-serif;
        font-size: 19px;
        line-height: 1;
      }

      .about-stat span {
        display: block;
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.25;
      }

      @media (max-width: 1199px) {
        .about-brand-panel {
          width: 9%;
          min-width: 96px;
        }

        .about-container {
          padding-left: max(15px, 4%);
        }

        .about-title {
          font-size: 48px;
        }
      }

      @media (max-width: 991px) {
        .home-about-section {
          padding-top: 52px;
        }

        .about-brand-panel {
          display: none;
        }

        .about-container {
          padding-left: 15px;
        }

        .about-layout {
          display: block;
        }

        .about-copy {
          padding-right: 15px;
          margin-bottom: 32px;
        }

        .about-profile {
          transform: none;
        }

        .about-profile-image,
        .about-profile-caption {
          transform: none;
        }
      }

      @media (max-width: 768px) {
        .about-title {
          font-size: 40px;
        }

        .about-intro {
          font-size: 20px;
        }

        .about-subhead {
          gap: 12px;
        }

        .about-subhead-icon {
          width: 52px;
          height: 52px;
          font-size: 26px;
        }

        .about-subhead h3 {
          font-size: 24px;
        }

        .about-subhead h3::after {
          width: 44px;
          margin-left: 10px;
        }

        .about-profile {
          min-height: 340px;
        }

        .about-profile-image {
          height: 340px;
          margin-left: 0;
          width: 100%;
        }

        .about-profile-caption {
          padding: 14px 18px;
        }

        .about-stats {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 22px;
        }

        .about-stat:nth-child(2) {
          border-right: 0;
        }
      }

      @media (max-width: 480px) {
        .about-stats {
          grid-template-columns: 1fr;
        }

        .about-stat {
          padding: 16px 0;
          border-right: 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        }

        .about-stat:last-child {
          border-bottom: 0;
        }
      }
.count-label{
  font-size: 22px;
  font-weight: bold;
}
.footer{
  background: #f5f5f5;
  text-align: center;
  border-top:1px solid #ddd;
  font-size: 13px;
}
