* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial;
  color: #222;
}
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background: white;
}
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.logo {
  width: 120px;
}

.logo img{
  height: 55px;
}

button {
  padding: 10px;
  background: #e59b00;
  color: white;
  border: 0;
}
.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover;
  display: flex;
  align-items: center;
  color: white;
}
.content {
  margin: 10%;
  font-size: 25px;
  background: #0008;
  padding: 30px;
}
.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 10%;
}
.split img,
.contact img {
  width: 45%;
  border-radius: 15px;
}
.dark {
  background: #111;
  color: white;
}
.contact {
  text-align: center;
  padding: 70px;
}
.contact img {
  width: 60%;
}
footer {
  background: #050505;
  color: white;
  text-align: center;
  padding: 30px;
}
@media (max-width: 700px) {
  .split {
    flex-direction: column;
  }
  .split img,
  .contact img {
    width: 90%;
  }
  nav {
    flex-direction: column;
  }
  nav ul {
    padding: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  padding: 30px 10%;
}
.service-card {
  background: #fff;
  box-shadow: 0 4px 15px #ddd;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service-card a {
  display: inline-block;
  background: #15a349;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
}
nav a {
  text-decoration: none;
  color: #222;
}

.whatsapp-btn {
  display: inline-block;
  background: #15a349;
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  margin: 20px;
}

#whatsappForm {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#whatsappForm input,
#whatsappForm select,
#whatsappForm textarea {
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#whatsappForm textarea {
  height: 120px;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #15a349;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  background: #e59b00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.navbar a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

.lang-btn {
  background: #e59b00;
  color: white;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* body{
padding-top:90px;
} */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  .navbar ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

:root {
  --primary: #15a349;
  --dark: #111111;
  --light: #ffffff;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--dark);
}

/* Modern Hero */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35)),
    url("images/hero.jpg") center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  color: white;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content p {
  font-size: 22px;
  line-height: 2;
}

.hero .btn {
  background: var(--primary);
  border-radius: 30px;
  padding: 16px 45px;
}

/* Services Cards */

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.35s;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  transition: 0.35s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card a {
  background: var(--primary) !important;
}

/* Buttons */

button,
.lang-btn {
  background: var(--primary) !important;
}

/* Sections */

.section-title {
  font-weight: 800;
}

.split.dark {
  background: #111;
  color: white;
}

/* Modern Footer */

.modern-footer {
  background: #080808;
  color: white;
  padding: 70px 10% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: #15a349;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin: 12px 0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #15a349;
  transform: translateX(5px);
}

.footer-whatsapp {
  background: #15a349;
  color: white !important;
  padding: 12px 25px;
  border-radius: 25px;
  display: inline-block !important;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  color: #aaa;
}

/* Scroll Animation */

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 45px rgba(32, 200, 120, 0.25);
}

.premium-hero {
  height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35)),
    url("images/hero.jpg") center/cover;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 720px;
  color: white;
}

.hero-small {
  font-size: 22px;
  color: #15a349;
  font-weight: bold;
}

.hero-text h1 {
  font-size: 72px;
  line-height: 1.15;
  font-weight: 900;
  margin: 20px 0;
}

.hero-text h1 span {
  color: #15a349;
}

.hero-text p {
  font-size: 24px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 35px;
}

.hero-whatsapp {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #15a349;
  padding: 15px 35px;
  border-radius: 45px;
  color: white;
  text-decoration: none;
}

.hero-whatsapp img {
  width: 45px;
}

.hero-whatsapp small {
  display: block;
  direction: ltr;
}

.hero-outline {
  border: 1px solid white;
  padding: 18px 35px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
}

.hero-features {
  display: flex;
  margin-top: 60px;
  gap: 15px;
}

/* .hero-features div{
background:rgba(0,0,0,.45);
padding:15px 25px;
text-align:center;
border-radius:15px;
} */

.hero-features span {
  font-size: 35px;
  color: #15a349;
}

.hero-features p {
  font-size: 18px;
  margin: 5px;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-buttons,
  .hero-features {
    flex-direction: column;
  }
}

.premium-hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25)),
    url("images/hero.jpg") center/cover;
  display: flex;
  align-items: center;
}
.hero-container {
  width: 90%;
  margin: auto;
}
.hero-text {
  max-width: 700px;
  color: #fff;
}
.hero-small {
  color: #15a349;
  font-size: 24px;
}
.hero-text h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
}
.hero-text h1 span {
  color: #15a349;
}
.hero-text p {
  font-size: 22px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.hero-whatsapp {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #15a349;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
}
.hero-whatsapp img {
  width: 45px;
}
.hero-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 18px 35px;
  border-radius: 40px;
  text-decoration: none;
}

/* =========================
   Mobile Responsive Design
========================= */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* Navbar */
  .main-nav {
    position: fixed;
  }

  .navbar {
    width: 95%;
    flex-direction: column;
    gap: 15px;
    padding: 12px 0;
  }

  .navbar ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
  }

  .navbar a {
    font-size: 14px;
  }

  .lang-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  /* Hero */

  .premium-hero,
  .hero {
    min-height: 100vh;
    text-align: center;
  }

  .hero-container {
    width: 90%;
  }

  .hero-text {
    margin: auto;
  }

  .hero-text h1,
  .hero-content h1 {
    font-size: 38px;
    line-height: 1.3;
  }

  .hero-text p,
  .hero-content p {
    font-size: 17px;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .hero-outline {
    width: 100%;
  }

  /* Services */

  .services-grid {
    grid-template-columns: 1fr;
    padding: 30px 5%;
  }

  .service-card {
    width: 100%;
  }

  .service-card img {
    height: 200px;
  }

  /* Sections */

  .split {
    flex-direction: column;
    padding: 50px 5%;
    text-align: center;
  }

  .split img,
  .contact img {
    width: 100%;
  }

  .section-title {
    font-size: 30px;
  }

  .section-text {
    font-size: 17px;
  }

  /* Contact Form */

  #whatsappForm {
    width: 100%;
    padding: 0 10px;
  }

  /* Footer */

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col a:hover {
    transform: none;
  }

  /* Floating WhatsApp */

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 420px) {
  .hero-text h1,
  .hero-content h1 {
    font-size: 32px;
  }

  .navbar ul {
    gap: 10px;
  }

  .navbar a {
    font-size: 13px;
  }
}

/* Professional mobile improvements */
.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.hero-text {
  max-width: 620px;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 15px 0;
}
.hero-text p {
  font-size: 20px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.hero-whatsapp,
.hero-outline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
}
.hero-whatsapp {
  background: #15a349;
  color: #fff;
}
.hero-whatsapp img {
  width: 35px;
  height: 35px;
}
.hero-outline {
  border: 2px solid #fff;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: #e59b00;
  color: white;
  border: 0;
  font-size: 25px;
  border-radius: 8px;
  padding: 8px 14px;
}

@media (max-width: 768px) {
  body {
    padding-top: 75px;
    overflow-x: hidden;
  }
  .main-nav {
    height: auto;
  }
  .navbar {
    width: 92%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .logo {
    width: 95px;
  }
  .menu-toggle {
    display: block;
    order: 2;
  }
  .lang-btn {
    order: 3;
    font-size: 12px;
    padding: 8px;
  }
  .nav-links {
    display: none !important;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 12px !important;
    padding: 15px 0 !important;
  }
  .nav-links.active {
    display: flex !important;
  }
  .hero {
    min-height: 80vh;
    height: auto;
    padding: 50px 0;
  }
  .hero-text {
    padding: 25px 18px;
    text-align: center;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-whatsapp,
  .hero-outline {
    width: 100%;
    justify-content: center;
  }
  .split {
    padding: 40px 6%;
    gap: 25px;
  }
  .split h2 {
    font-size: 26px;
  }
  .services-grid {
    padding: 20px 6%;
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 200px;
  }
  footer {
    padding: 25px 15px;
  }
}

/* Improved mobile dropdown navigation */
@media (max-width: 768px) {
  .main-nav {
    height: 72px;
  }
  .navbar {
    height: 72px;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links.active {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 25px 0 !important;
    display: flex !important;
    gap: 22px !important;
    z-index: 9999;
  }
  .nav-links.active a {
    font-size: 17px;
    padding: 8px;
    display: block;
  }
  .menu-toggle {
    order: 0;
    width: 52px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #15a349;
  }
  .logo {
    order: 1;
  }
  .lang-btn {
    order: 2;
  }
}

/* Premium Hero Upgrade */
.premium-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 65%),
    url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-container {
  width: 90%;
  margin: auto;
}
.hero-text {
  max-width: 950px;
  color: #fff;
}
.hero-small {
  color: #15a349;
  font-size: 22px;
  font-weight: bold;
}
.hero-text h1 {
  font-size: 72px;
  line-height: 1.15;
  font-weight: 900;
  margin: 20px 0;
}
.hero-text h1 span {
  color: #15a349;
}
.hero-text p {
  font-size: 24px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 35px;
}
.hero-whatsapp {
  background: #15a349;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}
.hero-whatsapp img {
  width: 38px;
}
.hero-outline {
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
}
.hero-features {
  display: flex;
  direction: rtl;
  gap: 0;
  margin-top: 55px;
  align-items: center;
}
.hero-features .feature-item {
  width: 170px;
  padding: 10px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}
.hero-features .feature-item:last-child {
  border-left: 0;
}
.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #15a349;
  font-size: 30px;
  filter: drop-shadow(0 0 8px rgba(32, 200, 120, 0.25));
}
.hero-features span {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: 100vh;
    text-align: center;
  }
  .hero-container {
    width: 92%;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 17px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-whatsapp,
  .hero-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }
  .hero-features .feature-item {
    width: auto;
    border: 0;
    padding: 10px;
  }
}

/* Premium SVG Hero Icons */
.feature-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #00c853;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.feature-icon svg path:first-child {
  fill: transparent;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone contact box */
.phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 18px 35px;
  margin: 25px auto;
  max-width: 420px;
  direction: rtl;
  border: 1px solid #e5e5e5;
}
.phone-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #16c45b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}
.phone-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.phone-box a {
  color: #16c45b;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 700px) {
  .phone-box {
    width: 90%;
    padding: 15px;
  }
  .phone-box a {
    font-size: 18px;
  }
}

/* Contact form + side buttons */
.contact-layout {
  display: flex;
  direction: ltr;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 35px auto;
}
.contact-layout #whatsappForm {
  flex: 1;
  margin: 0;
}
.contact-actions {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  direction: rtl;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.contact-card:hover {
  transform: translateY(-3px);
}
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #16c45b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.contact-card h3 {
  margin: 0 0 5px;
}
.contact-card span {
  color: #16c45b;
  font-weight: bold;
}
@media (max-width: 700px) {
  .contact-layout {
    flex-direction: column;
    direction: rtl;
    padding: 0 20px;
  }
  .contact-actions {
    width: 100%;
  }
}

.whatsapp-float .whatsapp-icon {
  width: 34px;
  height: 34px;
  display: block;
  color: white;
  fill: currentColor;
}
.whatsapp-float {
  line-height: 0;
}

.contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.footer-whatsapp img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 14px 38px;
  background: #19c66a;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.section-btn:hover {
  transform: translateY(-3px);
  background: #12ad59;
}
@media (max-width: 768px) {
  .section-btn {
    width: 100%;
  }
}

.hero-phone {
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 30px;
  border-radius:45px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.8);
  color:white;
  text-decoration:none;
}
.hero-phone svg{
 width:32px;
 height:32px;
 fill:#15a349;
}
.hero-phone small{
 display:block;
 direction:ltr;
}
@media(max-width:768px){
 .hero-buttons{flex-direction:column;align-items:stretch;}
 .hero-phone,.hero-whatsapp,.hero-outline{justify-content:center;}
}
