@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: "Mona Sans", sans-serif;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}


.navbar {
  display: flex;
  align-items: center;   /* keeps everything vertically centered */
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;          /* fixed navbar height */
  background: #000;      /* or your color */
}

.logo img {
  height: 150px;          /* control logo height */
  width: auto;           /* keeps aspect ratio */
  object-fit: contain;   /* prevents distortion */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  position: relative;          /* needed for underline */
  text-decoration: none;
  color: #fff;
  font-size: .8rem;
  transition: color 0.3s;
  padding-bottom: 4px;         /* space for underline */
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f0c040;         /* gold accent underline */
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f0c040;              /* text changes to gold */
}

.nav-links a:hover::after {
  width: 100%;                 /* underline grows left → right */
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}


/* Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #000;
    color: #fff;
    padding-top: 60px;
    transition: right 0.3s ease;
  }

  .nav-links li {
    margin: 20px 0;
    text-align: center;
  }

  .btn-contact {
    display: inline-block;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px; /* hidden off screen */
    height: 100%;
    width: 250px;
    background-color: #000;
    padding-top: 80px;
    transition: right 0.3s ease;
    gap: 10px;
    z-index: 999;
  }

  .nav-links.active {
    right: 0; /* slides into view */
  }

  .nav-links a {
    font-size: 10px;
    padding: 10px 20px;
    display: block;
  }

  .hamburger {
    display: block;
  }

  /* Close button styling */
  .close-btn {
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    padding: 0 20px;
    cursor: pointer;
    color: #fff;
  }
  .close-btn:hover {
    color: #f0c040;
  }
}

/* Hide close button on desktop */
.close-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
  padding: 10px 20px;
}

/* Show close button when mobile menu is active */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #000;
    color: #fff;
    padding-top: 60px;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .close-btn {
    display: block; /* show only in mobile mode */
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2rem;
  }
}

body {
  margin: 0;
  padding: 0;
  background: #000; /* only shows outside the hero section */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 85vh;
  padding: 15% 10% 0 10%;
  background-image: url(./bda\ background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.hero h5 {
  font-size: .9rem;
  color: #f0c040;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.5px;
}

.hero h3 {
  font-size: .89em;
  font-weight: 400;
  color: #ddd;
  letter-spacing: -.5px;
}

h3 {
  font-size: .8rem;
  font-weight: 400;
  color: #ddd;
  letter-spacing: -.5px;
}

h1 {
  
    font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.5px;
}

.text-right-p {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #fff;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20% 5% 0 5%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: .9rem;
  }
}


.text-btn {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Arrow (hidden by default) */
.text-btn::after {
  content: "→";
  position: absolute;
  right: -20px;      /* place arrow slightly outside text */
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.text-btn:hover {
  color: #f0c040;   /* gold accent on hover */
}

.text-btn:hover::after {
  right: -30px;     /* move arrow further out */
  opacity: 1;
}

.video-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  background: #000;
}

.video-left {
  flex: 1;
}

.text-right {
  flex: 1;
}


/* Responsive */
@media (max-width: 900px) {
  .video-section {
    flex-direction: column;
    text-align: center;
  }

  .text-right {
    margin-top: 20px;
  }
}

/* Hidden state */
.video-section .video-left,
.video-section .text-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.video-section.show .video-left,
.video-section.show .text-right {
  opacity: 1;
  transform: translateY(0);
}

.team-section {
  text-align: center;
  padding: 60px 20px;
  background: #000; /* dark background */
  color: #fff;
}

.team-section h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in the first row */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center; /* centers items in their grid cells */
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 220px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: grayscale(100%); /* black & white */
  transition: filter 0.3s ease-in-out;
}

.team-member img:hover {
  filter: grayscale(0%); /* back to color on hover */
}

.team-member h4 {
  font-size: .9rem;
  margin-bottom: 5px;
}

.team-member h5 {
  font-size: 0.8rem;
  font-weight: 300;
  color: #ccc;
}

/* --- Force 2nd row (members 4 & 5) to center --- */
.team-container .team-member:nth-child(4) {
  grid-column: 2; /* places 4th member in middle column */
}

.team-container .team-member:nth-child(5) {
  grid-column: 3; /* places 5th member in last column */
}

/* Responsive */
@media (max-width: 992px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reset forced columns on smaller screens */
  .team-container .team-member:nth-child(4),
  .team-container .team-member:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 576px) {
  .team-container {
    grid-template-columns: 1fr;
  }
}

.team-btn {
  margin-top: 40px;
  text-align: center;
}

.team-btn button {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-color: #fff;
  border-radius: 25px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-btn button:hover {
  background: #f0c040;
  color: #fff;
}

.footer {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    padding: 40px 10%;
    flex-wrap: wrap;
    text-decoration: none;
    gap: 10px;
}

.footer img {
    width: 100px;
    height: auto;
}

.footer-column {
    margin-right: 40px;
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}
.footer-column h2 {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column ul {
    text-decoration: none;
    list-style: none;
}

.footer-column ul li {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    margin-bottom: 20px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
}


@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 30px;
    }
}

.secondary-footer {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 1rem;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #f0c040; /* gold accent on hover */
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 30px;
    }
    .newsletter {
        justify-content: center;
        margin-top: 20px;
    }
    .secondary-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
}

.about-left {
  flex: 1;
}

.about-left p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: #fff;
}

.about-right {
  flex: 1;
  text-align: right;
}

.about-right h1 {
  font-size: 2rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-right {
    text-align: center;
  }
}

.what-we-do {
  text-align: center;
  padding: 60px 10%;
  background: #000;
}

.what-we-do h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* allows wrapping across multiple rows */
}

.box {
  background: #000;
  padding: 25px;
  border-radius: 4px;
  width: 250px; /* slightly smaller so 5 can fit better on large screens */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.box:hover {
  transform: translateY(-8px);
  background: #f0c040; /* gold accent on hover */
  color: #fff;
}

.box:hover h3,
.box:hover p {
  color: #fff; /* text turns white */
}

.box:hover .icon {
  color: #fff; /* icon turns white */
}

.icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f0c040; /* gold accent */
}

.box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.box p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .box {
    width: 45%; /* show 2 per row on medium screens */
  }
}

@media (max-width: 768px) {
  .box {
    width: 100%; /* 1 per row on small screens */
  }
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.video-link {
  display: relative;
  margin-top: 12px;
  font-size: .8rem;
  color: #f0c040;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.video-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #f0c040;
  transition: width 0.3s ease;
}

.video-link:hover {
  color: #d19b00;
}

.video-link:hover::after {
  width: 30%;
}

/* Selected Clients Section */
.clients-section {
  text-align: center;
  padding: 60px 20px;
  background: #000; /* optional background */
}

.clients-section h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.clients-grid img {
  max-width: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%); /* black & white effect */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.clients-grid .center-img {
  grid-column: 2; /* force the last logo into center column */
}

/* Responsive */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .clients-grid .center-img {
    grid-column: span 2; /* center last logo */
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr); /* still 2 per row */
    gap: 15px;
  }
  .clients-grid .center-img {
    grid-column: span 2; /* keep it centered */
  }
}

.team-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.team-details h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.team-profile {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.team-profile img {
  width: 220px;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.team-profile img:hover {
  filter: grayscale(0%);
}

.team-info h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: -.5px;
  font-weight: 700;
}

.team-info h3 {
  font-size: 1rem;
  color: #f4f4f4; /* gold accent */
  margin-bottom: 15px;
}

.team-info p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .team-profile {
    flex-direction: column;
    text-align: center;
  }

  .team-profile img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
