/* ========================= */
/* RESET & GLOBAL */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --yellow: #f4c430;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
}

/* ========================= */
/* INDEX/BODY BACKGROUND */
/* ========================= */
body.index {
  background: url("images/index-bg.jpg") center center / cover no-repeat fixed;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,11,0.95);
  padding: 20px 8%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.company-logo {
  width: 45px;
  height: auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.logo span {
  color: var(--yellow);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

/* ========================= */
/* HAMBURGER & MOBILE MENU */
/* ========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 8%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 100px 25px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 998;
  }

  .nav-links.active {
    right: 0;
  }
}

/* ========================= */
/* HERO SECTION (ABOUT) */
/* ========================= */
.about-hero {
  min-height: 85vh;
  background: url("images/about-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0; /* remove padding to stretch full-width */
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 40px 5%; /* small side padding for readability */
  color: #fff;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Headings */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--yellow);
}

/* Paragraph spacing */
.hero-content p {
  margin-bottom: 1.5em;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-content {
    padding: 30px 5%;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {
  .hero-content {
    padding: 20px 3%;
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* ========================= */
/* MD SECTION */
/* ========================= */
.md-section {
  padding: 80px 8%;
}

.md-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.md-card {
  flex-shrink: 0;
  width: 260px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.md-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
}

.md-info h4 {
  margin-bottom: 5px;
}

.md-info span {
  font-size: 0.9rem;
  color: var(--yellow);
}

.md-text {
  flex: 1;
  line-height: 1.9;
  font-size: 1.05rem;
  color: #111; /* or #fff or #eee */
}


/* ========================= */
/* TEAM SECTION */
/* ========================= */
.team-section {
  padding: 80px 8%;
  background-color: #f9f9f9;
  color: #111;
  border-radius: 12px;
}

.team-text, .team-pillars li {
  color: #111;
  line-height: 1.8;
  margin-bottom: 15px;
}

.team-pillars strong {
  color: var(--yellow);
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ========================= */
/* APPREHENSIONS SECTION */
/* ========================= */
.apprehensions {
  padding: 80px 8%;
}

.apprehension-card {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.apprehension-img img {
  width: 320px;
  height: 220px;
  object-fit: cover;
}

.apprehension-text {
  padding: 15px;
  line-height: 1.7;
  color: #111;
}

.apprehension-text h3 {
  color: var(--yellow);
  margin-bottom: 10px;
}

.apprehension-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */
.testimonials {
  padding: 80px 8%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonials .section-title {
  color: var(--yellow);
  margin-bottom: 40px;
}

.video-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.video-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ========================= */
/* FULL-WIDTH COMPANY TEXT */
/* ========================= */
.company-text {
  width: 100%;
  padding: 20px 5%;
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #111;
}

.company-text p {
  margin-bottom: 1.5em;
}

.company-text h2,
.company-text h3 {
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: 600;
  color: var(--yellow);
  line-height: 1.3;
}

.company-text p:first-letter {
  font-size: 1.3rem;
  font-weight: 600;
}

/* ========================= */
/* RESPONSIVE FIXES */
/* ========================= */
@media (max-width: 900px) {
  .md-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .md-card {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .md-text {
    width: 100%;
    text-align: center;
  }

  .team-cards {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: auto;
  }

  .apprehension-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .apprehension-img img {
    width: 100%;
    height: auto;
  }

  .video-slider {
    flex-direction: column;
    scroll-snap-type: none;
  }

  .video-card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .md-text p,
  .apprehension-text p,
  .team-text {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .company-text {
    padding: 15px 2%;
    font-size: 0.95rem;
  }
}
/* Hollard Section specific styling */
.hollard-grid {
  display: flex;
  flex-direction: column; /* stack image and video vertically */
  gap: 25px;
}

.hollard-grid img,
.hollard-grid video {
  width: 100%;        /* make both full width */
  height: 400px;      /* larger image/video height */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hollard-grid img:hover,
.hollard-grid video:hover {
  transform: scale(1.03);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hollard-grid img,
  .hollard-grid video {
    height: 240px;
  }
}
