/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  text-decoration: none;
}

.nav__logo img {
  max-height: 35px; /* Adjust based on your header height */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .nav__logo img {
    max-height: 28px;
  }
  .nav__logo {
    font-size: 1rem;
    column-gap: 0.4rem;
  }
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color 0.3s;
}
.dropdown__link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Optional */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dropdown__sublink {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}

/* //I have added for hover */

/* Base styles for underline animation */
.dropdown__link::after,
.dropdown__sublink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px; /* adjust distance of underline */
  width: 100%;
  height: 2px;
  background-color: #ff5722;
  transform: scaleX(0);
  transform-origin: left; /* default: left to right */
  transition: transform 0.4s ease;
}

/* For dropdown__sublink animate from right */
.dropdown__sublink::after {
  transform-origin: right; /* right to left */
}

/* Optional: center expand (half from left, half from right) */
.dropdown__link.center::after {
  transform-origin: center; /* both sides meet in the middle */
}

/* On hover - underline shows */
.dropdown__link:hover::after,
.dropdown__sublink:hover::after {
  transform: scaleX(1);
}

/* Important: parent must be relative */
.dropdown__link,
.dropdown__sublink {
  position: relative;
  overflow: hidden; /* keeps underline inside */
}

/* ======= About Section ======= */
.about.section {
  padding: 80px 20px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-direction: row;
  flex-wrap: nowrap;
}

.about__image,
.about__content {
  flex: 1 1 50%;
}

.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.about__content {
  flex: 1 1 500px;
}
.about__subtitle {
  color: #f4a037;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}
.about__text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}
.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 25px;
}
.about__features ul {
  list-style: none;
  padding: 0;
}
.about__features li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #333;
}
.about__features i {
  color: #f15a29;
  margin-right: 8px;
}
.about__btn {
  background-color: #f15a29;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.about__btn:hover {
  background-color: #d9491f;
}

@media (max-width: 768px) {
  .about__container {
    flex-direction: column;
    text-align: center;
  }

  .about__image,
  .about__content {
    flex: 1 1 100%;
  }

  .about__features {
    justify-content: center;
  }
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}
/* <!--=============== ABOUT US ===============--> */

/* ======= Home Section Layout ======= */
/* Base layout */
.home-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.home-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}

.home-image {
  flex: 1;
  background: url("../img/about-us.jpg") no-repeat center center;
  background-size: cover;
}

.home-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  animation: fadeInRight 1s ease-out forwards;
  background-color: white;
  color: #000;
}

.home-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* .home-content span {
  color: #0077ff;
} */

.home-content p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.home-content .highlight {
  color: black; /* Orange highlight */
  font-weight: 600;
}

/* Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .home-container {
    flex-direction: column;
    height: auto;
    padding-top: 70px; /* Adjust based on your fixed navbar height */
  }

  .home-image {
    display: none;
  }

  .home-content .highlight {
    color: #ff5722; /* Orange highlight */
    font-weight: 600;
  }

  .home-content {
    background: url("../img/about-us.jpg") no-repeat center center;
    background-size: cover;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    min-height: 100vh;
    justify-content: center;
    animation: fadeInUp 1s ease-out forwards;
  }

  .home-content h1 {
    font-size: 2.2rem;
  }

  .home-content p {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(60px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* <!--=============== HOME ===============--> */

/* <!--=============== SERVICES ===============--> */
.services-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.services-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subtitle {
  color: #ff5722;
  font-weight: 700;
  text-transform: uppercase;
}

.read-more-btn {
  background-color: #ff5722;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e64a19;
}

.services-header .subtitle {
  color: #ff5722;
  font-weight: 700;
  font-size: 1.2rem;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  flex: 1 1 60%;
}

.read-more-btn {
  background-color: #ff5722;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e04b1e;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #111;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 1rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.service-card ul li::before {
  content: "▪";
  color: #ff5722;
  position: absolute;
  left: 0;
}

/* <!--=============== Added After for bulged ===============--> */

.service-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Both pseudo-elements handle half the border */
.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  pointer-events: none;
  transform: scaleX(0) scaleY(0);
  transition: transform 0.5s ease;
}

/* Top + Left border */
.service-card::before {
  border-top-color: #ff5722;
  border-left-color: #ff5722;
  transform-origin: top left;
}

/* Bottom + Right border */
.service-card::after {
  border-bottom-color: #ff5722;
  border-right-color: #ff5722;
  transform-origin: bottom right;
}

/* Hover triggers both together */
.service-card:hover::before,
.service-card:hover::after {
  transform: scaleX(1) scaleY(1);
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f7f7f7); /* subtle shine */
  padding: 2rem;
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px; /* more polished rounded edges */
  overflow: hidden;

  /* Bulged look */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12),
    inset 0 1px 3px rgba(255, 255, 255, 0.7);
}

/* Image */
.service-card img {
  max-width: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* subtle icon lift */
}

/* Headings */
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: 600;
}

/* List */
.service-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 1rem;
}

.service-card ul li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333; /* darker text */
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card ul li::before {
  content: "▪";
  color: #ff5722;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.read-link {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s;
}

.read-link:hover {
  color: #ff5722;
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .read-more-btn {
    align-self: left;
  }
}
/* <!--=============== SERVICES ===============--> */

/*=============== CONTACT SECTION ===============*/
.contact {
  padding: 60px 20px;
  background: #fff; /* same as other sections */
  opacity: 0; /* hidden initially */
  transform: translateY(50px); /* slide effect */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact.show {
  opacity: 1;
  transform: translateY(0);
}

.contact__container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact__subtitle {
  color: #f1592a;
  font-weight: bold;
  margin-bottom: 8px;
}

.contact__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact__desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.contact__box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.contact__box:hover {
  transform: scale(1.05);
}

.contact__icon {
  font-size: 28px;
  color: #f1592a;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #f1592a;
  box-shadow: 0 0 5px rgba(241, 89, 42, 0.5);
}

.contact__form textarea {
  resize: none;
}

.contact__btn {
  background: #f1592a;
  color: #fff;
  font-weight: bold;
  padding: 14px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
}

.contact__btn:hover {
  background: #d94b20;
}

/* Responsive */
@media (max-width: 900px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}

/* Section Base */
.why-company {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.why-company__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left content */
.why-company__content {
  flex: 1 1 500px;
}

.why-company__content .subtitle {
  font-size: 1.2rem; /* Bigger */
  font-weight: 700;
  color: #ff5722;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-company__content h2 {
  font-size: 2.5rem; /* Bigger heading */
  margin-bottom: 1.5rem;
  color: #111;
}

.why-company__content p {
  margin-bottom: 1.8rem;
  color: #444;
  line-height: 1.7;
  font-size: 1.1rem; /* Slightly bigger */
}

.why-company__content ul {
  list-style: none;
  padding: 0;
}

.why-company__content ul li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  color: #222;
  font-weight: 500;
  font-size: 1.05rem; /* Bigger list text */
}

.why-company__content ul li::before {
  content: "✔";
  color: #ff5722;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Right image */
.why-company__image {
  flex: 1 1 400px;
  text-align: center;
}

.why-company__image img {
  width: 100%;
  max-width: 450px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .why-company__container {
    flex-direction: column;
    text-align: center;
  }

  .why-company__content ul li {
    text-align: left;
  }

  /* Hide image on mobile */
  .why-company__image {
    display: none;
  }
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns on desktop */
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature .icon-img {
  width: 40px; /* compact size */
  height: 40px;
  object-fit: contain;
  flex-shrink: 0; /* prevent shrinking */
}

.feature .text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #111;
}

.feature .text p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* Responsive: stack into 1 column */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Initial state before animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Activated state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Clients section */
.clients {
  padding: 4rem 1rem;
  background: #ffffff; /* pure white background */
}

.clients__container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients__title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #ff5722; /* orange heading */
}

/* Keep viewport hidden overflow */
.clients__viewport {
  overflow: hidden;
  width: 100%;
}

/* same list & item styles as before */
.clients__list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateX(0);
  will-change: transform;
}

.clients__item {
  flex: 0 0 20%; /* 5 visible on large screens */
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__item img {
  max-width: 100%;
  height: 156px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.clients__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* Responsive: fewer logos per row */
@media (max-width: 1000px) {
  .clients__item {
    flex: 0 0 25%;
  } /* 4 visible */
}
@media (max-width: 700px) {
  .clients__item {
    flex: 0 0 33.333%;
  } /* 3 visible */
}
@media (max-width: 480px) {
  .clients__item {
    flex: 0 0 50%;
  } /* 2 visible */
}

.global-section {
  background: #fff;
  padding: 4rem 2rem;
}

.global-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.global-text {
  flex: 1;
}

.global-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.global-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.global-text span {
  color: #ff5722;
  font-weight: 600;
}

.global-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.global-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .global-container {
    flex-direction: column;
    text-align: center;
  }

  .global-image {
    display: none; /* Hide image on mobile */
  }
}

.footer {
  background-color: var(--black-color);
  padding: 1.5rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #fff; /* orange color */
  font-weight: 500;
}
