@charset "UTF-8";
@font-face {
  font-family: AvenirR;
  src: url(../Fonts/AvenirRegular.ttf) format('truetype');
}

@font-face {
  font-family: AvenirB;
  src: url(../Fonts/AvenirBlack.ttf) format('truetype');
}

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  /*
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Archivo Black",  sans-serif;
  --nav-font: "Courier New",  sans-serif;
  */
  --default-font: "AvenirR",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "AvenirB",  sans-serif;
  --nav-font:

}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #282827; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #005494; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f48134; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #fdbd2c; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #282827;  /* The default color of the main navmenu links */
  --nav-hover-color: #f48134; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #2a8046; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #282827; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f48134; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2f3942;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #445360;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #f48134;
  --accent-color: #ffffff;
  --nav-hover-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #005494;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f48134;
  --surface-color: #f9f9f9;
  --contrast-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 81px;
  overflow: clip;

  background-image: url('../img/SacomBackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  padding-top: 80px;
  position: relative;
  overflow: visible;
  padding-bottom: 200px;

  
}

.hero-4 .hero-content {
  position: relative;
  z-index: 2;
}

.hero-4 .hero-content .hero-text {
  padding-right: 20px;
}

.hero-4 .hero-content .hero-text .season-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-4 .hero-content .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-4 .hero-content .hero-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-4 .hero-content .hero-text .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge,
.hero-4 .hero-content .hero-text .hero-badges .shipping-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  color: var(--heading-color);
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge:before {
  content: "\f242";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}

.hero-4 .hero-content .hero-text .hero-badges .shipping-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.hero-4 .hero-content .hero-text .hero-badges .shipping-badge:before {
  content: "\f416";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}

.hero-4 .hero-content .hero-text .hero-actions {
  gap: 15px;
  align-items: center;
  /*-----Bouttons------*/
}

.hero-4 .hero-content .hero-text .hero-actions .cta-buttons {
  display: flex;
  gap: 15px;
  font-weight: 0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-primary {
  background-color: color-mix(in srgb, #2a8046, transparent 10%);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  background-color: var(--accent-color);
}

.hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-secondary {
  background-color: #005494;
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-4 .hero-content .hero-text .hero-actions .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-primary,
  .hero-4 .hero-content .hero-text .hero-actions .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer p {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown {
  display: flex;
  gap: 15px;
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div {
  background-color: #f48134;
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 70px;
  text-align: center;
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div h4 {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div {
    min-width: 50px;
    padding: 8px 10px;
  }

  .hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div h3 {
    font-size: 18px;
  }

  .hero-4 .hero-content .hero-text .hero-actions .countdown-timer .countdown div h4 {
    font-size: 10px;
  }
}

.hero-4 .hero-content .hero-text .hero-actions .cta-gbuttons:hover .countdown div {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-4 .hero-content .hero-text .hero-actions .cta-gbuttons .countdown {
  display: flex;
  gap: 15px;
}

.hero-4 .hero-content .hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-content .hero-image img {
  position: relative;
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
}

.hero-4 .hero-content .hero-image .image-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 100%;
  z-index: 1;
}

.hero-4 .hero-content .hero-image .floating-badge {
  position: absolute;
  bottom: -254px;
  left: 53px;
  /*box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);*/
  min-width: 50px;
  max-width: 208px;
}

.hero-4 .hero-content .hero-image .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: #2ecc71;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.hero-4 .hero-content .hero-image .floating-badge .badge-text span {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  display: block;
  line-height: 1;
}

.hero-4 .hero-content .hero-image .floating-badge .badge-text small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 992px) {
  .hero-4 {
    padding: 60px 0;
  }

  .hero-4 .hero-text {
    padding-right: 0;
    text-align: center;
    margin-top: 40px;
  }

  .hero-4 .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-4 .hero-text .hero-badges {
    justify-content: center;
  }

  .hero-4 .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-4 .hero-image {
    margin-bottom: 40px;
  }

  .hero-4 .hero-image img {
    max-height: 450px;
  }

  .hero-4 .hero-image .floating-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-4 {
    padding: 50px 0;
  }

  .hero-4 .hero-text h1 {
    font-size: 2rem;
  }

  .hero-4 .hero-text p {
    font-size: 1rem;
  }

  .hero-4 .hero-text .hero-actions {
    flex-direction: column;
  }

  .hero-4 .hero-text .hero-actions .btn {
    width: 100%;
  }

  .hero-4 .hero-image img {
    max-height: 350px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  /*-------*/
}

.about .content {
  background-color: #f48134;
  border-top-right-radius: 5%;
  border-bottom-left-radius: 5%;
  padding: 25px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #ffffff;
}

.about .content .ligne-custom {
  border: none;
  /* Supprime le style par défaut */
  height: 2px;
  /* Épaisseur */
  background-color: #ffffff;
  /* Couleur (ex: orange SACOM) */
  width: 100%;
  /* Largeur */
}

.about .content p {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: justify;
}

.about .content li {
  color: #ffffff;
  padding-left: 20px;
  font-weight: 600;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .content-wrapper {
  padding-left: 5%;
}

.about .content-wrapper h3 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 24px;
  margin-top: 15%;
}

.about .content-wrapper .stats-grid .bg-bleu {
  background-color: #005494;
}

.about .content-wrapper .stats-grid .bg-vert {
  background-color: #2a8046;
}

.about .content-wrapper .stats-grid .bg-orange {
  background-color: #f48134;
}

.about .content-wrapper .stats-grid .stat-box {
  text-align: center;
  padding: 24px 16px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about .content-wrapper .stats-grid .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about .content-wrapper .stats-grid .stat-box .purecounter {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
}

.about .content-wrapper .stats-grid .stat-box .suffix {
  font-size: 50px;
  font-weight: 900;
  color: #ffffff;
}

.about .content-wrapper .stats-grid .stat-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin: 8px 0 0 0;
}

/*--------------------------------------------------------------
# Why Us 2 Section
--------------------------------------------------------------*/
.why-us-2 {
  position: relative;
  overflow: hidden;
  padding-top: 0px;
  margin-top: 0px;
}

.why-us-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us-2 .container {
  position: relative;
  z-index: 1;
}

.why-us-2 .image-showcase {
  position: relative;
}

.why-us-2 .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  
}

.why-us-2 .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/*-----------------VIDEO-----------------------*/
/* #video {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
} */

#video video {
  border-radius: 15px;
  width: 600px;
  height: auto;
  object-fit: fill;
  transition: .6s;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.why-us-2 .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us-2 .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us-2 .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us-2 .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us-2 .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us-2 .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us-2 .image-showcase .floating-stats {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us-2 .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.why-us-2 .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us-2 .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us-2 .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us-2 .image-showcase .experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

.why-us-2 .image-showcase .experience-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-2 .image-showcase .experience-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us-2 .image-showcase .experience-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us-2 .image-showcase .experience-card .card-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us-2 .content-wrapper {
  padding-left: 2rem;
}

.why-us-2 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us-2 .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us-2 .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-us-2 .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.why-us-2 .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us-2 .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us-2 .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-2 .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us-2 .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-us-2 .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us-2 .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us-2 .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us-2 .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.why-us-2 .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us-2 .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us-2 .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us-2 .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us-2 .content-wrapper .action-buttons .btn.btn-primary {
  background-color: #f48134;
  border: none;
  color: var(--contrast-color);
}

.why-us-2 .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #2a8046;
}

.why-us-2 .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.why-us-2 .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us-2 {
    padding: 80px 0;
  }

  .why-us-2 .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us-2 .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us-2 .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-2 .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us-2 .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us-2 .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us-2 .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us-2 .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us-2 .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-us-2 {
    padding: 60px 0;
  }

  .why-us-2 .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us-2 .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us-2 .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us-2 .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us-2 .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .bg-orange {
  background-color: #f48134;
  color: #ffffff;
}

.services-4 .bg-jaune {
  background-color: #fdbd2c;
  color: #ffffff;
}

.services-4 .bg-vert {
  background-color: #2a8046;
  color: #ffffff;
}

.services-4 .bg-bleu {
  background-color: #005494;
  color: #ffffff;
}

.services-4 .offering-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  min-height: 420px;
}

.services-4 .offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-4 .offering-card:hover .card-top img {
  transform: scale(1.08);
}

.services-4 .offering-card:hover .card-top .icon-badge {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.services-4 .offering-card:hover .explore-link {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.services-4 .offering-card:hover .explore-link i {
  transform: translateX(4px);
}

.services-4 .card-top {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.services-4 .card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services-4 .card-top .icon-badge {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: background-color 0.3s ease;
  z-index: 2;
}

.services-4 .card-top .icon-badge i {
  font-size: 20px;
  color: var(--contrast-color);
}

.services-4 .card-body-content {
  padding: 35px 24px 28px;
  position: relative;
}

.services-4 .card-body-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.services-4 .card-body-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.services-4 .highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.services-4 .highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}

.services-4 .highlights li:last-child {
  border-bottom: none;
}

.services-4 .highlights li i {
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
}

.services-4 .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-4 .explore-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-4 .bottom-banner {
  margin-top: 60px;
  background: #f48134;
  border-radius: 16px;
  padding: 40px 40px;
  color: var(--contrast-color);
}

.services-4 .bottom-banner h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.services-4 .bottom-banner p {
  font-size: 15px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
}

.services-4 .banner-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.services-4 .banner-actions .action-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
}

.services-4 .banner-actions .action-primary:hover {
  background-color: transparent;
  color: var(--contrast-color);
}

.services-4 .banner-actions .action-outline {
  background-color: transparent;
  color: var(--contrast-color);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services-4 .banner-actions .action-outline:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services-4 .bottom-banner {
    text-align: center;
    padding: 30px 25px;
  }

  .services-4 .bottom-banner h4 {
    font-size: 20px;
  }

  .services-4 .bottom-banner p {
    margin-bottom: 20px;
  }

  .services-4 .banner-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-4 .card-top {
    height: 160px;
  }

  .services-4 .card-body-content {
    padding: 30px 20px 24px;
  }

  .services-4 .card-body-content h3 {
    font-size: 18px;
  }

  .services-4 .banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .services-4 .banner-actions .action-primary,
  .services-4 .banner-actions .action-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
  padding-top: 60px;
  padding-bottom: 0px;
}

.services-3 .bg-container {
  background-color: #005494;
  height: 1000px;
}

.services-3 .bg-container .container {
  position: relative;
  background: #F58234;
  top: -300px;
  overflow: visible;
}

.services-3 .service-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  flex-direction: column;
}

.services-3 .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-3 .service-card.active {
  border-color: var(--accent-color);
  position: relative;
}

.services-3 .service-card.active::after {
  content: "Popular";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}

.services-3 .service-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 25px;
  font-size: 28px;
}

.services-3 .service-card .content h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.services-3 .service-card .content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}

.services-3 .service-card .content .ligne-custom {
  border: none;
  /* Supprime le style par défaut */
  height: 2px;
  /* Épaisseur */
  background-color: #ffffff;
  /* Couleur (ex: orange SACOM) */
  width: 100%;
  /* Largeur */
}

.services-3 .service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-3 .service-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

.services-3 .service-card .feature-list li i {
  color: #ffffff;
  font-size: 16px;
}

.services-3 .service-card .btn-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
}

.services-3 .service-card .btn-link i {
  transition: transform 0.3s ease;
}

.services-3 .service-card .btn-link:hover i {
  transform: translateX(5px);
}

.services-3 .ui-preview-wrapper {
  position: relative;
  background-color: #ffffff;
  /*
  img {
    border: 8px solid var(--surface-color);
  }*/
}

.services-3 .ui-preview-wrapper .floating-badge {
  position: absolute;
  top: -90px;
  left: 30px;
  /*box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);*/
  min-width: 100px;
  max-width: 180px;
}

.services-3 .ui-preview-wrapper .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: #2ecc71;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.services-3 .ui-preview-wrapper .floating-badge .badge-text span {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  display: block;
  line-height: 1;
}

.services-3 .ui-preview-wrapper .floating-badge .badge-text small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.services-3 .cta-content {
  width: 100%;
  background-color: #0ce7b1;
}

.services-3 .cta-content .section-subtitle {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-3 .cta-content p {
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services-3 .cta-content .btn {
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.services-3 .cta-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .cta-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.services-3 .cta-content .btn-outline {
  color: #ffffff;
}

.services-3 .btn-l {
  width: 200px;
  left: -30px;
}

.services-3 .btn-orange {
  background-color: #f48134;
  color: #ffffff;
}

.services-3 .btn-jaune {
  background-color: #fdbd2c;
  color: #ffffff;
}

.services-3 .btn-vert {
  background-color: #2a8046;
  color: #ffffff;
}

.services-3 .btn-bleu {
  background-color: #005494;
}

.services-3 .heross-actions {
  gap: 15px;
  /*-----Bouttons------*/
}

.services-3 .heross-actions .cta-buttons {
  display: flex;
  gap: 15px;
  font-weight: 0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.services-3 .heross-actions .cta-buttons .btn-primary {
  background-color: color-mix(in srgb, #2a8046, transparent 10%);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.services-3 .heross-actions .cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  background-color: var(--accent-color);
}

.services-3 .heross-actions .cta-buttons .btn-secondary {
  background-color: #005494;
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.services-3 .heross-actions .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-3 .heross-actions .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-3 .heross-actions .cta-buttons .btn-primary,
  .services-3 .heross-actions .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.services-3 .heross-actions .countdown-timer {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.services-3 .heross-actions .countdown-timer p {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.services-3 .heross-actions .countdown-timer .countdown {
  display: flex;
  gap: 15px;
}

.services-3 .heross-actions .countdown-timer .countdown div {
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 70px;
  text-align: center;
}

.services-3 .heross-actions .countdown-timer .countdown div h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.services-3 .heross-actions .countdown-timer .countdown div h4 {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .services-3 .heross-actions .countdown-timer .countdown div {
    min-width: 50px;
    padding: 8px 10px;
  }

  .services-3 .heross-actions .countdown-timer .countdown div h3 {
    font-size: 18px;
  }

  .services-3 .heross-actions .countdown-timer .countdown div h4 {
    font-size: 10px;
  }
}

.services-3 .heross-actions .cta-gbuttons:hover .countdown div {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-3 .heross-actions .cta-gbuttons .countdown {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .services-3 .ui-preview-wrapper {
    margin-bottom: 50px;
  }

  .services-3 .ui-preview-wrapper .floating-badge {
    right: 20px;
  }

  .services-3 .cta-content {
    text-align: center;
  }

  .services-3 .cta-content .d-flex {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --card-radius: 14px;
  --card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --card-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  --hover-shadow: 0 16px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  --featured-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  --icon-bg: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding-top: 0px;
  margin-top: 210px;
  padding-bottom: 0px;
  overflow: visible;
  background: #005596;

  
}

.services .service-grid {
  /*
  .service-card {
    padding: 22px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;

    .link-plain {
      color: var(--accent-color);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;

      i {
        transition: transform 0.3s ease;
      }

      &:hover i {
        transform: translateX(2px);
      }
    }
  }*/
}

.services .service-grid .card-div {
  margin-top: 0px;
}

.services .service-grid .featured-card,
.services .service-grid .service-card {
  background: #2B8247;
  color: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  min-height: 230px;
  padding: 20px;
  /*
  .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-bg);
    color: var(--accent-color);
    font-size: 22px;
    flex: 0 0 auto;
  }*/
}

.services .service-grid .featured-card .content,
.services .service-grid .service-card .content {
  /*
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--accent-color);
  font-size: 22px;
  flex: 0 0 auto;
  */
}

.services .service-grid .featured-card .content .card-title,
.services .service-grid .service-card .content .card-title {
  margin: 14px 0 8px;
}

.services .service-grid .featured-card .content .card-desc,
.services .service-grid .service-card .content .card-desc {
  margin-bottom: 12px;
  color: #ffffff;
}

.services .service-grid .featured-card:hover,
.services .service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
}

.services .service-grid .featured-card {
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px;
  position: relative;
  background: #F58234;
  top: -200px;
  width: 400px;
  color: #ffffff;
}

.services .service-grid .featured-card .badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services .service-grid .featured-card .content .card-title {
  font-size: 1.8rem;
  margin-top: 0;
}

.services .service-grid .featured-card .content .checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.services .service-grid .featured-card .content .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.services .service-grid .featured-card .content .checks li i {
  color: var(--accent-color);
  margin-top: 2px;
}

.services .service-grid .featured-card .content .cta-wrap .btn-cta {
  background: #7aa5c6;
  color: var(--contrast-color);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services .service-grid .featured-card .content .cta-wrap .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services .service-grid .featured-card .content .cta-wrap .link-plain {
  color: var(--heading-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services .service-grid .featured-card .content .cta-wrap .link-plain i {
  transition: transform 0.3s ease;
}

.services .service-grid .featured-card .content .cta-wrap .link-plain:hover i {
  transform: translateX(2px);
}

@media (max-width: 576px) {
  .services .service-grid .featured-card {
    grid-template-columns: 1fr;
  }

  .services .service-grid .featured-card .icon-wrap {
    margin-bottom: 6px;
  }
}

.services .img-pat {
  position: relative;
  top: -100px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding-top: 60px;
  padding-bottom: 60px;
}

.team .swiper-wrapper {
  height: auto !important;
}

/* .team-image img {
  width: 15%;
  max-width: 250px; /* taille max 
  height: auto;
}*/

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing .ss:hover {
  transform: translateY(-6px);
}

.pricing .pricing-card.highlighted {
  border: 2px solid #2a8046;
}

.pricing .pricing-card.highlighted .card-header {
  background: #2a8046;
}

.pricing .pricing-card.highlighted .card-header .plan-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .card-header .plan-title,
.pricing .pricing-card.highlighted .card-header .plan-subtitle {
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing {
  background: color-mix(in srgb, #2a8046 12%, transparent);
  color: #2a8046;
}

.pricing .pricing-card.highlighted .btn-pricing:hover {
  background: #2a8046;
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted:hover {
  transform: translateY(-8px);
}

.pricing .bg-pcard1 {
  border: 2px solid #f48134;
}

.pricing .bg-pcard3 {
  border: 2px solid #fdbd2c;
}

.pricing .card-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 6%, transparent);
}

.pricing .bg-card1 {
  background-color: #f48134;
}

.pricing .bg-card3 {
  background-color: #fdbd2c;
}

.pricing .plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .plan-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.pricing .plan-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin: 0;
}

.pricing .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing .card-body .bg-check2 {
  color: #2a8046;
}

.pricing .card-body .bg-check3 {
  color: #fdbd2c;
}

.pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing .price-wrapper .titre {
  font-size: 52px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
  padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -1px;
}

.pricing .billing-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
  display: none;
}

.pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricing .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.pricing .bpricing1 {
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
}

/* .pricing .bpricing1:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
} */

.pricing .bpricing3 {
  background: color-mix(in srgb, #fdbd2c 12%, transparent);
  color: #fdbd2c;
}

.pricing .bpricing3:hover {
  background: #fdbd2c;
  color: var(--contrast-color);
}

.pricing .trial-note {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-top: 12px;
}

.pricing .security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .pricing .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing .security-badges {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

.pricing .badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing .badge-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.pricing .badge-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .badge-item .badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .badge-item .badge-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.pricing .badge-item .badge-content span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.pricing .help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing .help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.pricing .help-links a i {
  font-size: 18px;
}

.pricing .help-links a:hover {
  color: color-mix(in srgb, var(--accent-color) 75%, black);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .pricing .help-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing .card-header {
    padding: 24px 20px 20px;
  }

  .pricing .card-body {
    padding: 24px 20px;
  }

  .pricing .price-wrapper .amount {
    font-size: 44px;
  }

  .pricing .price-wrapper.custom-pricing .custom-text {
    font-size: 30px;
  }

  .pricing .plan-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pricing .security-badges {
    margin-top: 48px;
  }
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  background-color: #fdbd2c;
  padding: 50px;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-3:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-3 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-3 h3 {
  color: #005494;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-3 p {
  color: var(--accent-color);
}

.call-to-action-3 .hcol1 {
  color: #005494;
}

.call-to-action-3 .hcol2 {
  color: #2a8046;
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients-2 .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients-2 .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients-2 .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients-2 .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients-2 .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients-2 .clients-track:hover {
  animation-play-state: paused;
}

.clients-2 .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients-2 .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients-2 .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients-2 .clients-slide:hover::before {
  left: 100%;
}

.clients-2 .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients-2 .clients-slide img {
  max-width: 100%;
  max-height: 80%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-5800px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-5800px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients-2 .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients-2 .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.call-to-action-2 .cta-wrapper {
  position: relative;
}

.call-to-action-2 .cta-wrapper .content-block {
  border-radius: 16px;
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.call-to-action-2 .text-content {
  position: relative;
  z-index: 2;
}

.call-to-action-2 .text-content .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.call-to-action-2 .text-content .section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.call-to-action-2 .text-content h2 {
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.call-to-action-2 .text-content h2 .accent-text {
  color: var(--accent-color);
  font-weight: 400;
  display: block;
}

.call-to-action-2 .text-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.call-to-action-2 .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action-2 .benefits-list .benefit-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.call-to-action-2 .benefits-list .benefit-row .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.call-to-action-2 .benefits-list .benefit-row .benefit-item .check-icon {
  width: 24px;
  height: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.call-to-action-2 .benefits-list .benefit-row .benefit-item span {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 400;
}

.call-to-action-2 .action-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.call-to-action-2 .action-group .btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
}

.call-to-action-2 .action-group .btn.btn-primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
}

.call-to-action-2 .action-group .btn.btn-primary-action:hover {
  background-color: #2a8046;
  transform: translateY(-2px);
}

.call-to-action-2 .action-group .btn.btn-text-link {
  background: transparent;
  color: var(--default-color);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.call-to-action-2 .action-group .btn.btn-text-link:hover {
  color: var(--accent-color);
}

.call-to-action-2 .action-group .btn.btn-text-link i {
  font-size: 1.25rem;
}

.call-to-action-2 .trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-to-action-2 .trust-indicators .indicator {
  text-align: center;
}

.call-to-action-2 .trust-indicators .indicator .metric {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action-2 .trust-indicators .indicator .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.call-to-action-2 .trust-indicators .separator {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action-2 .visual-section {
  position: relative;
}

.call-to-action-2 .visual-section .image-container {
  position: relative;
  z-index: 2;
}

.call-to-action-2 .visual-section .image-container .main-visual {
  width: 100%;
  max-width: 480px;
  animation: floatSlow 3s ease-in-out infinite;
}

.call-to-action-2 .visual-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-2 .visual-section .decorative-elements .element {
  position: absolute;
  border-radius: 50%;
}

.call-to-action-2 .visual-section .decorative-elements .element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 98%));
  top: -10%;
  right: 20%;
  animation: drift 8s ease-in-out infinite;
}

.call-to-action-2 .visual-section .decorative-elements .element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 98%));
  bottom: -5%;
  left: 10%;
  animation: drift 6s ease-in-out infinite reverse;
}

.call-to-action-2 .visual-section .decorative-elements .element.element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-color), transparent 96%));
  top: 50%;
  left: -5%;
  animation: drift 10s ease-in-out infinite;
}

@keyframes floatSlow {

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

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

@keyframes floatFast {

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

  50% {
    transform: translateY(6px) translateX(-3px);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }

  66% {
    transform: translate(-5px, 12px) rotate(240deg);
  }
}

@media (max-width: 992px) {
  .call-to-action-2 {
    padding: 80px 0;
  }

  .call-to-action-2 .content-block {
    padding: 3.5rem 2.5rem;
  }

  .call-to-action-2 .text-content {
    margin-bottom: 3rem;
  }

  .call-to-action-2 .text-content h2 {
    font-size: 2.5rem;
  }

  .call-to-action-2 .text-content h2 .accent-text {
    display: inline;
  }

  .call-to-action-2 .text-content p {
    max-width: 100%;
  }

  .call-to-action-2 .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .call-to-action-2 .action-group .btn.btn-primary-action {
    width: 100%;
    text-align: center;
  }

  .call-to-action-2 .trust-indicators {
    justify-content: space-between;
    gap: 1rem;
  }

  .call-to-action-2 .trust-indicators .separator {
    display: none;
  }

  .call-to-action-2 .floating-badge.badge-1 {
    left: 0;
    top: 5%;
  }

  .call-to-action-2 .floating-badge.badge-2 {
    right: 0;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .call-to-action-2 {
    padding: 60px 0;
  }

  .call-to-action-2 .content-block {
    padding: 2.5rem 1.5rem;
  }

  .call-to-action-2 .text-content h2 {
    font-size: 2rem;
  }

  .call-to-action-2 .text-content p {
    font-size: 1rem;
  }

  .call-to-action-2 .benefits-list .benefit-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .call-to-action-2 .trust-indicators .indicator .metric {
    font-size: 1.25rem;
  }

  .call-to-action-2 .trust-indicators .indicator .label {
    font-size: 0.8rem;
  }

  .call-to-action-2 .floating-badge {
    padding: 0.75rem 1rem;
  }

  .call-to-action-2 .floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .call-to-action-2 .floating-badge .badge-text .badge-title {
    font-size: 0.9rem;
  }

  .call-to-action-2 .floating-badge .badge-text .badge-subtitle {
    font-size: 0.75rem;
  }

  .call-to-action-2 .decorative-elements .element {
    transform: scale(0.7);
  }

  .call-to-action-2 .decorative-elements .element.element-1 {
    top: -5%;
    right: 10%;
  }

  .call-to-action-2 .decorative-elements .element.element-2 {
    bottom: 0;
    left: 5%;
  }

  .call-to-action-2 .decorative-elements .element.element-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 {
  padding-top: 60px;
  /* position: relative; */
  clip-path: inset(0);
  padding-bottom: 60px;
  background-color: #005494;
}

.call-to-action-4:before {
  content: "";
  /* position: absolute; */
  inset: 0;
  z-index: 2;
}

.call-to-action-4 .container {
  /* position: relative; */
  z-index: 3;
}

.call-to-action-4 h3 {
  color: #005494;
  font-size: 38px;
  font-weight: 700;
}

.call-to-action-4 p {
  color: red;
}

.call-to-action-4 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 10px;
  transition: 0.5s;
  margin-top: 20px;
  color: var(--default-color);
  background: var(--accent-color);
}

.call-to-action-4 .cta-btn:hover {
  background-color: #2a8046;
  transform: translateY(-3px);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 {
  padding: 0px;
}

.call-to-action-5 .cta-card {
  padding: 0px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.call-to-action-5 .cta-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 0;
}

.call-to-action-5 .cta-card .featured-cta-content {
  margin-left: 8%;
}

.call-to-action-5 .cta-card .badge {
  color: #005494;
  font-size: 0.9rem;
  margin-bottom: rem;
  display: inline-block;
  padding: 0px;
}

.call-to-action-5 .cta-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.call-to-action-5 .cta-card p {
  margin-bottom: 1.5rem;
}

.call-to-action-5 .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action-5 .cta-card .cta-buttons .btn-apply {
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-card .cta-buttons .btn-apply:hover {
  background-color: #2a8046;
  transform: translateY(-2px);
}

.call-to-action-5 .cta-card .cta-buttons .btn-learn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-card .cta-buttons .btn-learn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-5 .cta-card .featured-cta-image {
  border-bottom-right-radius: 80px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .call-to-action-5 .cta-card .featured-cta-image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .call-to-action-5 .featured-cta {
    padding: 2rem;
  }

  .call-to-action-5 h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .section-intro {
  margin-bottom: 48px;
}

.services-2 .section-intro .intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-2 .section-intro .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-2 .section-intro .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.services-2 .section-intro .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s;
}

.services-2 .section-intro .btn-view-all:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-2 .section-intro .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-2 .section-intro .intro-title {
    font-size: 28px;
  }

  .services-2 .section-intro .btn-view-all {
    margin-top: 16px;
  }
}

.services-2 .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.services-2 .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.services-2 .service-item:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.services-2 .service-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services-2 .service-item:hover .service-cta i {
  transform: translateX(4px);
}

.services-2 .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-2 .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.services-2 .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s;
}

.services-2 .badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-2 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-2 p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-2 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.services-2 .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.services-2 .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.services-2 .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s;
}

.services-2 .service-cta i {
  font-size: 16px;
  transition: transform 0.3s;
}

.services-2 .service-cta:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-2 .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 16px;
  padding: 48px;
  margin-top: 64px;
}

.services-2 .cta-banner .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.services-2 .cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.services-2 .cta-banner p {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  line-height: 1.6;
}

.services-2 .cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.services-2 .cta-banner .btn-primary i {
  font-size: 16px;
}

.services-2 .cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
}

.services-2 .cta-banner .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--contrast-color);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 12px;
}

.services-2 .cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services-2 .cta-banner {
    padding: 40px 32px;
  }

  .services-2 .cta-banner h3 {
    font-size: 24px;
  }

  .services-2 .cta-banner .btn-primary,
  .services-2 .cta-banner .btn-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .services-2 .service-item {
    padding: 28px;
    margin-bottom: 24px;
  }

  .services-2 .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services-2 .icon-wrapper i {
    font-size: 24px;
  }

  .services-2 h3 {
    font-size: 20px;
  }

  .services-2 p {
    font-size: 14px;
  }

  .services-2 .feature-list li {
    font-size: 13px;
  }

  .services-2 .feature-list li i {
    font-size: 14px;
  }

  .services-2 .cta-banner {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .services-2 .cta-banner h3 {
    font-size: 22px;
  }

  .services-2 .cta-banner p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10%;
}
.contact .container{
  background-image: url("../img/icon.png");
  background-size: 40%;
  background-repeat: no-repeat;
}
.contact .info-row {
  margin-bottom: 80px;
}

.contact .info-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: border-color 0.3s ease;
}

.contact .info-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .info-card i {
  font-size: 24px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 20px;
}

.contact .info-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.contact .info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .form-wrapper {
  text-align: center;
  margin-bottom: 80px;

}

.contact .form-wrapper h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.contact .form-wrapper>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.75;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact .form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--default-color);
  background-color: white;
  transition: border-color 0.3s ease;
}

.contact .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.contact .form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact .form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact .form-wrapper .submit-btn {
  transition: all 0.3s ease;
  background: var(--accent-color);
  border-radius: 15px;
  color: white;
  padding: 14px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.contact .form-wrapper .submit-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  background-color: #2a8046;
}

@media (max-width: 992px) {
  .contact .info-row {
    margin-bottom: 64px;
  }

  .contact .form-wrapper {
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .contact .info-row {
    margin-bottom: 48px;
  }

  .contact .info-card {
    padding: 32px 20px;
  }

  .contact .form-wrapper {
    margin-bottom: 48px;
  }

  .contact .form-wrapper h3 {
    font-size: 26px;
  }

  .contact .form-wrapper>p {
    margin-bottom: 36px;
  }

  .contact .social-row {
    padding-top: 36px;
  }
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# ruban section
--------------------------------------------------------------*/
/* .ruban{
  background-image: url("../img/SacomRubanPattern.png");
  background-size: 40%;
  background-repeat: repeat-x;
} */
.sacomruban{
  width: 100%;
}
/*--------------------------------------------------------------
# Error 3 Section
--------------------------------------------------------------*/


.error-3 .container{
  background-image: url("../img/icon.png");
  background-size: 40%;
  background-repeat: no-repeat;
}

.error-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-3 .error-404-content h1 {
  font-size: 10rem;
  color: #005494;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-3 .error-404-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #282827;
}

.error-3 .error-404-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.error-3 .error-404-content .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-3 .error-404-content .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-3 .error-404-content .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.error-3 .error-404-content .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.error-3 .error-404-content .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .error-3 .error-404-content h1 {
    font-size: 8rem;
  }

  .error-3 .error-404-content h2 {
    font-size: 2rem;
  }

  .error-3 .error-404-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .error-3 .error-404-content h1 {
    font-size: 6rem;
  }

  .error-3 .error-404-content h2 {
    font-size: 1.75rem;
  }

  .error-3 .error-404-content .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto !important;
  }
}

@media (max-width: 576px) {
  .error-3 .error-404-content h1 {
    font-size: 5rem;
  }

  .error-3 .error-404-content h2 {
    font-size: 1.5rem;
  }

  .error-3 .error-404-content p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Recent Posts Widget 3 Widget
--------------------------------------------------------------*/
.recent-posts-widget-3 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-3 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-3 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-3 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-3 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-3 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Recent Posts Widget 4 Widget
--------------------------------------------------------------*/
.recent-posts-widget-4 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-4 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-4 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-4 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-4 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-4 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}