/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;

}

/* Theme Colors */
:root {
  --black: #0a0a0a;
  --white: #fff;
  --gold: rgb(212, 175, 55);
  --gray: #888;
}

/* Body */
body {
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  color: var(--white);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 60px;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}

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

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--gold);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }

  nav.active {
    max-height: 300px; /* expands menu */
  }

  /* Animate hamburger to X */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}


/* Hero Section */
.hero {
  background: black;
  color: var(--white);
  position: relative;
  padding: 150px 20px 100px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.highlight {
  color: var(--gold);
}

.hero p {
  color: #ddd;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
}

.btn.primary:hover {
  transform: translateY(-3px);
  background: #f5d76e;
}

.btn.secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn.secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.scroll-down {
  margin-top: 50px;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
  animation: bounce 2s infinite;
}

.arrrow-down {
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Generic Sections */
section {
  text-align: center;
  padding: 100px 20px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* Services */
.services {
  background: #000000;

  h1 {
    color: var(--white);
  }
}

.services h2 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.336);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  max-width: 250px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background: #f8f8f8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Contact */
.contact {
  background: var(--black);
  color: var(--white);
}

.contact form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  color: var(--black);
}

.contact button {
  margin-top: 10px;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  nav ul {
    gap: 15px;
  }
  .hero-buttons {   
    justify-content: center;
  } 
}
