:root {
  --primary: rgb(59, 130, 246);
  --bg: #010101;
  --box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.1);
  --border: 0.1rem solid rgba(255, 255, 255, 0.2);
  --white: #fff;
  --bg-card: rgba(255, 255, 255, 0.1);
  --gray: #808080;
  --header-height: 3.5rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.clients-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: flex-start; 
  width: 100%; 
}

.client-in {
  flex: 1 1 20%; 
  margin: 10px; 
  box-sizing: border-box; 
}


.client-section {
  display: flex; 
  justify-content: cover;
  align-items: cover;
  width: 100%;
  height: 100%;
  padding: 4rem 1.4rem;
}

.client-section .client-wrapper {
  display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  max-width: 1200px;
  background-color: #021526;
  padding: 3rem;
  gap: 2rem; 
}

.client-section .client-wrapper .client-in {
  flex: 1;
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap; 
  justify-content: center;
  gap: 1rem;
}

.client-section .client-wrapper .client-in .card-logo {
  width: 10rem;
  height: 10rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.client-section .client-wrapper .client-in .card-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.8);
}

.client-section .client-wrapper .client-in .card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-section .client-wrapper .client-text {
  width: 35%; 
  padding: 2rem 2%;
  font-size: 1.2rem;
  color: var(--gray);
  text-align: start;
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-section .client-wrapper .client-text span {
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
}

.client-section .client-wrapper .client-text p {
  font-size: 1.2rem;
  color: var(--white);
  padding: 1rem 0;
}

.client-section .client-wrapper .client-text h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.client-text h1{
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .client-section .client-wrapper {
    flex-direction: column; 
    padding: 3rem 2%;
  }

  .client-section .client-wrapper .client-in,
  .client-section .client-wrapper .client-text {
    width: 100%; 
  }

  .client-section .client-wrapper .client-in {
    justify-content: center;
    gap: 0.5rem;
  }
}



@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .client-section .client-wrapper .client-in .card-logo {
    width: 8rem; 
    height: 8rem;
  }
}

@media screen and (max-width: 450px) {
  .client-section .client-wrapper .client-in .card-logo {
    width: 6rem; 
    height: 6rem;
  }
}
