/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Template: twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.4.1771363953
Updated: 2026-02-17 22:32:33

*/

/* ============================================
   CSS RESET & BASE
   ============================================ */

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/Graphik-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/Graphik-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/Graphik-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

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

:root {
  /* Colors */
  --color-navy: #1a2b4a;
  --color-red: #c41e3a;
  --color-gray: #4a5568;
  --color-gray-light: #718096;
  --color-gray-lighter: #e2e8f0;
  --color-white: #ffffff;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 2rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-family: "Graphik", sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

button {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ============================================
     UTILITY CLASSES
     ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.section-intro {
  font-size: var(--font-size-lg);
  color: var(--color-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* ============================================
     BUTTONS
     ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #a01a2e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

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

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
}

.link-arrow {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-red);
  transition: color var(--transition);
}

.link-arrow:hover {
  color: #a01a2e;
}

/* ============================================
     HEADER / NAV
     ============================================ */

/* Header wrap: absolute so logo/hamburger/nav keep their place over hero */
.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 80px;
  pointer-events: none;
}

body.admin-bar .site-header--absolute {
  top: 32px;
}

.site-header--absolute .logo-image-wrapper,
.site-header--absolute .hamburger,
.site-header--absolute .nav {
  pointer-events: auto;
}

.header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: var(--header-height);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-navy);
  border-radius: 50%;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-navy);
  border-radius: 2px;
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xxl);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  overflow-y: auto;
  display: flex;
  gap: var(--spacing-md);
}

.nav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-link {
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--font-size-2xl);
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: color var(--transition);
  text-decoration: none;
  display: block;
  margin-bottom: var(--spacing-sm);
}

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

.nav-link::after {
  display: none;
}

.nav .btn {
  margin-top: var(--spacing-md);
  width: 100%;
  max-width: 400px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  position: absolute;
  top: var(--spacing-xl);
  left: var(--spacing-xl);
  z-index: 10001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-navy);
  transition: all var(--transition);
  display: block;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px) translateX(2px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px) translateX(2px);
}

/* ============================================
     HERO SECTION
     ============================================ */

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: relative;
}

.hero-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  position: relative;
  min-height: 100vh;
}

.hero-text {
  background-color: var(--color-white);
  padding: var(--spacing-xxl) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  overflow: hidden;
}

.hero-text h1 .reveal-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-text h1 .reveal-text:nth-of-type(1) {
  animation-delay: 0.4s;
}

.hero-text h1 .reveal-text:nth-of-type(2) {
  animation-delay: 0.8s;
  color: var(--color-red);
}

.hero-text h1 .reveal-text:nth-of-type(3) {
  animation-delay: 1.2s;
}

@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheading {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  margin-top: var(--spacing-lg);
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-link-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-red);
  transition: width 0.3s ease;
}

.hero-link:hover .hero-link-line {
  width: 60px;
}

.hero-link-text {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color var(--transition);
}

.hero-link-text:hover {
  color: var(--color-red);
}

.hero-image {
  position: relative;
  background-color: #f5f5f5;
  padding: var(--spacing-xxl) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--spacing-sm);
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.hero-image-slider-item-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

.hero-image-slider-item-1 .grid-box {
  position: relative;
  height: 200px;
  width: 200px;
  overflow: hidden;
  background-size: 97% !important;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-slider-item-1 .box-1 {
  background-image: url("images/slide1.png");
  opacity: 0;
  transform: translateX(100%);
  animation: slideLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.hero-image-slider-item-1 .box-2 {
  background-image: url("images/slide2.jpg");
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.hero-image-slider-item-1 .box-3 {
  background-image: url("images/slide3.png");
  opacity: 0;
  transform: translateY(-100%);
  animation: slideDown 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.hero-image-slider-item-1 .box-4 {
  background-image: url("images/slide4.png");
  opacity: 0;
  transform: translateX(-100%);
  animation: slideRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.sandbox {
  transform: scale(1.25);
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-box {
  position: relative;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}

.hero-pagination {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  font-size: var(--font-size-sm);
  color: var(--color-navy);
  font-weight: 600;
}

.pagination-number {
  position: relative;
  cursor: pointer;
  transition: color var(--transition);
  pointer-events: none;
}

.pagination-number.active {
  color: var(--color-navy);
}

.pagination-number.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-red);
}

.logo-image-wrapper {
  position: absolute;
  top: 2vw;
  right: 5vw;
}

.for-mobile {
  display: none;
}

.hero-sliders {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 770px;
  position: relative;
}

.slider-1,
.slider-2 {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  visibility: visible;
}

.slider-1 .swiper-wrapper,
.slider-2 .swiper-wrapper {
  height: 100%;
}

.slider-1 .swiper-slide,
.slider-2 .swiper-slide {
  width: 250px !important;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-1 .slide-1 {
  background-image: url("images/square.svg");
}

.slider-1 .slide-2 {
  background-image: url("images/start7.jpg");
}

.slider-1 .slide-3 {
  background-image: url("images/pattern_start_a.svg");
}

.slider-1 .slide-4 {
  background-image: url("images/start2.png");
}

.slider-1 .slide-5 {
  background-image: url("images/shape1.svg");
}

.slider-1 .slide-6 {
  background-image: url("images/start1.jpg");
}

.slider-2 .slide-1 {
  background-image: url("images/start3.jpg");
}

.slider-2 .slide-2 {
  background-image: url("images/pattern_start_b.svg");
}

.slider-2 .slide-3 {
  background-image: url("images/start5.jpg");
}

.slider-2 .slide-4 {
  background-image: url("images/start6.jpg");
}

.custom-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: var(--spacing-md);
  margin-right: auto;
  padding-left: 25px;
}

.pagination-numbers {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.pagination-number {
  background: none;
  border: none;
  font-size: var(--font-size-base);
  font-weight: 300;
  color: var(--color-gray);
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  font-family: var(--font-family);
}

.pagination-number:hover {
  color: var(--color-navy);
}

.pagination-number.active {
  color: var(--color-navy);
  font-weight: 600;
}

.pagination-number.active::after {
  display: none;
}

.pagination-progress {
  width: 100%;
  max-width: 220px;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.progress-active {
  height: 100%;
  background-color: var(--color-red);
  transition: width 0.5s ease;
  width: 25%;
  position: absolute;
  left: 0;
  top: 0;
}

.progress-active[data-progress="1"] {
  width: 25%;
}

.progress-active[data-progress="2"] {
  width: 50%;
}

.progress-active[data-progress="3"] {
  width: 75%;
}

.progress-active[data-progress="4"] {
  width: 100%;
}

.hero-years {
  position: absolute;
  bottom: 2vw;
  right: 5vw;
  z-index: 10;
}

.years-image {
  max-width: 250px;
  height: auto;
}

/* ============================================
     CUSTOM SOLUTIONS SECTION
     ============================================ */

.custom-solutions {
  padding: var(--spacing-xxl) 0 30px;
  background-color: var(--color-white);
}

.solutions-content {
  display: grid;
  grid-template-columns: 15% 50% auto;
  gap: var(--spacing-xl);
  align-items: center;
  margin: 0 auto;
}

.solutions-image-col {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.solutions-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-image: url("images/pattern_start_a.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.solutions-text-col {
  padding: 0 var(--spacing-md);
}

.solutions-header {
  font-size: 54px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.solutions-text {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.7;
}

.solutions-button-col {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.product-showcase {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 60px 0;
}

.product-showcase::before,
.product-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.product-showcase::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
}

.product-showcase::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
}

.product-showcase-slider {
  width: 100%;
  padding: var(--spacing-md) 0;
}

.product-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  width: 300px;
  flex-shrink: 0;
}

.product-image {
  width: 100%;
  height: 320px;
  /* border: 1px solid var(--color-navy); */
  overflow: hidden;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.product-slide:hover .product-image {
  transform: translateY(-8px);
}

.placeholder-product {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: center;
}

.product-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
  margin: 0;
  max-width: 300px;
}

/* ============================================
     ABOUT SECTION
     ============================================ */

section.about-image {
  align-items: center;
  display: flex;
  margin-top: 54px;
}

section.about-image h2 {
  font-size: 54px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
  overflow: hidden;
}

section.about-image .left-col {
  width: 50%;
  padding-left: 20px;
}

section.about-image .left-col video {
  max-width: 100%;
}

section.about-image .right-col {
  width: 50%;
  padding: 80px;
}

section.about-image .right-col-content {
  max-width: 600px;
}

section.about-image .right-col-content {
  max-width: 600px;
}

.right-col-text {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.5;
}

.about-cards {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.about-cards .left-col {
  width: 60%;
  display: flex;
  justify-content: center;
}

.about-cards .right-col {
  width: 40%;
}

.cards-section-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
}

.usp-cards {
  display: flex;
  align-items: center;
  padding: 5vw 5vw;
}

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

.usp-card {
  background-color: #f5f5f5;
  border-radius: revert-layer;
  padding: 60px 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-icon {
  height: 48px;
  width: 48px;
  background-size: cover !important;
  margin-bottom: 20px;
}

.card-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.25;
  margin-bottom: 16px;
  font-size: 32px;
}

h4.card-title::after {
  content: "";
  height: 3px;
  width: 80px;
  background: #c41e3a;
  display: block;
  margin-top: 16px;
  display: none;
}

.usp-card p {
  font-size: 16px;
}

.trust-elements {
  margin-top: var(--spacing-lg);
}

.trust-badges-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.trust-badge {
  background-color: var(--color-gray-lighter);
  border-left: 3px solid var(--color-red);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
}

.badge-text {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.6;
}

.about {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  position: relative;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.about-text p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-gray);
}

.usp-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.usp-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--color-gray);
}

.usp-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.badge {
  padding: 9px 16px 7px 16px;
  background-color: #1a2b4a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
     Trusted by Section
     ============================================ */
.trusted-by {
  padding: 80px 20px 0;
}

/* ============================================
     WHY SECTION
     ============================================ */

.why-section {
  align-items: flex-start;
  display: flex;
  margin-top: 80px;
  background-image: url(images/pattern1.jpg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 420px;
}

.why-section-content {
  width: 100%;
  padding: 80px var(--spacing-xl) 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xxl);
  align-items: start;
}

.why-section-left {
  width: 100%;
}

.why-section-title {
  font-size: 54px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 40px;
  line-height: 1.2;
}

.product-grid-container {
  width: 100%;
}

.why-section-right {
  width: 100%;
  max-width: 500px;
}

.why-section-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
     PRODUCTS SECTION
     ============================================ */

.products {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.product-grid .product-image {
  height: 250px;
}

.product-card {
  background-color: #fff;
  padding: 50px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid #1a2b4a;
  backdrop-filter: blur(10px);
}

/* .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  } */

.product-card h3 {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid #c41e3b;
  padding-bottom: 10px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.product-card p {
  color: var(--color-gray);
  line-height: 1.6;
  font-size: 18px;
}

.products-footer {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* ============================================
     BENEFITS
     ============================================ */

section.product-showcase-cards {
  display: flex;
}

.product-showcase-cards .left-col {
  width: 35%;
}

.product-showcase-cards .right-col {
  width: 65%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}

.product-showcase-cards .usp-cards {
  padding: 0 5vw;
}

.product-showcase-cards .hero-link {
  padding: 2vw 5vw 0;
}

.product-showcase-cards .hero-link a {
  font-size: 24px;
}

.product-showcase-cards .card-icon {
  width: 30px;
  height: 30px;
}

/* ============================================
     WHY SECTION
     ============================================ */

.why {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.why-card {
  padding: var(--spacing-lg);
  background-color: var(--color-white);
  border-left: 4px solid var(--color-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-card h3 {
  font-size: var(--font-size-xl);
  color: var(--color-navy);
  margin-bottom: var(--spacing-sm);
}

.why-card p {
  color: var(--color-gray);
  line-height: 1.7;
}

/* ============================================
     TESTIMONIALS SECTION
     ============================================ */

.testimonials {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-navy);
  padding: 5vw;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
  padding: 0 0 80px;
  border-bottom: 1px solid var(--color-gray-lighter);
}

.logo-placeholder {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-gray-lighter);
  color: var(--color-gray-light);
  font-size: var(--font-size-sm);
  border-radius: 4px;
  min-width: 120px;
  text-align: center;
}

.testimonial-container {
  position: relative;
  min-height: 200px;
  margin-bottom: var(--spacing-md);
}

.testimonial {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials h2 {
  color: #fff;
}
.testimonial blockquote {
  font-size: var(--font-size-xl);
  color: #fff;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  font-style: normal;
  color: #fff;
}

.testimonial cite strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-light);
  background-color: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

/* ============================================
     FAQ SECTION
     ============================================ */

.faq {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  background-image: url(images/pattern1.jpg), url(images/pattern2.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position:
    bottom left,
    top right;
  background-size: 320px, 420px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-lighter);
  margin-bottom: var(--spacing-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-red);
}

.faq-icon {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  color: var(--color-red);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--spacing-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition),
    padding var(--transition);
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--spacing-md);
}

.faq-answer p {
  color: var(--color-gray);
  line-height: 1.7;
  padding-top: var(--spacing-sm);
}

/* ============================================
     CONTACT SECTION
     ============================================ */

.contact {
  padding: var(--spacing-xxl) 0;
  background-color: #e2e8f0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact .section-title {
  font-size: 48px;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--color-gray-lighter);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-gray);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
}

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

.form-message {
  margin-top: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: 4px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info {
  padding: var(--spacing-lg);
  background-color: var(--color-gray-lighter);
  background: #fff;
}

.contact-info h3 {
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
}

.contact-info > p {
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.contact-details {
  margin: var(--spacing-lg) 0;
}

.contact-details p:first-of-type {
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray);
}

.contact-details a {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: underline;
}

.contact-details a:hover {
  color: #a01a2e;
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

/* ============================================
     FOOTER
     ============================================ */

.footer {
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  background-color: var(--color-white);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  max-width: 180px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-navy);
  border-radius: 50%;
  position: relative;
}

.footer-logo .logo-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-navy);
  border-radius: 2px;
}

.footer-logo .logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-nav-link {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-link:hover {
  color: var(--color-red);
}

.footer-section-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
}

.footer-address {
  display: flex;
  flex-direction: column;
}

.footer-address-line {
  font-size: var(--font-size-base);
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-line {
  font-size: var(--font-size-base);
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

.footer-contact-line a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-line a:hover {
  color: var(--color-red);
}

.footer-separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-lighter);
  margin: var(--spacing-lg) 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-copyright-text {
  font-size: var(--font-size-sm);
  color: var(--color-navy);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: var(--font-size-sm);
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--color-red);
}

.footer-languages {
  display: flex;
  gap: var(--spacing-md);
}

.footer-language-link {
  font-size: var(--font-size-sm);
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-language-link:hover {
  color: var(--color-red);
}

section.error-404.not-found {
  min-height: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fcfcfc;
  text-align: center;
}

/* ============================================
     RESPONSIVE DESIGN
     ============================================ */
@media (max-width: 1500px) {
  .product-card {
    padding: 32px;
  }
  .product-card h3 {
    font-size: 24px;
  }
  .product-card p {
    font-size: 16px;
  }

  .years-image {
    max-width: 150px;
    height: auto;
  }

  .logo-image-wrapper {
    max-width: 240px;
  }

  .hero-text h1 {
    font-size: 54px;
  }
}

@media (max-width: 980px) {
  .logo-image-wrapper {
    position: relative;
    right: 0;
    top: 0;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-sliders {
    max-width: 400px;
  }

  .hero-text {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .hero-image {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .solutions-image-col {
    min-height: 200px;
    order: -1;
  }

  .solutions-button-col {
    justify-content: flex-start;
  }

  section.about-image {
    flex-direction: column;
  }

  section.about-image .right-col-content {
    max-width: 100%;
  }
  section.about-image .left-col {
    width: 100%;
    padding: 0;
  }

  section.about-image .right-col {
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-md);
  }

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

  .why-section {
    flex-direction: column;
    margin-top: 60px;
  }

  .why-section-content {
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-md);
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .why-section-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-xl);
  }

  .why-section-right {
    max-width: 100%;
    order: -1;
  }

  .product-grid-container .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-years {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--spacing-lg);
  }

  .years-image {
    max-width: 200px;
  }

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

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

@media (max-width: 767px) {
  .for-mobile {
    display: block;
  }

  .for-desktop {
    display: none;
  }
  
  .product-image {
    height: 240px;
   }
  
  .product-showcase::before, .product-showcase::after {
    width: 40px;
}
  
  section.about-image h2,
.solutions-header,
.contact .section-title {
    font-size: 40px;
}

.usp-card {
    padding: 40px 30px;
}
  
  .logo-image-wrapper.for-mobile a {
  	text-align: right;
     width: 100%;
        display: block;
    }

    button#hamburger {
        left: 24px;
        top: 43px;
    }  
  
  .logo-image-wrapper.for-mobile img {
    max-width: 240px;
    display: inline-block;
  }


  :root {
    --spacing-xxl: 4rem;
    --spacing-xl: 3rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }

  .logo-image-wrapper.for-mobile {
    padding: 40px 20px 0;
    margin: 0;
  }

  .about-cards {
    flex-direction: column-reverse;
  }

  section.product-showcase-cards,
  .hero-ctas {
    flex-direction: column;
  }

  .solutions-image {
    min-height: 100vw;
  }

  .product-showcase-cards .left-col,
  .product-showcase-cards .right-col,
  .about-cards .left-col {
    width: 100%;
  }
  .about-cards .right-col {
    width: 100%;
    margin-bottom: 40px;
  }

  .product-showcase-cards .left-col {
    margin-bottom: 40px;
  }
  .about-cards .usp-cards {
    padding: 0 20px;
  }
  .about-cards .usp-cards .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-link::after {
    display: none;
  }

  .hero-text {
    padding: 120px 32px 64px;
  }

  .hero-image {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .years-image {
    max-width: 120px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-languages {
    align-self: flex-start;
    gap: 10px;
  }

  .footer-legal-links {
    gap: 10px;
  }

  .faq-question {
    line-height: 1.2;
  }

  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-showcase {
    margin-top: 40px;
  }

  .slider-1 .swiper-slide,
  .slider-2 .swiper-slide {
    width: 125px !important;
    height: 125px;
  }

  .slider-1,
  .slider-2 {
    height: 125px;
  }

  .custom-pagination {
    padding-left: 0;
  }

  .hero-years.for-mobile {
    margin-bottom: 40px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
      button#hamburger {
        left: 16px;
        top: 38px;
    }
  
      .logo-image-wrapper.for-mobile img {
        max-width: 180px;
    }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-subheading {
    margin: 0;
  }

  .trust-badges {
    flex-direction: column;
  }

  .badge {
    width: 100%;
    text-align: center;
  }

  .contact-ctas .btn {
    width: 100%;
  }

  .contact-info {
    padding: 40px 30px;
  }
}

/*Fixes*/

section#testimonials {
	display: none;
}