/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

a {
  color: #008919;
}
button {
  cursor: pointer;
}

/* NAVBAR */
nav {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000;
  gap: 20px;
}

nav i {
  color: #008919;
}

nav img,
.logo {
  height: 4rem;
  border-radius: 5px;
}

nav h1 {
  color: #000000;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #008919;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f1f1f;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.space {
  height: 5rem;
}

/* HERO */
.hero {
  height: 100vh;
  /* Image background */
  background-image: url('images/bg.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  background: #008919;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.hero2 {
  height: 100vh;
  background-image: url('images/bg.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero2 h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero2 button {
  padding: 12px 25px;
  background: #008919;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* SECTIONS */
section {
  padding: 80px 40px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  width: 300px;
  padding: 30px;
  border: 1px solid #ddd;
  transition: 0.3s;
}
.card i {
  font-size: 5rem;
  color: #008919;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.events .card {
  width: 400px;
  border: none;
}

/* PROCESS */
.process {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  width: 250px;
  box-shadow: 9px -7px 22px -8px rgba(0, 137, 25, .75);
-webkit-box-shadow: 9px -7px 22px -8px rgba(0, 137, 25, .75);
-moz-box-shadow: 9px -7px 22px -8px rgba(0, 137, 25, .75);
  border-radius: 10px;
  padding: 30px;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  padding: 60px;
}

.cta button, .mybutton {
  padding: 12px 25px;
  background: #008919;
  border: none;
  border-radius: 3px;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #000;
  color: #fff;
}

/* SCROLL ANIMATION */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

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

.split-section {
  padding: 80px 40px;
  background: #f9f9f9;
}

.split-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.split-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* CONTENT */
.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.split-content p {
  margin-bottom: 20px;
  color: #555;
}

.split-content button {
  padding: 12px 25px;
  background: #008919;
  border: none;
  cursor: pointer;
}

/* MAKE BOTH SIDES EQUAL */
.split-image,
.split-content {
  flex: 1;
}

.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 40px;
}

.footer div {
  display: flex;
  gap: 20px;
}

.footer div li {
  list-style: none;
}

.footer div li a {
  color: #fff;
  text-decoration: none;
}

.content-box {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding: 1rem;
  margin: auto;
}

.content-box p {
  text-align: left;
}

/* CALCULATOR */
.sip-container {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
}

h2 {
  text-align: center;
}

.slider-container {
  margin: 20px 0;
}

label {
  font-weight: bold;
}

.value {
  float: right;
  color: #007bff;
}

input[type=range] {
  width: 100%;
}

.results {
  margin-top: 20px;
  background: #f1f3f6;
  padding: 15px;
  border-radius: 8px;
}

.results p {
  margin: 8px 0;
  font-size: 15px;
}


/* MOBILE MENU STYLES */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    justify-content: space-between;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  }
  
  nav ul.mobile-open {
    right: 0;
  }
  
  nav ul li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.3s ease forwards;
  }
  
  nav ul li:nth-child(1) { animation-delay: 0.1s; }
  nav ul li:nth-child(2) { animation-delay: 0.2s; }
  nav ul li:nth-child(3) { animation-delay: 0.3s; }
  nav ul li:nth-child(4) { animation-delay: 0.4s; }
  nav ul li:nth-child(5) { animation-delay: 0.5s; }
  nav ul li:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  nav ul li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
  }
  
  .split-container {
    flex-direction: column;
    text-align: center;
  }

  .split-content h2 {
    font-size: 26px;
  }
  .footer {
    flex-direction: column;
    gap: 2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    text-align: center;
  }

  .split-content h2 {
    font-size: 26px;
  }
  .footer {
    flex-direction: column;
    gap: 2rem;
  }
}

