:root {
  --bg-light: #fff9eb;
  --accent: #c5e384;
  --dark: #200f07;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg-light);
  color: var(--dark);
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 235, 0.8);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 10px 18px;
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--dark);
}

.btn-outline {
  border: 2px solid var(--dark);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* ================= SHAPES ================= */
.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  filter: blur(80px);
  opacity: 0.7;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: var(--dark);
  bottom: -100px;
  left: -100px;
  filter: blur(80px);
  opacity: 0.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--bg-light);
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* ================= SERVICES ================= */
.services {
  display: flex;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 50px;
  align-items: center;
}

.services-left {
  flex: 1;
}

.services-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.services-left h2 span {
  color: var(--accent);
}

.services-left p {
  margin-bottom: 30px;
  opacity: 0.8;
  line-height: 1.6;
}

/* RIGHT GRID */
.services-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* SERVICE BOX */
.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.service-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent);
  top: 100%;
  left: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-box:hover::before {
  top: 0;
}

.service-box h3,
.service-box p {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.service-box h3 {
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  opacity: 0.8;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-10px);
}

.service-box:hover h3,
.service-box:hover p {
  color: var(--dark);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
  }

  .services-right {
    grid-template-columns: 1fr;
  }
}
/* ================= ABOUT ================= */
.about {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 50px;
  align-items: center;
  overflow: hidden;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-left h2 span {
  color: var(--accent);
}

.about-desc {
  margin-bottom: 30px;
  opacity: 0.85;
  line-height: 1.7;
}

/* POINTS */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point h4 {
  margin-bottom: 5px;
}

.point p {
  font-size: 14px;
  opacity: 0.8;
}

/* RIGHT GRID */
.about-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--accent);
}

.about-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* Hover */
.about-card:hover {
  transform: translateY(-10px);
  background: var(--accent);
}

.about-card:hover h3,
.about-card:hover p {
  color: var(--dark);
}

/* BACKGROUND SHAPE */
.about-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  right: -150px;
  bottom: -150px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .about-right {
    grid-template-columns: 1fr;
  }
}
/* ================= WHY CHOOSE US ================= */
.why {
  position: relative;
  padding: 100px 8%;
  text-align: center;
  overflow: hidden;
}

/* TOP TEXT */
.why-top h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.why-top h2 span {
  color: var(--accent);
}

.why-top p {
  max-width: 600px;
  margin: auto;
  opacity: 0.85;
  margin-bottom: 60px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.why-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.why-box h3 {
  margin-bottom: 10px;
}

.why-box p {
  font-size: 14px;
  opacity: 0.8;
}

/* HOVER EFFECT */
.why-box:hover {
  transform: translateY(-10px) scale(1.03);
  background: var(--accent);
}

.why-box:hover h3,
.why-box:hover p {
  color: var(--dark);
}

/* BACKGROUND SHAPE */
.why-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent);
  left: -200px;
  top: -200px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTACT ================= */
.contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 50px;
  align-items: center;
  overflow: hidden;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-left h2 span {
  color: var(--accent);
}

.contact-left p {
  margin-bottom: 30px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--dark);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

/* RIGHT */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.contact-card a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  background: var(--accent);
}

.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
  color: var(--dark);
}

/* BACKGROUND */
.contact-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  right: -150px;
  top: -150px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: #fff;
  padding-top: 80px;
  position: relative;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 8% 50px;
}

/* LOGO */
.footer-logo {
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  color: var(--accent);
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.85;
}

/* LINKS */
.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* BACKGROUND GLOW */
.footer::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}