body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #555456;
  background-color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 5%;
  flex-wrap: wrap;
  background-color: #fff;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  background-color: #0B99BB;
  color: #fff;
  display: inline-block;
  margin: 0 auto 30px;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;

}

.cta-button:hover {
  background-color: #097d9b;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 20px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
}


.products {
  padding: 60px 5%;
  background-color: #F5F5F5;
  text-align: center;
}

.products h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0 8px;
  color: #0B99BB;
}

.product-card p {
  font-size: 0.95rem;
  color: #555456;
}

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}


.why-aetrio {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
}

.why-aetrio h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.why-aetrio .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 40px;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.why-card {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #F5F5F5;
}

.why-card img {
  width: 80px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0;
  color: #0B99BB;
}

.why-card p {
  font-size: 0.95rem;
  color: #555456;
}

@media (max-width: 768px) {
  .why-grid {
    flex-direction: column;
    align-items: center;
  }
}


.projects {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
}

.projects h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.projects .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 40px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
  background: #F5F5F5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 16px;
  font-size: 1.1rem;
  color: #0B99BB;
}

.project-card p {
  font-size: 0.95rem;
  margin: 0 16px 20px;
  color: #555456;
}

@media (max-width: 768px) {
  .project-grid {
    flex-direction: column;
    align-items: center;
  }
}


.who-we-serve {
  padding: 60px 5%;
  text-align: center;
  background-color: #ffffff;
}

.who-we-serve h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.who-we-serve .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 40px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.client-logos img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-logos img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .client-logos {
    gap: 20px;
  }
}


.logo-slider {
  overflow: hidden;
  padding: 30px 0;
  background-color: #ffffff;
}

.logo-track {
  display: flex;
  width: calc(200px * 10);
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contact {
  padding: 60px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.contact .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  margin-bottom: 30px;
  background-color: #0B99BB;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #097d9b;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: none; /* ✅ Prevents resizing */
}

.contact-form button {
  background-color: #0B99BB;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #097d9b;
}


.footer {
  background-color: #0B99BB;
  color: #fff;
  padding: 40px 5% 20px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
}

.footer h3,
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  color:  #555456;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: #555456;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
}

.privacy-policy {
  padding: 40px 5%;
  font-size: 0.75rem;
  color: #555456;
  background-color: #f5f5f5;
  text-align: center;
}

.privacy-policy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000;
}

.privacy-policy p {
  max-width: 1000px;
  margin: 10px auto;
  line-height: 1.6;
}

.privacy-policy a {
  color: #0B99BB;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

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

.logo-slider-dual {
  overflow: hidden;
  background-color: #ffffff;
  padding: 30px 0;
}

.logo-track-wrapper {
  display: flex;
  flex-direction: column; /* 🔧 Stack rows vertically */
  gap: 20px; /* Optional: spacing between rows */
  width: 100%;
  overflow: hidden;
}

.logo-track-row {
  display: flex;
  width: fit-content;   /* or max-content */
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  min-width: 200%; /* ✅ This is critical for looping */
  gap: 60px;
  padding: 10px 0;
  justify-content: flex-start;
}

.logo-track-row.left {
  animation-name: scroll-left;
  transform: translateX(15%); /* Start shifted to the right */
}

.logo-track-row.right {
  animation-name: scroll-right;
}

.logo-track-row img {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-track-row img:hover {
  filter: none;
  opacity: 1;
}

.logo-slider-dual:hover .logo-track-row {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(15%); } /* Start with logo just peeking in */
  100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.hero-logo {
  height: 100px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-map {
  flex: 1 1 300px;
  min-width: 260px;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 40px 5%;
  background-color: #f2f2f2;
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #555;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 8px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 5px;
}

.footer-links a,
.footer-social a {
  color: #0B99BB;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding: 15px 5%;
  background-color: #e8e8e8;
  font-size: 0.85rem;
  color: #777;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #dddddd;
}

.company-profile {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
}

.company-profile h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.company-profile .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-social,
  .footer-map {
    flex: 1 1 100%;
    min-width: unset;
    margin-bottom: 20px;
  }

  .footer-map iframe {
    width: 100% !important;
    height: 250px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 10px 15px;
  }

  .footer h3,
  .footer h4 {
    font-size: 1.1rem;
  }

  .footer p,
  .footer a {
    font-size: 0.95rem;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

.compro-section {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
}

.compro-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.compro-section .subtitle {
  font-size: 1rem;
  color: #555456;
  margin-bottom: 30px;
}

.logo-top {
  text-align: center;
  padding: 20px 0 0;
  background-color: #ffffff;
}

.logo-top .hero-logo {
  height: 80px;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}
