/* GLOBAL */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #0f172a;
  color: white;
  padding: 18px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav a {
  color: #e2e8f0;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #38bdf8;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* CARD */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* HEADINGS */
h1 {
  font-size: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0f172a;
}

h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* IMAGES */
img {
  max-width: 100%;
  border-radius: 10px;
}

/* VIDEO */
video {
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

/* LOGO GRID PREMIUM */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 25px;
}

.logo-grid img {
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* CAPTION */
.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-size: 14px;
}
/* SERVICES HERO SECTION */
.services-hero {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* BACKGROUND IMAGES */
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* CONTENT */
.services-content {
  position: relative;
  z-index: 2;
}

.services-content ul {
  line-height: 1.8;
}
/* SERVICES HERO */
.services-hero {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* BACKGROUND */
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* SLIDES */
.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

/* ACTIVE SLIDE */
.bg-slide.active {
  opacity: 1;
  transform: scale(1.08); /* slow zoom */
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* CONTENT */
.services-content {
  position: relative;
  z-index: 2;
}

/* CAPTION ANIMATION */
#service-caption {
  transition: opacity 0.5s ease;
}
