* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}
:root {
  --primary-color: #b9ff66;
  --secondary-color: #191a23;
  --white: #f3f3f3;
  --gray: #e9e9e9;
  --gray-dark: #24283f;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  padding: 0 3vw;
}

h1 {
  font-weight: 500;
}

/*------ Navigation ------*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 0;
  position: relative;
  z-index: 1000;
}

nav > div {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
}

nav > div > img {
  width: 2.25rem;
  height: 2.25rem;
}

nav > div > h1 {
  font-size: 2.25rem;
  color: var(--secondary-color);
}

nav > ul {
  display: flex;
  gap: 1.875rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}

nav > ul > li {
  font-size: 1.25rem;
  cursor: pointer;
}

nav > ul > li > a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: text-decoration 0.3s ease;
}

nav > ul > li > a:hover {
  text-decoration: underline;
}

nav > ul > li > button {
  padding: 1.25rem 2.1875rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  border-radius: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav > ul > li > button:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/*------ Mobile Menu Button ------*/
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  padding: 0.625rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/*------ Hero Section ------*/
.hero {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 70vh;
  padding: 2rem 0;
}

.hero-top {
  display: flex;
  height: auto;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-part1 {
  flex: 1;
  min-width: 50%;
}

.hero-part1 > h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.2;
}

.hero-part1 > p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  width: 90%;
  line-height: 1.5;
}

.hero-part1 > button {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.9375rem 1.875rem;
  font-size: 1.1875rem;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-part1 > button:hover {
  transform: scale(1.05);
}

.hero-part2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-part2 > img {
  width: 100%;
  max-width: 35rem;
  height: auto;
}

/*------ Companies Logo ------*/
.companies-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 2rem 0;
}

.companies-logo > img {
  height: 2.5rem;
  filter: grayscale(100%);
  width: auto;
  max-width: 6.25rem;
  object-fit: contain;
}

/*------ Services Section ------*/
.Services {
  width: 100%;
  margin-top: 6.25rem;
}

.heading {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.heading > h1 {
  background-color: var(--primary-color);
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}

.heading > p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  width: 50%;
  line-height: 1.5;
  min-width: 280px;
}

.cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 10vh;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem;
  border-radius: 2.8125rem;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-0.3125rem);
}

.card > .card-part1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  width: 60%;
}

.card > .card-part2 {
  height: 100%;
  width: 40%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.card > .card-part2 > img {
  height: 100%;
  width: 90%;
  max-height: 10rem;
  object-fit: contain;
}

.card > .card-part1 > div > h1 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

/*------ Card Variants ------*/
.card1 {
  background-color: var(--gray);
}
.card1 > .card-part1 > div > h1 {
  background-color: var(--primary-color);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}

.card > .card-part1 > h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: gap 0.3s ease;
}

.card > .card-part1 > h4:hover {
  gap: 0.875rem;
}

.card1 > .card-part1 > h4 > svg {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

.card2 {
  background-color: var(--primary-color);
}
.card2 > .card-part1 > div > h1 {
  background-color: var(--gray);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}
.card2 > .card-part1 > h4 > svg {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

.card3 {
  background-color: var(--secondary-color);
}
.card3 > .card-part1 > div > h1 {
  background-color: var(--gray);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}
.card3 > .card-part1 > h4 {
  color: var(--gray);
}
.card3 > .card-part1 > h4 > svg {
  background-color: var(--gray);
  color: var(--secondary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

.card4 {
  background-color: var(--gray);
}
.card4 > .card-part1 > div > h1 {
  background-color: var(--primary-color);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}
.card4 > .card-part1 > h4 > svg {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

.card5 {
  background-color: var(--primary-color);
}
.card5 > .card-part1 > div > h1 {
  background-color: var(--gray);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}
.card5 > .card-part1 > h4 > svg {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

.card6 {
  background-color: var(--secondary-color);
}
.card6 > .card-part1 > div > h1 {
  background-color: var(--primary-color);
  width: fit-content;
  padding: 0 0.4375rem;
  border-radius: 0.4375rem;
}
.card6 > .card-part1 > h4 {
  color: var(--gray);
}
.card6 > .card-part1 > h4 > svg {
  background-color: var(--gray);
  color: var(--secondary-color);
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
}

/*------ CTA Section ------*/
.CTA {
  width: 100%;
  min-height: 35vh;
  background-color: var(--gray);
  margin-top: 10vh;
  border-radius: 2.8125rem;
  padding: clamp(2rem, 5vw, 3.75rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.CTA > .cta-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

.CTA > .cta-left > h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.CTA > .cta-left > p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.CTA > .cta-left > button {
  padding: 1.25rem 2.1875rem;
  color: var(--gray);
  background-color: var(--secondary-color);
  border-radius: 0.875rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.CTA > .cta-left > button:hover {
  transform: scale(1.05);
}

.CTA > .cta-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.CTA > .cta-right > img {
  width: 100%;
  max-width: 20rem;
  height: auto;
}

/*------ Case Studies ------*/
.case-studies {
  width: 100%;
  margin-top: 10vh;
}

.cases {
  width: 100%;
  margin-top: 10vh;
  border: var(--secondary-color) 1px solid;
  padding: clamp(2rem, 5vw, 4.375rem) clamp(2rem, 4vw, 3.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--gray);
  border-radius: 2.8125rem;
  gap: 1rem;
}

.cases > hr {
  display: none;
}

.case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  gap: 1.25rem;
  padding: 1rem;
}

.case > p {
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  line-height: 1.5;
}

.case > h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  gap: 0.625rem;
  cursor: pointer;
}

.case > h4 > svg {
  width: 1.5rem;
  height: 1.5rem;
}

/*------ Work Process ------*/
.work-process {
  width: 100%;
  margin-top: 10vh;
}

.processes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 10vh;
}

.process {
  padding: clamp(1.5rem, 4vw, 2.5625rem) clamp(2rem, 4vw, 3.75rem);
  background-color: var(--primary-color);
  border-radius: 2.8125rem;
  border: var(--secondary-color) solid 1px;
  box-shadow: var(--secondary-color) 0 0.25rem 0 0;
}

.process > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.process > div > div > h1 {
  font-size: clamp(2rem, 5vw, 4.6875rem);
}

.process > div > div > h2 {
  font-size: clamp(1rem, 2vw, 1.875rem);
}

.process > div > svg {
  border-radius: 50%;
  border: var(--secondary-color) 1px solid;
  width: clamp(2rem, 4vw, 4vw);
  height: clamp(2rem, 4vw, 4vw);
  min-width: 2.5rem;
  min-height: 2.5rem;
  background-color: var(--gray);
  cursor: pointer;
}

.process > hr {
  margin: 1.5rem 0;
  border: solid var(--secondary-color) 1px;
  background-color: var(--secondary-color);
}

.process > p {
  width: 95%;
  line-height: 1.5;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.process1 {
  padding: clamp(1.25rem, 3vw, 1.9375rem) clamp(2rem, 4vw, 3.75rem);
  background-color: var(--gray);
  border-radius: 2.8125rem;
  border: var(--secondary-color) solid 1px;
  box-shadow: var(--secondary-color) 0 0.25rem 0 0;
}

.process1 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process1 > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.process1 > div > div > h1 {
  font-size: clamp(2rem, 5vw, 4.6875rem);
}

.process1 > div > div > h2 {
  font-size: clamp(1rem, 2vw, 1.875rem);
  width: 90%;
}

.process1 > div > svg {
  border-radius: 50%;
  border: var(--secondary-color) 1px solid;
  width: clamp(2rem, 4vw, 4vw);
  height: clamp(2rem, 4vw, 4vw);
  min-width: 2.5rem;
  min-height: 2.5rem;
  background-color: var(--gray);
  cursor: pointer;
}

/*------ Team Section ------*/
.team {
  width: 100%;
  margin-top: 10vh;
}

.members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 10vh;
}

.member {
  padding: 2.5rem 2.1875rem;
  border: var(--secondary-color) 2px solid;
  border-radius: 2.8125rem;
  transition: transform 0.3s ease;
}

.member:hover {
  transform: translateY(-0.3125rem);
}

.member > div {
  display: flex;
  justify-content: flex-start;
  align-items: last baseline;
  position: relative;
  gap: 1vw;
  flex-wrap: wrap;
}

.member > div > img {
  width: 30%;
  max-width: 5rem;
  height: auto;
  object-fit: contain;
}

.member > div > div > h1 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
}

.member > div > div > p {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.member > div > svg {
  position: absolute;
  width: clamp(1.5rem, 2vw, 2rem);
  padding: 0.25rem;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
}

.member > hr {
  margin: 1.5rem 0;
  border: var(--secondary-color) solid 1px;
}

.member > p {
  width: 90%;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  line-height: 1.5;
}

.team > span {
  width: 100%;
  display: flex;
  justify-content: end;
}

.team > span > button {
  background-color: var(--secondary-color);
  color: var(--gray);
  border: none;
  padding: 0.9375rem 3.125rem;
  font-size: 1.1875rem;
  border-radius: 0.625rem;
  cursor: pointer;
  margin-top: 5vh;
  transition: transform 0.3s ease;
}

.team > span > button:hover {
  transform: scale(1.05);
}

/*------ Testimonials ------*/
.testimonials {
  width: 100%;
  margin-top: 10vh;
}

.testimonial {
  width: 100%;
  margin-top: 10vh;
  color: var(--gray);
  background-color: var(--secondary-color);
  border-radius: 2.8125rem;
  padding: clamp(2rem, 5vw, 4vh) 0;
  gap: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card1 {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: absolute;
  top: 0;
  left: -25%;
}

.testimonial-card2 {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: absolute;
  top: 0;
  right: -25%;
}

.testimonial-card > p,
.testimonial-card1 > p,
.testimonial-card2 > p {
  border: var(--primary-color) 1px solid;
  border-radius: 2.8125rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  line-height: 1.5;
}

.testimonial-card > div,
.testimonial-card1 > div,
.testimonial-card2 > div {
  font-size: 0.625rem;
  margin-left: 6vw;
}

.testimonial-card > div > h1,
.testimonial-card1 > div > h1,
.testimonial-card2 > div > h1 {
  color: var(--primary-color);
}

.testimonial-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15vw;
  margin-top: 2rem;
}

.testimonial-menu > svg,
.svg1 {
  width: 2.1875rem;
  border: var(--secondary-color) 3px solid;
}

.svg1 {
  opacity: 50%;
}

/*------ Contacts ------*/
.contacts {
  width: 100%;
  margin-top: 10vh;
}

.contact-wrapper {
  display: flex;
  background: var(--gray);
  border-radius: 3.125rem;
  padding: clamp(1.5rem, 4vw, 3vw) clamp(2rem, 5vw, 5vw);
  gap: 2.5rem;
  align-items: center;
  margin-top: 10vh;
}

.contact-form {
  flex: 1;
}

.radio-group {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.radio-group input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--secondary-color);
}

.input-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #b4f000;
}

.btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 25rem;
  height: auto;
  border-radius: 0.625rem;
}

/*------ Footer ------*/
footer {
  background: linear-gradient(135deg, #0f1220, #1b1f35);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(2rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.875rem 1.875rem 0 0;
  margin-top: 10vh;
}

.footer-container {
  max-width: 75rem;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.125rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.logo {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 0.625rem;
}

.logo img {
  width: 2rem;
  height: 2rem;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2.1875rem);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: underline;
  color: #fff;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.socials {
  display: flex;
  gap: 0.9375rem;
}

.socials a {
  width: 2.25rem;
  height: 2.25rem;
  background: #fff;
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  font-size: 1.5625rem;
  transition: transform 0.3s ease;
}

.socials a:hover {
  transform: scale(1.1);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact {
  max-width: 21.875rem;
}

.contact-title {
  background: #b6f04a;
  color: #000;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.contact p {
  margin-bottom: 0.9375rem;
  color: #dcdcdc;
  line-height: 1.5;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.newsletter {
  background: var(--gray-dark);
  padding: 1.875rem;
  border-radius: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 0.875rem 1.25rem;
  width: clamp(12rem, 20vw, 15.625rem);
  border-radius: 0.75rem;
  border: 1px solid #aaa;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 1rem;
}

.newsletter button {
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  border: none;
  background: #b6f04a;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.newsletter button:hover {
  transform: scale(1.05);
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.875rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #dcdcdc;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* ======================== MEDIA QUERIES ======================== */

/*------ Tablet and below (max-width: 1024px) ------*/
@media screen and (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .members {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cases {
    flex-direction: column;
  }
  
  .cases > hr {
    display: none;
  }
  
  .processes {
    gap: 1rem;
  }
}

/*------ Tablet (max-width: 768px) ------*/
@media screen and (max-width: 768px) {
  body {
    padding: 0 4vw;
  }
  
  /*------ Navigation ------*/
  .menu-toggle {
    display: flex;
  }
  
  nav > ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }
  
  nav > ul.active {
    right: 0;
  }
  
  nav > ul > li {
    font-size: 1.5rem;
  }
  
  /*------ Hero ------*/
  .hero-top {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-part1 {
    width: 100%;
    text-align: center;
  }
  
  .hero-part1 > h1 {
    line-height: 1.3;
  }
  
  .hero-part1 > p {
    width: 100%;
  }
  
  .hero-part2 {
    width: 100%;
  }
  
  .hero-part2 > img {
    max-width: 80%;
  }
  
  /*------ Companies ------*/
  .companies-logo {
    justify-content: center;
  }
  
  .companies-logo > img {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    text-align: center;
  }
  
  /*------ Services ------*/
  .heading {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .heading > p {
    width: 100%;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    flex-direction: row;
    text-align: left;
  }
  
  .card > .card-part1 {
    width: 60%;
    align-items: flex-start;
  }
  
  .card > .card-part2 {
    width: 40%;
  }
  
  /*------ CTA ------*/
  .CTA {
    flex-direction: column;
    text-align: center;
  }
  
  .CTA > .cta-left {
    align-items: center;
  }
  
  .CTA > .cta-right {
    width: 100%;
  }
  
  /*------ Case Studies ------*/
  .cases {
    flex-direction: column;
    padding: 2rem;
  }
  
  .case {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  /*------ Work Process ------*/
  .process > div > div,
  .process1 > div > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .process > div > div > h1,
  .process1 > div > div > h1 {
    font-size: 2rem;
  }
  
  .process > div > div > h2,
  .process1 > div > div > h2 {
    font-size: 1.25rem;
  }
  
  /*------ Team ------*/
  .members {
    grid-template-columns: 1fr;
  }

  .member > div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  .member > div > img {
    width: 4rem;
  }

  .member > div > div > h1 {
    font-size: 1.25rem;
  }

  .member > div > svg {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  /*------ Testimonials ------*/
  .testimonial-cards {
    flex-direction: column;
  }
  
  .testimonial-card,
  .testimonial-card1,
  .testimonial-card2 {
    width: 100%;
    position: static;
  }
  
  .testimonial-menu {
    gap: 2rem;
  }
  
  /*------ Contacts ------*/
  .contact-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
  
  .contact-image {
    order: -1;
    width: 100%;
  }
  
  /*------ Footer ------*/
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .newsletter {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter input {
    width: 100%;
  }
  
  .newsletter button {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/*------ Mobile (max-width: 480px) ------*/
@media screen and (max-width: 480px) {
  body {
    padding: 0 5vw;
  }
  
  nav {
    padding: 1.25rem 0;
  }
  
  nav > div > h1 {
    font-size: 1.5rem;
  }
  
  nav > div > img {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .hero-part1 > h1 {
    font-size: 1.75rem;
  }
  
  .hero-part1 > p {
    font-size: 0.9375rem;
  }
  
  .hero-part1 > button {
    width: 100%;
    font-size: 1rem;
  }
  
  .companies-logo > img {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
  
  .heading > h1 {
    font-size: 1.25rem;
  }
  
  .heading > p {
    font-size: 0.9375rem;
  }
  
  .card {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }
  
  .card > .card-part2 > img {
    max-height: 6rem;
  }
  
  .CTA {
    border-radius: 1.5rem;
  }
  
  .CTA > .cta-left > button {
    width: 100%;
  }
  
  .cases {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
  
  .process,
  .process1 {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }
  
  .process > div > svg,
  .process1 > div > svg {
    width: 2rem;
    height: 2rem;
  }
  
  .member {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .testimonial {
    border-radius: 1.5rem;
  }
  
  .testimonial-card > p,
  .testimonial-card1 > p,
  .testimonial-card2 > p {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }
  
  .contact-wrapper {
    border-radius: 1.5rem;
  }
  .contact-image img{
    display: none;
  }
  
  footer {
    border-radius: 1.5rem 1.5rem 0 0;
  }
  
  .logo h1 {
    font-size: 1.25rem;
  }
}

/*------ Large Desktop (min-width: 1400px) ------*/
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
  
  .hero-part1 > h1 {
    font-size: 4rem;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
  }
}