* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-bg: #f5f5f5;
  --primary: #c4ff70;
  --text-dark: #111;
  --text-light: #666;
  --card-bg: #fff;
  --hover-icon: #71f76b;
}

body {
  font-family: sans-serif;
}

/* === HEADER SECTTION === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;

  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.logo .icon {
  width: 150px;
  height: 40px;
  margin-right: 8px;
}

.nav-rights {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-linkse {
  display: flex;
  gap: 30px;
  width: 70%;
}

.nav-linkse a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  width: 90px;
}

.quote-btnn {
  padding: 10px 20px;
  border: 1px solid black;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  color: black;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .nav-rights {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
  }

  .nav-rights.active {
    display: flex;
  }

  .nav-rights .nav-linkse {
    display: flex;
    flex-direction: column;
  }

  .menu-icon {
    display: block;
  }
}

/* === HERO SECTION === */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  flex-wrap: wrap;
  background: #fff;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 32px;
}

.hero-btn {
  background-color: #1A1A1A;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
}

.hero-btn:hover {
  background-color: #000;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-btn {
    width: 100%;
    padding: 14px;
  }
}

/* === MARQUEE SECTION -=== */

marquee img {
  margin-left: 20px;
  color: #000;
}

/* === SERVICES CARD SECTION ==== */
.services {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
}

.services h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services h2 .highlight {
  background-color: var(--green);
  padding: 5px 10px;
  border-radius: 5px;
}

.services p {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 48%;
  background-color: #f9f9f9;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s;
}


.card:hover {
  transform: translateY(-5px);
}

.card-green:hover {
  transform: translateY(-5px);
}

.card-green {
  flex: 1 1 48%;
  background-color: #B9FF66;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.3s;
}

.card-titles {
  background: transparent;
  display: inline-block;
  gap: 20%;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;

}

.card-titles .titile-lifts {

  padding-bottom: 0px;
  background-color: #F3F3F3;
}

.card-titles .title-rights {

  padding-top: 50px;
}

.card-title {
  background: transparent;
  display: inline-block;
  gap: 20%;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;

}

.card-title .titile-lift {

  padding-bottom: 0px;
  background-color: #B9FF66;
}

.card-title .title-right {

  padding-top: 50px;
}

.card.green .card-title {
  background-color: white;
}

.card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.learn-more {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  margin-top: auto;
  color: #191A23;
  text-decoration: none;
}

.learn-more i {
  background-color: #191A23;
  color: #B9FF66;
  border-radius: 50%;
  padding: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.learn-more:hover i {
  background-color: #B9FF66;
  color: #191A23;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

/* === PROCESS SECTION === */
.process-container {
  font-family: Arial, sans-serif;
  max-width: 950px;
  margin: 40px auto;
  padding: 20px;
  color: #000;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.title {
  background-color: #7CFC00;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 18px;
}

.subtitle {
  font-size: 10px;
  text-align: right;
  color: #444;
}

.step {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 0 #00000020;
  transition: background-color 0.3s;
}

.step.active {
  background-color: #B2FF59;
  border: 1px solid #A3E635;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.step-number {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
}

.step-title {
  flex: 1;
  font-weight: 500;
}

.toggle {
  font-size: 20px;
  width: 20px;
  text-align: center;
  user-select: none;
}

.step-content {
  font-size: 10px;
  margin-top: 10px;
  color: #222;
  display: none;
}

/* === FORM SECTION ==== */

.contact-wrapper {
  font-family: Arial, sans-serif;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.title {
  font-size: 22px;
  font-weight: bold;
  background-color: #7CFC00;
  padding: 4px 10px;
}

.subtitle {
  font-size: 13px;
  color: #444;
}

.contact-form-wrapper {
  display: flex;
  gap: 40px;
  background: #f2f2f2;
  border-radius: 25px;
  padding: 30px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 250px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.label-text {
  font-size: 13px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #999;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 12px;
  font-size: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.visual-side {
  position: relative;
  width: 250px;
  min-height: 200px;
  flex-shrink: 0;
}

.visual-side img {
  width: 285px;
  min-height: 150px;
  margin-left: 20px;
}

.black-star {
  width: 100px;
  height: 100px;
  background: #111;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: 40px;
  left: 60px;
  transform: rotate(45deg);
}

.green-star {
  width: 60px;
  height: 60px;
  background: #B2FF59;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  bottom: 20px;
  left: 20px;
  transform: rotate(20deg);
}

@media (max-width: 768px) {
  .visual-side {
    display: none;
  }

  .contact-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* === FOOTER SECTION === */
.footer {
  width: 80%;
  margin: auto;
  background-color: #0e0e13;
  color: white;
  padding: 40px 20px;
  border-radius: 30px 30px 0 0;
  font-family: Arial, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 18px;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  text-decoration: underline;
  color: white;
}

.footer-social {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.footer-social a {
  color: black;
  background-color: white;
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: color 0.3s;
}

.footer-social a:hover {
  background-color: #b2ff59;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-contact {
  font-size: 14px;
  max-width: 300px;
}

.contact-label {
  background-color: #b2ff59;
  color: black;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.subscribe-form {
  background-color: #1a1a25;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 400px;
  width: 100%;
}

.subscribe-form input {

  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: transparent;
  color: white;
  font-size: 14px;
}

.subscribe-form input::placeholder {
  color: #ccc;
}

.subscribe-form button {
  background-color: #b2ff59;
  color: black;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  text-decoration: underline;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    width: 100%;
    border-radius: 0px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 25px;

  }

  .footer-links {
    flex-direction: column;
  }


  .footer-content {
    align-items: center;
    flex-direction: column;
  }

  .subscribe-form {
    width: 300px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}