/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #111;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar span {
  margin-right: 15px;
}

.top-bar .socials a {
  color: #6DBE45;
  margin-left: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.top-bar .socials a:hover {
  color: #fff;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* NAV CONTENT */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  margin-right: 10px;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  position: relative;
  font-weight: 500;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #6DBE45;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
}

/* SEARCH ICON */
.search {
  width: 35px;
  height: 35px;
  background: #6DBE45;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.search:hover {
  transform: scale(1.1);
}

/* QUOTE BUTTON */
.quote-btn {
  background: #6DBE45;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 500;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #4CAF50;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
  margin-left: 15px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links a {
    margin: 10px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* HERO */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* SLIDE */
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomBg 10s ease-in-out infinite alternate;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

/* CONTENT */
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  animation: fadeUp 1.2s ease;
}

.hero-content .tagline {
  font-size: 14px;
  margin-bottom: 15px;
  color: #6DBE45;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons a {
  margin: 0 10px;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  transition: 0.3s;
}

/* OUTLINE */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* FILLED */
.btn-filled {
  background: #6DBE45;
  color: #fff;
}

.btn-filled:hover {
  background: #4CAF50;
}

/* ARROWS */
.hero-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.arrow {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 50%;
  transition: 0.3s;
}

.arrow:hover {
  background: #6DBE45;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}


/* FEATURES SECTION */
.features {
  margin-top: -80px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.features-container {
  width: 85%;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* CARD */
.feature-card {
  text-align: center;
  padding: 30px;
  transition: 0.3s;
}

.feature-card i {
  font-size: 30px;
  color: #6DBE45;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}


/* SERVICES */
.services {
  padding: 80px 0;
  background: #f5f5f5;
  text-align: center;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(40px);
}

/* ICON */
.service-card i {
  font-size: 30px;
  color: #6DBE45;
  margin-bottom: 15px;
  transition: 0.4s;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* LINK */
.service-card a {
  color: #6DBE45;
  font-weight: 500;
  text-decoration: none;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* FADE-IN ACTIVE */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT */
.about {
  padding: 80px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* CONTENT */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
  margin-bottom: 15px;
}

.about-content ul {
  margin-bottom: 20px;
}

.about-content ul li {
  margin-bottom: 8px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  background: #6DBE45;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #4CAF50;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-stats h3 {
  font-size: 28px;
  color: #6DBE45;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

/* PROJECTS */
.projects {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.project-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

/* TEXT */
.project-card h3 {
  margin-bottom: 10px;
}

.project-card a {
  color: #6DBE45;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACT */
.contact {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #6DBE45;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #4CAF50;
}

/* INFO */
.contact-info {
  padding: 20px;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.map {
  margin-top: 20px;
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}



/* Footer */

.footer {
background:#222;
color:white;
padding:60px 40px 20px;
}

.footer-container {
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.footer-col h3,
.footer-col h4 {
margin-bottom:15px;
}

.footer-col ul {
list-style:none;
}

.footer-col ul li {
margin-bottom:8px;
font-size:14px;
}

.footer-col p {
font-size:14px;
margin-bottom:10px;
}

.footer-col i {
margin-right:8px;
color:#6DBE45;
}

.socials a {
color:white;
margin-right:15px;
font-size:18px;
transition:.3s;
}

.socials a:hover {
color:#6DBE45;
}

.footer-bottom {
text-align:center;
margin-top:40px;
padding-top:15px;
border-top:1px solid #444;
font-size:13px;
}

/* Mobile */

@media(max-width:768px){
.footer-container {
grid-template-columns:1fr;
text-align:center;
}

.socials {
margin-top:10px;
}
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: float 3s ease-in-out;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none;
}










