/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Readex Pro', sans-serif;
  text-decoration:none;
  list-style:none;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* NAVIGATION */

.nav{
  padding:20px 5%;
  background:#000;
}

.nav-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.call-btn{
  background:#FFD700;
  color:#000;
  padding:8px 18px;
  border-radius:30px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  background:#fff;
}

.nav-main{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
}

.logo{
  width:60px;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  color:#fff;
  transition:0.3s;
}

.nav-links a:hover{
  color:#FFD700;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:#FFD700;
  font-size:28px;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transition:0.4s;
  z-index:1000;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu ul{
  text-align:center;
}

.mobile-menu li{
  margin:20px 0;
  font-size:24px;
}

.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:none;
  color:#FFD700;
  font-size:30px;
}

/* HERO SECTION */

.about-hero{
  height:60vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:#111;
}

.about-hero h1{
  font-size:3rem;
  color:#FFD700;
}

.about-hero p{
  margin-top:10px;
  font-size:1.2rem;
}

/* SECTION GENERAL */

.section{
  padding:80px 5%;
  text-align:center;
}

.section h2{
  font-size:2.5rem;
  margin-bottom:40px;
  color:#FFD700;
}

/* WHAT WE DO */

.offer-box{
  max-width:800px;
  margin:0 auto;
  background:#FFD700;
  color:#000;
  padding:40px;
  border-radius:20px;
  font-size:1rem;
  line-height:1.6;
}

/* TEAM */
/* TEAM GRID */
.team-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

/* DEFAULT EMPLOYEE CARD */
.team-card{
  background:#111;
  padding:30px;
  border-radius:20px;
  width:260px;
  text-align:center;
  transition:0.4s;
  border:1px solid transparent;
}

.team-card:hover{
  transform:translateY(-10px);
  border:1px solid #FFD700;
}

/* SMALLER EMPLOYEE CARDS (LAST TWO) */
.small-card{
  width:220px;
  padding:20px;
  opacity:0.95;
  margin-top: 50px;
}

.small-card .team-img{
  width:90px;
  height:90px;
}

.small-card h3{
  font-size:0.95rem;
}

.small-card .role{
  font-size:0.8rem;
}

/* IMAGE STYLE */
.team-img{
  width:120px;
  height:120px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #FFD700;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* LOCATIONS */

.location-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:50px;
}

.location-card{
  background:#111;
  padding:40px;
  border-radius:20px;
  width:250px;
  transition:0.3s;
}

.location-card:hover{
  background:#FFD700;
  color:#000;
}

/* FOOTER */

.footer{
  background:#111;
  padding:40px 5%;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.footer h4{
  color:#FFD700;
  margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .about-hero h1{
    font-size:2rem;
  }

}