/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto Condensed', sans-serif; background: #000; color: #fff; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px; /* reduce top space */
  background: #000; /* keep dark header */
  position: fixed; /* make it stick like Levergy */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.logo-img {
  height: 90px; /* shrink logo if needed */
  width: 225px;
}
/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-links {
  display: flex;
  gap: 25px; /* spacing between nav links */
  align-content: center;
}
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials a {
  color: white;
  margin-left: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}
.socials a:hover {
  color: #f4c542; /* gold hover */
}
/* Push socials far to the right with a big gap */
.nav .socials {
  margin-left: 80px;  /* ✅ adjust this value for bigger or smaller gap */
  display: flex;
  gap: 15px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.nav a.active { border-bottom: 2px solid #b39203; }

/* Dropdown desktop */
.nav-item { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  padding: 20px 0;
  min-width: 180px;
  z-index: 999;
}
.submenu a {
  display: block;
  padding: 14px 15px;
  color: #fff;
  text-decoration: none;
}
.submenu a:hover {
  background: #111;
}
.nav-item:hover .submenu {
  display: block;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hamburger active animation */
.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(5px, -5px);
}

/* Hero */
 .hero { 
  height:90vh; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  text-align:center; 
  background:url('hero-bg.jpg') no-repeat center/cover; 
  position:relative; 
} 
.hero-content { 
  position:relative; 
  z-index:2; 
  opacity:0; 
  transform:translateY(30px); 
  transition:1s ease-out;
 } 
 .hero-content.visible { 
  opacity:1; 
  transform:translateY(0);
 } 
 .hero h1 { 
  font-size:3.5rem; 
  text-transform:uppercase; 
  margin-top: 50px; 
  margin-bottom:25px; 
  transition:1s ease-out; 
}
 /* Section container */ 
 section { padding: 60px 40px; /* spacing on left & right */ 
  max-width: 1200px; /* limit width */ 
  margin: 0 auto; /* center whole section */ color: #fff; /* white text */ text-align: justify; /* justify paragraph text */ } /* Headings */ section h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: left; /* headings left aligned */ } section h4 { font-size: 17px; font-weight: 200; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: left; /* headings left aligned */ } /* Paragraphs */ section p { font-size: 17px; line-height: 1.7; margin-bottom: 40px; max-width: 100%; /* let text flow full width */ text-align: justify; /* force justified alignment */ } /* Gold underline under headings (aligned left) */ section h2::after { content: ""; display: block; width: 60px; height: 3px; background-color: #d4af37; /* gold */ margin: 10px 0; /* keep it tight under heading */ border-radius: 2px; } .section-title { font-size: 36px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: center; } .section-title::after { content: ""; display: block; width: 60px; height: 3px; background-color: #d4af37; /* gold */ margin: 10px 0; align-self: center; /* keep it tight under heading */ border-radius: 2px; } .section-intro { font-size: 18px; line-height: 1.7; margin-bottom: 60px; max-width: 100%; /* let text flow full width */ text-align: center; } /* Drop cap effect */ .section p::first-letter { font-size: 2.8rem; font-weight: 700; float: left; line-height: 1; margin-right: 8px; color: #b39203; /* gold accent */ } /* Services Section */ .services { padding: 120px 50px; background: #000; color: #fff; } .services-header { text-align: center; margin-bottom: 60px; } .services-header h1 { font-size: 2.5rem; color: #b39203; margin-bottom: 16px; } .services-header p { color: #fff; font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.6; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 40px; } /* Accordion Cards */ .service-card { background: #111; border-radius: 10px; overflow: hidden; border: 1px solid #222; } .accordion { width: 100%; text-align: left; background: none; border: none; outline: none; padding: 20px 30px; font-size: 1.5rem; font-weight: 550; color: #fff; cursor: pointer; position: relative; display: flex; justify-content: space-between; align-items: center; } .accordion:hover { color: #b39203; } .arrow { font-size: 1.5rem; color: #b39203; transition: transform 0.3s ease; } .accordion-content { max-height: 0; overflow: hidden; background: #111; padding: 0 25px; transition: max-height 0.4s ease, padding 0.4s ease; } .accordion-content ul { list-style: none; padding-left: 0; } .accordion-content ul li { margin-bottom: 12px; color: #ccc; font-size: 1.05rem; line-height: 1.6; position: relative; padding-left: 18px; } .accordion-content ul li::before { content: "•"; position: absolute; left: 0; color: #b39203; } .service-card.active .accordion-content { max-height: 810px; /* enough to fit content */ padding: 20px 25px; } .service-card.active .arrow { transform: rotate(45deg); /* turns + into × */ } /* Footer inside services */ .services-footer { margin-top: 50px; text-align: center; } .services-footer p { max-width: 800px; margin: 0 auto; color: #fff; font-size: 1rem; line-height: 1.6; } /* Footer */ .footer { background-color: #161616; /* black background */ color: #fff; /* white text */ padding: 20px 60px 15px; font-family: 'Roboto Condensed', sans-serif; } .footer-container { display: grid; grid-template-columns: repeat(6, 1fr); /* 6 equal columns */ gap: 40px; margin: 0 auto 40px; max-width: 1200px; /* keeps group centered */ text-align: center; /* centers everything inside */ } .footer-column { text-align: center; /* centers each column’s content */ } .footer-column h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; text-align: left; } .footer-column ul { list-style: none; padding: 0; } .footer-column ul li { margin-bottom: 8px; text-align: left; /* centers list items */ } .footer-column ul li a { color: #fff; text-decoration: none; font-size: 14px; transition: color 0.3s ease; } .footer-column ul li a:hover { color: #c4c4c4; /* hover grey */ } .footer-column p { font-size: 14px; line-height: 1.6; text-align: left; } .footer-bottom { border-top: 1px solid #fff; padding-top: 20px; display: flex; justify-content: center; /* center aligns the ©, cookies, etc. */ font-size: 12px; color: #fff; text-align: center; }


#team {
  position: relative;
  padding-top: 100px;   /* same height as navbar */
  margin-top: -100px;   /* pull section back up visually */
}
/* Keyframes */
@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.team-member {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  opacity: 0; /* start hidden */
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-timing-function: ease-out;
}

/* Alternate animations: odd slides in left, even slides in right */
.team-member:nth-child(2n+1) {
  animation-name: slideInLeft;
}

.team-member:nth-child(2n) {
  animation-name: slideInRight;
}

/* Add a little stagger effect */
.team-member:nth-child(1) {
  animation-delay: 0.2s;
}
.team-member:nth-child(2) {
  animation-delay: 0.4s;
}
.team-member:nth-child(3) {
  animation-delay: 0.6s;
}

/* Special styling for detailed profile inside same section */
.team-member.profile {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 50px;
}

.team-member.profile .member-img img {
  width: 350px;
  height: 445px;
  border-radius: 6px;
  background: #ddd; /* placeholder if no image */
}

.team-member.profile .member-info {
  flex: 1;
  text-align: justify;
}

.team-member.profile h3 {
  font-size: 22px;
  margin: 0 0 5px;
}

.team-member.profile .role {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #fff;
}


/* Arrow styles */
.arrow {
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  margin-right: 20px;
}

.arrow.gold {
  border-left: 70px solid #c78b2e; /* gold */
}

.arrow.white {
  border-left: 70px solid #fff; /* white */
}

/* Footer */
.footer { background:#161616; color:#fff; padding:20px 60px 15px; font-family:'Roboto Condensed',sans-serif; }
.footer-container {
  display:grid; grid-template-columns:repeat(6,1fr); gap:40px; margin:0 auto 40px; max-width:1200px;
}
.footer-column h4 { font-size:15px; font-weight:700; text-transform:uppercase; margin-bottom:15px; text-align:left; }
.footer-column ul { list-style:none; padding:0; }
.footer-column ul li { margin-bottom:8px; text-align:left; }
.footer-column ul li a { color:#fff; font-size:14px; transition:0.3s; }
.footer-column ul li a:hover { color:#c4c4c4; }
.footer-column p { font-size:14px; line-height:1.6; text-align:left; }
.footer-bottom { border-top:1px solid #fff; padding-top:20px; display:flex; justify-content:center; font-size:12px; text-align:center; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ========== TEAM ========== */
.team-member {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-timing-function: ease-out;
}
.team-member .member-info {
  flex: 1;
  text-align: justify; /* justified text */
}

/* Alternate animations */
.team-member:nth-child(2n+1) { animation-name: slideInLeft; }
.team-member:nth-child(2n) { animation-name: slideInRight; }
.team-member:nth-child(1) { animation-delay: 0.2s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.6s; }

/* Profile (detailed) */
.team-member.profile {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 50px;
}
.team-member.profile .member-img img {
  width: 350px;
  height: 445px;
  border-radius: 6px;
  background: #ddd;
}
.team-member.profile .member-info {
  flex: 1;
  text-align: justify;
}

/* Arrows */
.arrow {
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  margin-right: 20px;
  animation: arrowPulse 2s infinite; /* animate arrows */
}
.arrow.gold { border-left: 70px solid #c78b2e; }
.arrow.white { border-left: 70px solid #fff; }

@keyframes arrowPulse {
  0% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(10px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.7; }
}

/* ========== RESPONSIVE ========== */

/* Tablets */
@media (max-width: 1024px) {
  /* Clients → 2 columns */
  .client-logos { grid-template-columns: repeat(2, 1fr); }

  /* Team images shrink */
  .team-member .member-img img { width: 220px; height: auto; }

  /* Arrow scale down */
  .arrow {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left-width: 40px;
  }

  /* Team collapses */
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  .team-member .member-info {
    text-align: justify; /* keep justified even on mobile */
  }
  .team-member .member-img img {
    width: 80%;
    height: 80%;
    max-width: 400px;
    height: 250px;
    
  }
  .arrow {
    margin: 0 auto 15px;
    border-left-width: 50px;
  }

  /* Hero smaller */
  .hero h1 { font-size: 2.5rem; margin-top: 70px; }
  section { padding: 90px 20px; }
}

 /* Hide nav by default on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav a, .submenu a {
    font-size: 18px;
    color: #fff;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Dropdowns in mobile */
  .nav-item .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: none;
    display: none;
    padding-left: 15px;
  }

  .nav-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Fix socials: bottom-left inside nav */
  .socials {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: row; /* keep horizontal */
    gap: 20px;
  }

  /* Make hero and sections scroll nicely */
  section {
    padding: 100px 20px;
  }
}

/* === Responsive Footer === */
@media (max-width: 1024px) {
    .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav a, .submenu a {
    font-size: 18px;
    color: #fff;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Dropdowns in mobile */
  .nav-item .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: none;
    display: none;
    padding-left: 15px;
  }

  .nav-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Fix socials: bottom-left inside nav */
  .socials {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: row; /* keep horizontal */
    gap: 20px;
  }

  /* Make hero and sections scroll nicely */
  section {
    padding: 100px 20px;
  }
}