/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 30px;
  width: auto;
}

/* NAV + HAMBURGER WRAPPER */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* DESKTOP NAV LIST */
nav {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #5682B1;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #000;
  top: 100%;
  left: 0;
  min-width: 160px;
  border: 1px solid #1a1a1a;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
}

.dropdown-content a:hover {
  background: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* CONTACT BUTTON */
.contact-btn {
  background-color: #5682B1;
  padding: 8px 18px;
  border-radius: 8px;
  color: #fff !important;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #466e95;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }

  /* KEEP LOGO LEFT AND HAMBURGER EXTREME RIGHT */
  .nav-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  nav {
    width: 100%;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  /* MOBILE MENU HIDDEN INITIALLY */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 25px 0;
    gap: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    border: none;
  }
}

/* ===== SECTION ===== */
.container {
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-points {
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ===== INFLUENCERS ===== */
.influencer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  gap: 50px;
  flex-wrap: wrap;
}

.influencer.reverse {
  flex-direction: row-reverse;
}

.influencer-text {
  flex: 1;
  min-width: 300px;
}

.influencer-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.influencer-text p {
  color: #ccc;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.portfolio-btn,
.portfolio {
  margin-top: 15px;
  background-color: #00bcd4;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.portfolio-btn:hover,
.portfolio:hover {
  background-color: #008c9e;
}

/* ===== IMAGES ===== */
.influencer-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.influencer-img img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.influencer-img img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #999;
  border-top: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}