:root {
  --primary-red: #e10600;
  --primary-blue: #031b46;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Serif", serif;
  
}
body{
  text-align: center;
}


.logo img {

    max-height: 250px;
    /* controls header height */
    width: 10rem;


}



/* ===== NAVBAR ===== */
.main-header {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 3px solid #8686aa;
  position: relative;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 900;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: 0.3s ease;
}

/* Hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 5;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}




/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .main-header {
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    background: var(--primary-blue);
    flex-direction: column;
    padding-top: 5rem;
    gap: 30px;
    transition: 0.4s ease;
    z-index: 20;
  }

  .nav-links.active {
    left: 0;
  }

  .logo img {

 
    width: 6rem;


}

  /* Slide animation */
  .nav-links li {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

  .nav-links a {
    color: white;
  }

  .hamburger {
    display: flex;
  }
}
 /* end mobile */
 /* end header

 /* begin hero */
 
.hero {
    height: 100vh;
    background-color: white;
    /* border: 2px solid rgb(225, 225, 231); */
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1rem;
    
}

.hero h1 {
    color: #f4f3f5;
    margin-bottom: 2rem;


}

.hero p {
    color: #ada6d9;
    font-weight: 100;
    margin-bottom: 2rem;

}

.hero .action {
    display: flex;

}

.hero-content .overlay {
    background-color: #122844;
    padding: 0.5rem;
    border-radius: 5px;

}

.hero .overlay,
.action {
    justify-content: center;
    align-items: center;
}

.hero .overlay,
.action a {
    padding: 1rem 2rem;
    /* border: 2px solid blue; */
    border-radius: 5px;
    text-decoration: none;
    margin: 0 0.6rem;
    flex-wrap: wrap;

}

.hero .action a:nth-child(1) {
    background: red;
    color: white;
    transition: all .3s ease-in;

}


.hero .action a:nth-child(2) {
    background: rgba(254, 254, 254, 0.921);
    color: red;
    border: 0.1rem solid white;


}

.menu-toggle {
    display: none;
    cursor: pointer
}

/* 
added now
*/


header {
    padding: 1rem 3rem;
    border-bottom: 3px solid #8686aa;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 50, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #d0d6ff;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn.primary {
    background: #ff0000;
    color: #fff;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

 /* end hero */


/* ===== WHO WE ARE SECTION ===== */

.us {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 8%;
  background: #f5f7fa;
}

/* Image container */
.company_pic {
  width: 100%;
}

.company_pic img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover effect */
.company_pic img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Text side */
.us .description {
  color: #031b46;
}

.us .description h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.us .description p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.us .action {
  margin-top: 25px;
}

/* Button improvement */
.us .btn.primary {
  background: var(--primary-red);
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.us .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Large tablets */
@media (max-width: 1024px) {
  .us {
    gap: 40px;
    padding: 80px 6%;
  }

  .company_pic img {
    height: 400px;
  }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
  .us {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 20px;
  }

  .company_pic img {
    height: 350px;
  }

  .us .description h2 {
    font-size: 28px;
  }

  .us .description p {
    font-size: 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .company_pic img {
    height: 280px;
  }

  .us {
    padding: 60px 15px;
  }
}


/* why choose us */
.why-choose{
  width:80%;
  margin:100px auto;
  text-align:center;
}
.testmonial-btn{
  margin: 5rem auto;
}
.testmonial-btn a{
  width: 100%;
  color: red;
  border: 2px solid red;
  width: 20rem;
  transition: all .3s ease-in;
  cursor:pointer
 
}
.testmonial-btn a:hover{
  color:white;
  background-color: red;

}
.title{
  display:inline-block;
  padding:15px 40px;
  background:#131734;
  border-radius:8px;
  color: white;
  margin-bottom:60px;
  border-bottom:6px solid #e10600;

}

.wrapper-display{
  display:flex;
  gap:40px;
}

.glass-card{
  flex:1;
  min-height:420px;
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:15px;
  padding:40px;
  position:relative;
  overflow:hidden;
  transition:0.6s ease;
 
}
.shadow{
   box-shadow: 4px 4px 100px black;
}

.glass-card:hover{
  transform:translateY(-8px);
  border-color:#e10600;
}

.text-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:1s ease;
  box-shadow: 2px 2px 2px gray;
}

.text-slide.active{
  opacity:1;
}

.slide-inner > *{
  opacity:0;
  transform:translateY(-30px);
  transition:0.6s ease;
}

.text-slide.active .slide-inner > *{
  opacity:1;
  transform:translateY(0);
}

.icon{
  font-size:40px;
  margin-bottom:15px;
  color:#e10600;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:20px 0;
  text-align:left;
}

.feature-list li{
  margin-bottom:10px;
}

.feature-list i{
  color:#e10600;
}

.stats{
  display:flex;
  gap:20px;
  justify-content:center;
  margin-top:20px;
}

.stat-box{
  background:rgba(255,255,255,0.15);
  padding:12px 20px;
  border-radius:10px;
}

.counter{
  font-size:22px;
  font-weight:bold;
  color:#e10600;
}

.image-slider{
  position:relative;
}

.image-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:1s ease;
  border-radius:15px;
}

.image-slider img.active{
  opacity:1;
}

/* Mobile & Tablet: Image on top */
@media(max-width:1024px){
  .wrapper-display{flex-direction:column;}
  .image-slider{order:1;}
  .text-slider{order:2;}
  .why-choose{width:90%;}
}

/* end of why choose us */

/* services section start */
/* =======================
   HH Recruitment Experts
   Services Slider Section
   Brand Colors:
   Red: #d70000
   Blue: #001d5c
======================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Segoe UI", sans-serif;
  background:#ffffff;
}

.services-sectionhome{
  position:relative;
  padding:90px 8%;
  background: radial-gradient(circle at top, #07163d, #01040d);
  overflow:hidden;
  color:white;
}

/* Particle Canvas */
#particles{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
  opacity:0.5;
}

.services-inner{
  position:relative;
  z-index:2;
}

.services-title{
  text-align:center;
  font-size:38px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:15px;
  text-shadow:0px 3px 15px rgba(0,0,0,0.5);
}

.services-subtitle{
  text-align:center;
  max-width:750px;
  margin:0 auto 55px auto;
  color:#cfcfcf;
  line-height:1.7;
  font-size:15px;
}

/* Swiper */
.services-swiper{
  padding-bottom:60px;
}

.swiper-button-next,
.swiper-button-prev{
  color:#d70000 !important;
  font-weight:bold;
  transition:0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  transform:scale(1.1);
}

.swiper-pagination-bullet{
  background:white !important;
  opacity:0.4;
}

.swiper-pagination-bullet-active{
  background:#d70000 !important;
  opacity:1;
}

/* Card */
.service-card{
  border-radius:20px;
  overflow:hidden;
  background:white;
  color:#111;
  box-shadow:0px 15px 45px rgba(0,0,0,0.4);
  transition:0.4s ease;
  transform:scale(0.98);
}

.service-card:hover{
  transform:scale(1.0) translateY(-8px);
  box-shadow:0px 20px 60px rgba(215,0,0,0.25);
}

/* Dark Card */
.dark-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:white;
}

.dark-card .short-text{
  color:#cfcfcf;
}

.service-img{
  width:100%;
  height:200px;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.service-card:hover .service-img img{
  transform:scale(1.1);
}

/* Content */
.service-content{
  padding:30px 26px 28px 26px;
}

.icon-box{
  width:60px;
  height:60px;
  background:#f2f2f2;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:14px;
  font-size:25px;
  color:#d70000;
  margin-bottom:18px;
  transition:0.4s ease;
}

.service-card:hover .icon-box{
  background:#d70000;
  color:white;
  transform:rotate(10deg);
}

.dark-icon{
  background:rgba(255,255,255,0.15);
  color:white;
}

.dark-card:hover .dark-icon{
  background:#d70000;
}

.service-content h3{
  font-size:22px;
  font-weight:900;
  margin-bottom:12px;
}

.short-text{
  font-size:15px;
  color:#555;
  line-height:1.7;
  margin-bottom:18px;
}

/* Expandable content */
.expand-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease;
  font-size:14px;
  line-height:1.7;
}

.expand-content p{
  margin-bottom:10px;
}

.expand-content ul{
  padding-left:20px;
  margin-top:8px;
}

.expand-content ul li{
  margin-bottom:8px;
}

/* Read More Button */
.read-more-btn{
  border:none;
  background:transparent;
  font-size:15px;
  font-weight:800;
  color:#001d5c;
  cursor:pointer;
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:18px;
  transition:0.3s ease;
}

.read-more-btn:hover{
  color:#d70000;
  transform:translateX(5px);
}

.dark-btn{
  color:white;
}

.dark-btn:hover{
  color:#ff2d2d;
}

/* Expanded State */
.service-card.expanded .expand-content{
  max-height:350px;
}

.service-card.expanded .read-more-btn span{
  content:"Show less";
}

/* View All Button */
.view-all-btn-container{
  text-align:center;
  margin-top:15px;
}

.view-all-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:14px 32px;
  border-radius:10px;
  font-size:16px;
  font-weight:800;
  background:#d70000;
  color:white;
  transition:0.3s ease;
  animation:pulse 1.8s infinite;
}

.view-all-btn:hover{
  background:#001d5c;
  transform:scale(1.05);
}

/* Pulse animation */
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(215,0,0,0.55); }
  70%{ box-shadow:0 0 0 18px rgba(215,0,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(215,0,0,0); }
}

/* Responsive */
@media(max-width: 768px){
  .services-section{
    padding:80px 5%;
  }

  .services-title{
    font-size:30px;
  }
}

/* services section end */


/* jobs section start */

/* SECTION */
.explore-jobs-section {
  padding: 2rem 0;
  width: 80%;
  margin: 60px auto;
  border-radius: 15px;

  /* background image ONLY for this section */
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;

  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
}

/* Overlay default (Image 2 look) */
.explore-jobs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 230, 230, 0.75);
  transition: 0.5s ease;
  z-index: 1;
  border-radius: 15px;
}

/* Hover overlay (Image 1 look) */
.explore-jobs-section:hover::before {
  background: rgba(30, 30, 30, 0.75);
}

/* Clickable Box */
.explore-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
  padding: 90px 20px;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}

/* Icon */
.explore-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d70000;
  transition: 0.5s ease;
}

/* Text */
.explore-text h2 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  color: #d70000;
  transition: 0.5s ease;
}

.explore-text p {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #d70000;
  transition: 0.5s ease;
}

/* Hover Effects */
.explore-jobs-section:hover .explore-text h2,
.explore-jobs-section:hover .explore-text p {
  color: #ffffff;
}

.explore-jobs-section:hover .explore-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

/* Smooth zoom effect */
.explore-jobs-section:hover {
  transform: scale(1.01);
  box-shadow: 0px 15px 50px rgba(0,0,0,0.35);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .explore-jobs-section {
    width: 95%;
  }

  .explore-box {
    flex-direction: column;
    text-align: center;
    padding: 70px 15px;
  }

  .explore-text h2 {
    font-size: 30px;
  }
}

/* jobs section end */

/* footer design */

/* footer design */


:root {
  --red: #e10600;
  /* --blue: #0b1f8a; */
  --blue: rgb(119, 119, 168);
  --dark: #050b1e;
  --text: #e6e6e6;
}


/* FOOTER */
.footer {
    margin-top: 4rem;
  /* background: linear-gradient(135deg, var(--blue), var(--dark)); */
  background: #0f0f21;
  color: white;
  padding: 70px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: var(--red);
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.7;
  color: var(--text);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.footer-links a i {
  color: var(--red);
}

.footer-links a:hover {
  transform: translateX(5px);
  color: var(--red);
}

.footer-bottom {
  text-align: center;
  padding: 25px 10px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: #cccccc;
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: var(--red);
  color: white;
  border: none;
  padding: 13px 15px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
  }
}

/* end of footer design */

/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  padding: 90px 0;
  background: #f5f7fa;
  overflow: hidden;
}

.clients-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 6%;
}

.clients-header {
  text-align: center;
  margin-bottom: 55px;
}

.clients-tag {
  display: inline-block;
  background: rgba(225, 6, 0, 0.1);
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(225, 6, 0, 0.25);
  margin-bottom: 16px;
}

.clients-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.clients-subtext {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Track Wrapper — masks overflow & adds fade edges */
.clients-track-wrapper {
  position: relative;
  overflow: hidden;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f7fa 20%, transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f5f7fa 20%, transparent);
}

/* Scrolling track */
.clients-track {
  display: flex;
  gap: 40px;
  width: max-content;
  /* animation: clientsScroll 40s linear infinite; */
  animation: clientsScroll 28s linear infinite;
}

/* Pause on hover — triggered from wrapper */
.clients-track-wrapper:hover .clients-track {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual logo card */
.client-logo-card {
  flex-shrink: 0;
  width: 280px;
  height: 170px;
  background: linear-gradient(145deg, #ffffff, #f1f3f8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border: 1px solid #e4e7ee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow sweep on hover */
.client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(225,6,0,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(3, 27, 70, 0.15);
}

.client-logo-card img {
  width: 230px;
  height: 130px;
  object-fit: contain;
  display: block;
  transition: all 0.4s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Partner With Us CTA */
.clients-cta {
  margin-top: 60px;
  text-align: center;
}

.clients-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e10600, #b80000);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(225, 6, 0, 0.3);
}

.clients-btn span {
  transition: transform 0.3s ease;
}

.clients-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(225, 6, 0, 0.45);
}

.clients-btn:hover span {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-section {
    padding: 70px 0;
  }

  .client-logo-card {
    width: 220px;
    height: 140px;
    padding: 16px 20px;
  }

  .client-logo-card img {
    width: 185px;
    height: 108px;
  }

  .clients-track {
    gap: 18px;
  }

  .clients-track-wrapper::before,
  .clients-track-wrapper::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .client-logo-card {
    width: 190px;
    height: 118px;
    padding: 14px 18px;
  }

  .client-logo-card img {
    width: 158px;
    height: 88px;
  }
}
/* ===== END OUR CLIENTS SECTION ===== */



@media (max-width: 480px) {
  .clients-btn {
    width: 90%;
    justify-content: center;
  }

  .clients-stats {
    flex-direction: column;
    gap: 10px;
  }
}