:root {
  --yellow: #facc15;
  --green: #22c55e;
  --dark: #020617;
}

/* ================= GLOBAL RESET ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #020617;
  color: white;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.9);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ================= VIDEO — GUARANTEED FULL VISIBILITY ================= */

.video-hero {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  min-height: 100vh;

  background: black;
  overflow: hidden;
}

/* The ONLY correct way to ensure full video is visible */
.video-hero video {
  max-width: 100%;
  max-height: 100vh;

  width: auto;
  height: auto;

  object-fit: contain;
  background: black;
}

/* Mobile safe viewport (Chrome / Safari fix) */
@media (max-width: 768px) {
  .video-hero {
    min-height: calc(100svh - 70px);
    max-height: calc(100svh - 70px);
  }
}

/* ================= IMAGE SLIDER ================= */
.carousel-container {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* DESKTOP – show full image, no cut */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

h2 {
  color: var(--yellow);
}

/* ================= DESKTOP READABILITY FIX ================= */
@media (min-width: 769px) {

  .content-section {
    padding: 40px 20px;   /* reduced vertical padding */
  }

  .content-section p {
    line-height: 1.75;    /* better readability */
    font-size: 1.05rem;
    margin-top: 12px;
  }

  .content-section h2 {
    margin-bottom: 10px;  /* removes excess gap */
  }
}

/* ================= TESTIMONIALS ================= */
.testimonial {
  display: none;
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--yellow);
  margin-bottom: 15px;
}

/* ================= WHATSAPP FLOAT – FIXED ================= */
.whatsapp-float {
  position: fixed;
  width: 55px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;        /* VERY important */
}

.whatsapp-float img {
  width: 55px;
  display: block;
}

body {
  overflow-x: hidden;
}

/* ================= FOOTER ================= */
footer {
  background: black;
  text-align: center;
  padding: 25px;
}

/* ================= FOOTER LINK COLOR FIX ================= */
footer a {
  color: white;
  text-decoration: none;
}

footer a:visited,
footer a:hover,
footer a:active {
  color: white;
}

/* ================= 50 / 50 INTRO SECTION ================= */
/* About (left) + Offerings / tagline (right) */

.intro-split {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-left h2 {
  color: var(--yellow);
  margin-bottom: 15px;
}

.intro-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.intro-right h1 {
  font-size: 1.3rem; /* 50% reduction */
  line-height: 1.4;
}

.intro-right p {
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* ================= MOBILE STACKING ================= */
@media (max-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .intro-right h1 {
    font-size: 2rem;
  }

  .carousel-container {
    height: 30vh;
  }

  .carousel-slide img {
    height: 30vh;
  }
}
#home {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .carousel-container {
    height: 30vh;
  }

  .carousel-slide img {
    height: 30vh;
    object-fit: cover;
  }
}
/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;              /* allows multi-line */
    gap: 12px;
  }

  nav ul li {
    white-space: nowrap;          /* prevents ugly breaks */
  }
}