/* General Styles */
@font-face {
  font-family: 'Open Sans';
  src: url('assets/font/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 75% 100%;
  font-display: swap; /* Ensures text is visible ASAP */
}

@font-face {
  font-family: 'Open Sans';
  src: url('assets/font/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #323232;
  margin: 0;
  padding: 0;
  background-color: #F5F5F7;
}

h1, h2, h3 {
  font-weight: bold;
  margin: 0 0 20px 0;
}

h1 {
  font-size: 36px;
  color: #323232;
}

h2 {
  font-size: 28px;
  color: #323232;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1d1d1f;
}

::selection {
  background-color: #FF6D00; /* Highlight background color */
  color: #ffffff; /* White text color */
}

input{
  font-family: 'Open Sans', serif;
  color: #323232;
}
textarea{
  font-family: 'Open Sans', serif;
  color: #323232;
}

/* Clemento's Orange Color */
:root {
  --clemento-orange: #FF6D00; /* Define the Clemento Orange color */
  --clemento-orange-fiter: invert(39%) sepia(100%) saturate(1000%) hue-rotate(-15deg) brightness(105%) contrast(105%);
  --grey-filter: invert(18%) sepia(20%) saturate(445%) hue-rotate(90deg) brightness(93%) contrast(90%);
}


/* Default styles for all anchor links */
a {
  color: var(--clemento-orange);
  text-decoration: none; /* Remove underline by default */
  transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Hover effect */
a:hover,
a:focus {
  color: #E65C00; /* Slightly darker orange for hover */
  text-decoration: underline; /* Add underline on hover */
}

/* Active link */
a:active {
  color: #CC5200; /* Even darker orange for active state */
}

select {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-family: 'Open Sans', serif;
  color: #323232;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; /* Remove default arrow for custom styling */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23323232'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  cursor: pointer;
}

select:focus {
  border-color: #FF6D00;
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.2);
  outline: none;
}

select:hover {
  border-color: #FF6D00;
}

select option {
  padding: 15px;
  font-size: 16px;
  color: #323232;
}


button, 
input[type="button"], 
input[type="submit"] {
  all: unset;
  /* Reset all inherited styles */
  box-sizing: border-box;
  /* Ensures that padding and borders are included in the element's total width and height */
  display: inline-block;
  /* Ensures the button behaves as an inline-block element */
  cursor: pointer;
  /* Changes the cursor to pointer for button interactions */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
}

header .cta-button{
  width: 190px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 36px;
  background: #FF6D00;
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  padding-top: 18px;
  user-select: none;
}

header .cta-button:hover {
  background-color: #e65a00;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}


.navbar{
  padding:10px;
  width:100%;
  height:100%;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 70px;
}
.logo{
  margin-left:10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0px;
  user-select: none;
  font-variant-caps: all-small-caps;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #323232;
  padding: 10px 15px;
  transition: color 0.3s;
  font-weight: 300;
}

@media (max-width: 1101px) {
  nav ul{
    display:none;
  }
}

.under-nav{
  height:93.5px;
  width:100%;
  background-color: #ffffff;
}

.ribbon{
  height:45px;
  width:100%;
  background-color: var(--clemento-orange);
  color: white !important;
  text-align:center;
  padding-top:10px;
  padding-bottom:10px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.ribbon p{
  color: white !important;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  background-color: #F5F5F7;
  position: relative; /* Make the hero a positioned element */
  min-height: 70vh; /* Ensure the hero section takes a defined height */
  overflow: hidden;
}

/* Hero text */
.hero-text {
  z-index: 1; /* Ensure text stays above the image */
  flex: 1; /* Allow the text to take up available space */
}

.highlight-text {
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
  display: inline;
  padding: 5px; /* Space around the text for the highlight */
  line-height: calc(1em + 17px); /* Font size + extra pixels for better spacing */
}

.hero h1 {
  font-size: 48px;
  color: #323232;
}

#about h2{
  font-size:48px;
}

#home h1{
  font-size: 70px !important;
}

#home p{
  font-weight:300 !important;
}

.hero p {
  font-size: 18px;
  max-width: 500px;
  color: #323232;
}

.cta-button-article {
  background-color: #FF6D00;
  color: #fff;
  padding: 20px 80px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  text-decoration: none;
  margin-top:24px;
  margin-bottom: 24px;
}

.cta-button-article:hover {
  background-color: #e65a00;
}


.hero .cta-button {
  position: relative; /* Ensure relative positioning for any absolute elements if needed */
  display: inline-flex; /* Use Flexbox for alignment */
  align-items: center; /* Vertically center the items */
  justify-content: center; /* Horizontally center the items if needed */
  background-color: #FF6D00;
  color: #fff;
  padding: 20px 80px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  text-decoration: none;
  margin-top:24px;
  font-weight:900;
}

.hero .cta-button:hover {
  background-color: #e65a00;
}

/* Icon Styling */
.hero .cta-button .cta-icon {
  width: 30px; /* Adjust the size as needed */
  height: 30px;
  margin-left: 10px; /* Space between text and icon */
}
.hero .cta-button2 .cta-icon {
  width: 30px; /* Adjust the size as needed */
  height: 30px;
  margin-left: 10px; /* Space between text and icon */
}

.hero .cta-button2 {
  position: relative; /* Ensure relative positioning for any absolute elements if needed */
  display: inline-flex; /* Use Flexbox for alignment */
  align-items: center; /* Vertically center the items */
  justify-content: center; /* Horizontally center the items if needed */
  background-color: #fff; /* White background */
  color: #FF6D00; /* Orange text color */
  padding: 20px 80px;
  border: 2px solid #FF6D00; /* Orange border */
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
  margin-left:26px;
  font-weight:900;
}

.hero .cta-button2:hover {
  background: linear-gradient(155deg, #FFB278 10.47%, #FF6D00 93.56%);
  color: #fff; /* White text on hover */
  background-size: 1000%;
  background-position: center center;
  border: 2px solid transparent;
  box-shadow: 
    0 0 20px rgba(255, 109, 0, 0.8),  /* Bright Clemento orange */
    0 0 30px rgba(255, 165, 0, 0.6), /* Lighter vivid orange */
    0 0 40px rgba(255, 220, 100, 0.5) !important; /* Yellow-orange for a glow effect */
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out, background-color 0.2s ease-in-out !important;
}

/* Wrapper for hero image */
.hero-image-wrapper {
  position: absolute; /* Absolute positioning within the hero */
  bottom: 0;
  right: -80px;
  height: 100%; /* Take up full height of the hero section */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive adjustments */

@media(max-width:682px){
  .hero .cta-button2 {
    margin-top:20px;
    margin-left:0px;
  }
}

@media (max-width: 1101px) {

  .hero .cta-button {
    margin-left:0px !important;
  }
  .hero .cta-button2 {
    margin-left:0px !important;
    margin-bottom:40px;
  }

  .hero {
    flex-direction: column;
    padding: 40px 20px 0px;
    max-height: none;
    border-radius: 0;
    min-height: auto; /* Allow content to dictate height */
  }

  .hero h1 {
    font-size: 36px;
    text-align: center;
  }

  #about h2{
    font-size: 36px;
  }

  #home h1 {
    font-size:35px !important;
  }

  #home p {
    margin: auto auto !important;
    font-size: 15px !important;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
  }

  .hero .cta-button{
    font-size: 18px;
  }

  .hero-image-wrapper {
    position: static; /* Remove absolute positioning for small screens */
    justify-content: center;
    max-width: 100%;
    margin-top: 20px;
    height: auto;
  }

  .hero-image {
    max-width: 80%;
    border-radius: 0;
  }

  .hero-about p{
    font-size:23px !important;
    margin-bottom:60px !important;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-about{
    flex-direction: row !important;
  }
  .hero-about .hero-image-wrapper {
    position: absolute; /* Absolute positioning within the hero */
    bottom: 0;
    right: -80px;
    height: auto; /* Take up full height of the hero section */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

/* Animation for the hero text */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
  }
  60% {
    opacity: 1;
    transform: translateY(0); /* Move to the final position */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to the hero-text */
.hero-text h1, .hero-text p, .hero-text .cta-button, .hero-text .cta-button2 {
  opacity: 0; /* Start hidden */
  animation: fadeInUp 0.4s ease-out forwards; /* Smooth fade-in-up effect */
}

/* Stagger the animation for each element for a cascading effect */
.hero-text h1 {
  animation-delay: 0.2s;
}

.hero-text p {
  animation-delay: 0.4s;
}

.hero-text .cta-button {
  animation-delay: 0.6s;
}
.hero-text .cta-button2 {
  animation-delay: 0.6s;
}

.hero .cta-button:hover, .hero .cta-button2:hover {
  transform: scale(1.05); /* Slightly increase the size */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}

.hero-about h1{
  font-size:54px !important;
  margin-bottom:60px !important;
}

.hero-about p{
  font-size:23px !important;
  margin-bottom:60px !important;
  font-weight:300;
}

.hero-about{
  flex-direction: row !important;
}


/* What we do section */
.services {
  padding: 50px 20px;
  background-color: #FF7816;
}

.services h2 {
  text-align: left;
  margin-bottom: 80px;
  color: #ffffff;
  font-size:54px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 40px;
}

.service-item {
  text-align: left;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.7),   /* Bright white inner glow */
    0 0 40px rgba(255, 255, 255, 0.5),   /* Softer white mid glow */
    0 0 60px rgba(255, 255, 255, 0.3) !important;   /* Outer white halo effect */
  transform: translateY(-5px); /* Lift effect */
}

.service-item h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
  display: inline-block;
  position: relative; /* Allow positioning of the tag */
}

.service-item p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
  min-height:70px;
}

.service-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}

.service-item .cta-button {
  background-color: #FF6D00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item .cta-button:hover {
  background-color: #e65a00;
}

/* "New" and "AI" tags */
.new, .ai {
  background: linear-gradient(155deg, #FFB278 10.47%, #FF6D00 93.56%);
  color: white;
  padding: 6px 7px;
  font-size: 12px;
  border-radius: 8px;
  position: absolute; /* Absolute positioning relative to the parent */
  top: -14px; /* Adjust this value as needed */
  right: -30px; /* Ensure it stays attached to the text */
  white-space: nowrap; /* Prevent the tag from breaking onto its own line */
  font-weight:300;
  user-select: none;
}

/* Trusted by section */
.trusted-section {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.trusted-section h2 {
  margin-bottom: 80px;
  font-size:54px;
}

.trusted-logos img {
  height: 75px;
  margin: 0 20px;
}

.trusted-section .cta-button {
  background-color: #fff; /* White background */
  color: #FF6D00; /* Orange text color */
  padding: 20px 80px;
  border: 2px solid #FF6D00; /* Orange border */
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
  margin-top:60px;
}

.trusted-section .cta-button:hover {
  background: linear-gradient(155deg, #FFB278 10.47%, #FF6D00 93.56%);
  color: #fff; /* White text on hover */
  background-size: 1000%;
  background-position: center center;
  border: 2px solid transparent;
   box-shadow: 
    0 0 20px rgba(255, 109, 0, 0.8),  /* Bright Clemento orange */
    0 0 30px rgba(255, 165, 0, 0.6), /* Lighter vivid orange */
    0 0 40px rgba(255, 220, 100, 0.5); /* Yellow-orange for a glow effect */
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Blog section */
.blog-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.blog-section h2 {
  margin-bottom: 40px;
  color: #333;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-post {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-post h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.blog-post p {
  color: #666;
  font-size: 16px;
}

/* Footer */
footer {
  background-color: #ffffff;
  padding: 0px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

footer p {
  font-size: 14px;
  color: #666666;
}

footer .footer-links {
  margin: 20px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0px;
}

footer .footer-links li {
  display: inline;
}

footer .footer-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s;
}

footer .footer-links li a:hover {
  color: #FF6D00;
}

.footer-logo img{
  height:250px;
}

.footer-foot{
  width:100%;
  height:40px;
  background-color:#FF6D00;
  padding-top:16px;
  padding-bottom:0px;
}

.footer-foot p{
  color:white !important;
  margin-top:0px;
  margin-bottom:0px;
  text-align:left;
  margin-left:40px;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
      border-radius: 0;
  }

  .blog-container {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 971px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}

@media (max-width: 630px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 column for very small screens */
  }
}

.contactform-form-line1, 
.contactform-form-line7, 
.contactform-form-line6 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.contactform-form-line1 input,
.contactform-form-line7 input,
.contactform-form-line6 textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contactform-form-line7 input {
  width: 100%;
}

.contactform-form-line6 textarea {
  height: 150px;
  resize: none;
}

input:focus, 
textarea:focus {
  border-color: #FF6D00;
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.2);
  outline: none;
}

/* Submit Button */
.contactform-form-line7 input[type="submit"] {
  background-color: #FF6D00;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contactform-form-line7 input[type="submit"]:hover {
  background-color: #e65a00;
  box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.form{
  max-width:1160px;
  margin-left:auto;
  margin-right:auto;
  margin-top:48px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contactform-form-line1 {
    flex-direction: column;
  }

  .contactform-form-line1 input {
    width: calc(100% - 30px);
  }

  .form{
    max-width:unset;
  }
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.faq-section h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 36px;
    color: #333;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

/* Question Styling */
.faq-item h3 {
    font-size: 20px;
    color: #FF6D00; /* Clemento Orange */
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

/* Icon for Toggle */
.faq-item h3::after {
    content: "+";
    font-size: 20px;
    color: #FF6D00;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

/* Expanded State */
.faq-item.active h3::after {
    transform: rotate(45deg);
}

/* Answer Styling */
.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Expanded State for Answer */
.faq-item.active p {
    max-height: 500px; /* Large enough for the content */
    margin-top: 10px;
}

/* Hover and Focus Styling */
.faq-item h3:hover,
.faq-item h3:focus {
    color: #e65a00; /* Darker orange on hover */
}

.trusted-section {
  text-align: center;
  padding: 2rem 0;
  overflow-x: hidden;
}

.swiper-container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  position:relative;
  margin-bottom:40px;
}


.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial {
  min-width: 300px;
  max-width: 90%;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height:300px;
  align-content: center;
}

.testimonial p {
  font-size: 1rem;
  color: #333;
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.client-logo {
  display: block;
  max-height: 75px;
  max-width: 100%;
  margin: 0 auto 1rem auto;
}
/* Pagination styling */
.swiper-pagination-bullet {
  background: #333;
}
/* Pagination container */
.swiper-pagination {
  position: absolute;
  bottom: -35px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  height: 21px;
}

/* Pagination dots */
.swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #ccc; /* Default dot color */
  opacity: 0.7;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
}

/* Active pagination dot */
.swiper-pagination-bullet-active {
  background-color: #333 !important; /* Active dot color */
  transform: scale(1.2); /* Slightly enlarge active dot */
  opacity: 1;
}
article{
  user-select:text;
}
article>p{
  font-size:20px;
}
article>ul{
  font-size:20px;
}
article>ul>li{
  margin-bottom:16px;
}


/* Mobile Menu (Hidden by Default) */
.menu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 96px; /* Adjust based on your header height */
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  z-index: 1000; /* Ensure it’s above other content */
  font-weight:300;
}

/* Mobile Menu Open State */
.menu.open {
  transform: translateY(0); /* Slide down */
  display: flex;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001; /* Ensure it's above everything */
  margin-right:20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2c3931;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger Icon Open State */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* Ensure Nav Links Stack Vertically in Mobile Menu */
.menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-variant-caps: all-small-caps;
}

.menu ul li a {
  text-decoration: none;
  color: #2c3931;
  font-size: 1.4em !important;
  font-weight:300;
}

/* Desktop Navigation */
@media (min-width: 1102px) {
  .menu {
      display: flex;
      position: static; /* Reset position for desktop */
      flex-direction: row; /* Horizontal on desktop */
      gap: 20px;
      transform: none; /* No transform on desktop */
  }
  .hamburger {
      display: none; /* Hide hamburger on desktop */
  }
}

/* Mobile Hamburger Visibility */
@media (max-width: 1101px) {
  .navbar .cta-button {
      display: none;
  }
  .menu {
      background-color: rgba(255, 255, 255, 1);
  }
  .hamburger {
      display: flex; /* Show hamburger on mobile */
  }
  nav ul {
      display: none; /* Hide desktop nav */
  }
  .menu ul {
      flex-direction: column !important;
  }
  footer .footer-links{
      flex-direction: column !important;
  }
}

/* Center the nav links on desktop */
.menu {
  justify-content: center; /* Center the content horizontally */
  text-align: center;
}

.menu ul {
  display: flex; /* Ensure horizontal layout */
  justify-content: center; /* Center the links */
  gap: 20px; /* Add space between links */
  padding: 0; /* Remove padding from the list */
}

.menu ul li {
  display: inline-block; /* Ensure the list items are inline */
  height:100%;
}

/* Ensure alignment consistency on all screens */
@media (min-width: 946px) {
  .menu {
      width: 100%; /* Take full width on desktop */
  }
}

/* Ensure the <a> is positioned relatively to contain the absolute ::after */
.menu ul li a {
  position: relative;
  display: inline-flex; /* Allows better alignment with SVG icons */
  align-items: center; /* Vertically centers the icon and text */
  /* Add any other desired styles here */
}

/* Initial state: Underline hidden */
.menu ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px; /* Height of the line */
  background: var(--clemento-orange); /* Color of the line */
  position: absolute; /* Position absolutely within the <a> */
  bottom: -5px; /* Adjust as needed */
  left: 0; /* Start from the left */
}

/* Hover state: Underline expands to full width */
.menu ul li a:hover::after {
  width: 100%;
}

/* Navigation Icons Styling */
.nav-links li a {
  display: flex;
  align-items: center;
  position: relative;
}

/* SVG Icon Styling */
.nav-icon {
  width: 30px; /* Adjust the size as needed */
  height: 30px !important;
  margin-right: 8px; /* Space between icon and text */
  fill: none; /* Ensure SVG uses the stroke color */
  stroke: currentColor; /* Inherits the text color */
  transition: fill 0.3s ease, stroke 0.3s ease; /* Smooth transition on hover */
}


/* Ensure proper alignment in mobile menu */
@media (max-width: 1101px) {
  .menu ul {
    flex-direction: column !important;
    align-items: center;
  }

  .nav-links li a {
    justify-content: center;
  }
}

.cta-button3{
  padding:8px 30px;
  border-radius:64px;
  border: 1px solid #FF6D00;
  width:fit-content;
  color:#FF6D00 !important;
  margin-right:10px;
  margin-bottom:20px;
  display:inline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size:14px !important;
}
.cta-button3:hover{
  cursor: pointer;
  background-color:#FF6D00;
  color:white !important;
}


.logoreel-wrapper {
  width: 100vw;
  overflow: hidden;
  margin-top: 50px;
  background: #fff;
  padding: 20px 0;
  max-width: 800px;
}

.logoreel-title {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.logoreel-container {
  overflow: hidden;
  cursor: grab;
}

.logoreel-track {
  display: flex;
  gap: 40px;
  animation: logoreelScroll 40s linear infinite;
  width: max-content;
  user-select: none;
  will-change: transform;
}

.logoreel-logo {
  height: 40px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logoreel-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation pause au hover */
.logoreel-container:hover .logoreel-track {
  animation-play-state: paused;
}

@keyframes logoreelScroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
