:root {
  --blue: #0a2540;
  --turquoise: #1abc9c;
  --light: #f5f7fa;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25;
}

.logo {
  height: 90px;
  

}

.desktop-menu a {
  margin-left: 25px;
  font-weight: 500;
}

.desktop-menu a:hover {
  color: var(--turquoise);
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--blue);
}

.mobile-menu a {
  display: block;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-color: azure;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide h2 {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 20px 30px;
  border-radius: 6px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--turquoise);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
}



.prev { left: 15px; }
.next { right: 15px; }

/* ================= SERVICES ================= */
.services {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  color: var(--blue);
  margin-bottom: 50px;
  font-size: 32px;
}

.service-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  margin-left: 120px;
  margin-right: 120px;
  align-items: center;
}

.service-item img {
  width: 60%;
  border-radius: 10px;
}

.service-text .icon {
  font-size: 32px;
  color: var(--turquoise);
}

.icon-sales {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(Assets/Icons/acquisition.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-repairs {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(Assets/Icons/services.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-text h3 {
  margin: 10px 0;
  color: var(--blue);
}
.service-text p {
  text-align: justify;
}

/* ================= PARTNERS ================= */
.partners {
  background: var(--light);
  padding: 50px 0;
}

.partners-track {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.partners-track img {
  height: 60px;
  transition: 0.3s;
}

.partners-track img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--blue);
  color: #fff;
  padding: 50px 0 20px;
}

.h4 {
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer a {
  display: flex;
  flex-direction: column;
}

.footer a:hover {
  color: var(--turquoise);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* ================= PRODUCTS PAGE ================= */
/* ================= Products Section ================= */

.products-section {
  padding: 60px 10%;
  background: #f5f5f5;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* 4 products per row */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Image */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  margin-bottom: 10px;
  text-align: center;
}

.product-content p {
  flex-grow: 1;
  font-size: 14px;
  color: #555;
}

/* Button */
.quote-btn {
  display: inline-block;
  text-align: center;
  padding: 10px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #005fa3;
}

/* ================= About Us ================= */

.about-us {
  padding: 60px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-us-img {
  width: 45%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-text {
  width: 55%;
  line-height: 1.6;
  text-align: justify;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .hamburger { display: block; }
  .service-item { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
