* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
a{ text-decoration: none; color: #222; }

body {
  background: #f5f5f5;
}

.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.logo span {
  color: #f26b4f;
  font-style: italic;
}

/* Desktop Nav */
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #777;
  font-size: 14px;
}

.nav a.active {
  color: #f26b4f;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: 0.3s ease;
}

/* Burger → X animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 3px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu (FROM RIGHT) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px; /* changed from left */
  width: 250px;
  height: 100%;
  background: #ff8b6c;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}
.mobile-menu ul li{ list-style-type: none; text-align: center; padding: 15px 0; }
.mobile-menu ul li a{ text-decoration: none; color: #fff; }
.nav a:hover{ color: #f26b4f; }
.mobile-menu.active {
  right: 0; /* slide in */
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 55vh;
  background: url("topimage.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero .subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.hero .subtitle em {
  font-style: italic;
  opacity: 0.8;
}

/* TESTIMONIAL SECTION */
.testimonial {
  background: #555;
  padding: 60px 20px;
  color: #ddd;
  text-align: center;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 15px;
}
.testimonial-container p{ font-size: 1.3em; }

.testimonial span {
  color: #f26b4f; /* accent */
}

.testimonial strong {
  color: #fff;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* FEATURED LOGOS */
.featured {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.featured-container {
  max-width: 1100px;
  margin: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 60px;
  align-items: center;
  justify-items: center;
  margin-bottom: 40px;
}

.logo-grid img {
  max-width: 120px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.browse-text {
  font-size: 18px;
  color: #555;
}

.browse-text span {
  color: #f26b4f;
  font-style: italic;
}

/* CTA */
.cta {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

/* FOOTER */
.footer {
  background: #555;
  color: #ccc;
  padding: 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  font-size: 13px;
}

/* Social Icons */
.socials a {
  margin-left: 15px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.socials a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}