* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* ================= TOP BAR ================= */
.topbar {
  background: #39ff14;
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  font-size: 14px;
  flex-wrap: wrap;
  font-weight: bold;
}

/* ================= ROUNDED NAV CONTAINER ================= */
.nav-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  background-color: transparent !important;
  position: absolute;
  width: 100%;
  top: 40px; /* adjust based on topbar height */
  left: 0;
  z-index: 1000;
}

.navbar {
  background: #fff;
  width: 90%;
  max-width: 1200px;
  border-radius: 60px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #39ff14;
  letter-spacing: 3px;
  font-size: 14px;
}
.logo img {
  width: 100px;
}
/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* CALL BUTTON */
.call-btn1 {
  background: #39ff14;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: 35px;
  left: 0;
  list-style: none;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: #000;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  max-width: 850px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  margin-top: 100px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  background: #39ff14;
  padding: 14px 28px;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
}

.btn-whatsapp {
  border: 2px solid #39ff14;
  padding: 14px 28px;
  border-radius: 30px;
  color: #39ff14;
  text-decoration: none;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: 5%;
    width: 90%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
    margin-top: 200px;
  }
  .topbar {
    display: none;
  }
  .container {
    margin-top: 40px;
  }
}
@media (max-width: 489px) {
  .hero h1 {
    /* margin-top: 10px; */
  }
  .topbar {
    display: none;
  }
  .container {
    margin-top: 40px;
  }
  .services-section {
    margin-top: 100px;
  }
}

/* ================= FOOTER ================= */

.footer {
  position: relative;
  background: url("hero.jpg") center/cover no-repeat;
  color: #fff;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 6px solid #39ff14;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  overflow: hidden;
}

/* DARK OVERLAY */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 20px;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #39ff14;
  letter-spacing: 3px;
  font-size: 14px;
}

.footer-col img {
  width: 230px;
}
/* TEXT */
.footer-col p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-col h3 {
  margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ccc;
  cursor: pointer;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #39ff14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* TRUSTPILOT */
.trustpilot {
  margin-top: 15px;
  font-size: 18px;
  color: #00b67a;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  position: relative;
  z-index: 1;
  margin: 0px auto 40px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  text-align: center;
  border-radius: 40px;
  max-width: 900px;
  color: #ddd;
  backdrop-filter: blur(10px);
  border: 2px solid #39ff14;
}
.footer-bottom a {
  text-decoration: none;
  color: #39ff14;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* SECTION */
.about-section {
  padding: 60px 20px;
  background: #f9fafb;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-content h3 {
  color: #39ff14;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURES LIST */
.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

/* RIGHT TICK */
.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* CALL BUTTON */
.call-btn {
  display: inline-block;
  background: #39ff14;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn:hover {
  background: #39ff14;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-features li {
    padding-left: 0;
  }

  .about-features li::before {
    position: relative;
    margin-right: 8px;
  }
}
/* SECTION */
.services-section {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
  margin-top: 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  border: 3px solid #39ff14;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  margin: 18px 15px 10px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  padding: 0 15px;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
    margin-top: 60px;
  }
}
/* SECTION BACKGROUND */
.why-section {
  padding: 80px 20px;
  background: #e9e9e9;
  margin-top: 30px;
}

/* MAIN CONTAINER */
.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 30px;
  border-radius: 40px;
  border: 6px solid #39ff14;
  text-align: center;
  color: #fff;

  background: #000;
}

/* BADGE */
.why-badge {
  background: #fff;
  color: #000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* TITLE */
.why-container h2 {
  font-size: 40px;
  margin: 20px 0;
  font-weight: 700;
}

/* DESCRIPTION */
.why-desc {
  max-width: 750px;
  margin: auto;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid #39ff14;
  background: #000;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(47, 210, 131, 0.15);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #ddd;
}

/* CALL BUTTON */
.call-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 15px 35px;
  background: #39ff14;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 255, 72, 0.4);
  transition: 0.3s;
}

.call-btn:hover {
  transform: scale(1.05);
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-container h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-container {
    padding: 50px 20px;
    margin-top: 100px;
    border-radius: 25px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-container h2 {
    font-size: 24px;
  }

  .call-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
/* SECTION AREA */
.cta-section {
  padding: 80px 20px;
  background: #e9e9e9;
}

/* CONTAINER */
.cta-container {
  max-width: 1100px;
  margin: auto;
  padding: 70px 30px;
  text-align: center;
  color: #fff;

  border-radius: 40px;
  border: 6px solid #39ff14;

  background: #000;
}

/* BADGE */
.cta-badge {
  background: #fff;
  color: #000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* TITLE */
.cta-container h2 {
  font-size: 38px;
  margin: 20px 0;
  font-weight: 700;
}

/* DESCRIPTION */
.cta-desc {
  max-width: 720px;
  margin: auto;
  line-height: 1.7;
  color: #ddd;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CALL BUTTON */
.cta-call {
  padding: 15px 35px;
  background: linear-gradient(45deg, #ff2a2a, #ff0000);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  transition: 0.3s;
}

.cta-call:hover {
  transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.cta-whatsapp {
  padding: 15px 35px;
  background: #25d366;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.cta-whatsapp:hover {
  transform: scale(1.05);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .cta-container h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .cta-container {
    padding: 50px 20px;
    border-radius: 25px;
  }

  .cta-container h2 {
    font-size: 22px;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
/* CONTACT AREA */
.reachus-area {
  background: #0a0a0a;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.reachus-wrapper {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.reachus-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 30px;
}

.reachus-desc {
  color: #aaa;
  margin-bottom: 50px;
}

/* GRID */
.reachus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT INFO */
.reachus-details {
  background: #111;
  padding: 40px;
  border-radius: 18px;
  border: 2px solid #39ff14;
  text-align: left;
}

.reachus-details p {
  color: #fff;
  font-size: 18px;
  margin: 20px 0;
}

/* FORM */
.reachus-form {
  background: #111;
  padding: 40px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reachus-form input,
.reachus-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0b0b0b;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.reachus-form input:focus,
.reachus-form textarea:focus {
  border-color: #39ff14;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

/* BUTTON */
.reachus-btn {
  background: #39ff14;
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.reachus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}
/* =========================
   RESPONSIVE FIX (PROPER)
========================= */

/* Tablet */
@media (max-width: 992px) {
  .reachus-area {
    padding: 70px 20px;
  }

  .reachus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reachus-details,
  .reachus-form {
    width: 100%;
    padding: 30px;
    text-align: center;
  }

  .reachus-details p {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .reachus-area {
    padding: 60px 15px;
  }

  .reachus-wrapper {
    text-align: center;
  }

  .reachus-title {
    font-size: 26px;
    margin-top: 0; /* FIXED — removes layout break */
  }

  .reachus-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .reachus-details,
  .reachus-form {
    padding: 14px;
    border-radius: 14px;
  }

  .reachus-details p {
    font-size: 15px;
    margin: 12px 0;
  }

  .reachus-form input,
  .reachus-form textarea {
    padding: 12px;
    font-size: 14px;
  }

  .reachus-btn {
    width: 100%;
    padding: 13px;
  }
  .footer-bottom {
    padding: 10px;
  }
}
