body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
  background: #222;
  color: white;
  text-align: center;
  padding: 5px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background: #0d6efd;
  color: white;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 30px;
}

.nav-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("images/hero.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* BUTTON */
.btn {
  background: #ffc107;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.btn:hover {
  background: #e0a800;
}

/* SECTIONS (SCROLL ANIMATION) */
section {
  padding: 50px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ FIX: SERVICES PAGE ALWAYS VISIBLE */
.services-page {
  opacity: 1;
  transform: none;
}

/* ABOUT + WORK */
.about-work {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about, .projects {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.about:hover, .projects:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* GRID */
.grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* TESTIMONIALS GRID (SIDE BY SIDE) */
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* TESTIMONIAL CARD */
.testimonial {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #555;
}

/* CONTACT */
.contact-center {
  max-width: 400px;
  margin: auto;
  text-align: left;
}

/* SERVICES PAGE */
.services-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* TABS */
.tabs button {
  padding: 10px 18px;
  margin: 5px;
  background: #0d6efd;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tabs button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.tabs button:active {
  transform: scale(0.95);
}

.tabs button.active {
  background: #ffc107;
  color: black;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.full-img {
  width: 90%;
  border-radius: 10px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.review-btn {
  margin: 30px auto;
  display: block;
  padding: 12px;
  background: #0d6efd;
  color: white;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
}

.popup-content.dark {
  background:#202124;
  color:white;
  padding:20px;
  border-radius:10px;
  width:300px;
}

.stars span {
  font-size:28px;
  cursor:pointer;
  color:#777;
}

.stars span.active {
  color:#fbbc04;
}

textarea {
  width:100%;
  margin-top:10px;
  padding:10px;
  border-radius:8px;
}

.popup-actions {
  display:flex;
  justify-content:flex-end;
  margin-top:10px;
  gap:10px;
}