body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  direction: rtl;
  background: #f9f9f9;
}

/* START HERO 0 */
section {
  scroll-margin-top: 100px; /* adjust if needed */
}


/* Base Styles */
.main-header {
  background: #fffdf0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
}

.logo-text {
  font-weight: bold;
  font-size: 20px;
  color: #333;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #009688;
}

/* WhatsApp button style */
.whatsapp-btn {
  background: #25d366;
  color: white !important;
  padding: 8px 14px;
  border-radius: 5px;
}

/* Toggle button */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* ----------- Responsive ------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fffdf0;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
  }

  .whatsapp-btn {
    margin-top: 10px;
    text-align: center;
  }
}


/* END HERO 0 */

.whatsapp-btn {
  background: #25D366;
  padding: 0.4rem 1rem;
  border-radius: 5px;
}

/* Start HERO 1 */

.hero-section {
  background-image: url('Assets/Hero1.jpeg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  animation: slideFade 1.5s ease-out forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ✨ Animation */
@keyframes slideFade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* END HERO 1 */

.cta {
  background: green;
  color: white;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 5px;
}


/* Start HERO 2 */

.infinite-slider {
  width: 100%;
  overflow: hidden;
  background-color: #fffdf0;
  padding: 20px 0;
}

.infinite-track {
  display: flex;
  gap: 20px;
  animation: slideRight 30s linear infinite;
  width: max-content;
}

.infinite-track img {
  width: 400;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.infinite-track img:hover {
  transform: scale(1.05);
}

@keyframes slideRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(50%);
  }
}



/* END HERO 2 */

/* START HERO 3 */
/* Main Section Style */
.about-contact-section {
  background: #fffdf5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  direction: rtl;
  overflow: hidden;
}

/* Container Flexbox */
.about-contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

/* About & Contact Boxes */
.about-box, .contact-box {
  flex: 1 1 45%;
  background: linear-gradient(135deg, #fffbe7, #fff0c2);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-right: 6px solid #f9d342;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box {
  background: linear-gradient(135deg, #eaffea, #d6f5d6);
  border-left: 6px solid #3d9970;
}

/* Hover Effects */
.about-box:hover, .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Headers */
.about-box h2, .contact-box h2 {
  font-size: 1.8rem;
  color: #3d9970;
  margin-bottom: 15px;
  position: relative;
}

.about-box h2::after, .contact-box h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #f9d342;
  position: absolute;
  bottom: -6px;
  right: 0;
}

/* Paragraph & Links */
.about-box p, .contact-box p, .contact-box li {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}

.contact-box ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.contact-box ul li {
  margin-bottom: 12px;
}

.contact-box a {
  color: #3d9970;
  font-weight: 500;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
  color: #f9d342;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-box, .contact-box {
    flex: 1 1 100%;
  }
}



/* END HERO 3 */


/* START HERO 4 */
.contact-form-section {
  background: linear-gradient(135deg, #fffef6, #fdf4c9);
  padding: 60px 20px;
  direction: rtl;
  font-family: 'Segoe UI', sans-serif;
}

.contact-form-container {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 40px 30px;
  text-align: right;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

.contact-form-container h2 {
  font-size: 2rem;
  color: #3d9970;
  margin-bottom: 10px;
}

.contact-form-container p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.lead-form input,
.lead-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fffef6;
  transition: border-color 0.3s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #f9d342;
  outline: none;
}

.form-submit {
  background-color: #3d9970;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #2f7f5a;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* END HERO 4 */


/* .contact-form {
  background: white;
  padding: 2rem;
  max-width: 600px;
  margin: auto;
  border-radius: 8px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: black;
  color: white;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #1e1e1e;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
} */

.whatsapp-float {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 12px 14px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
}

/* START HERO 5 */

.why-choose-us {
  background: #fff8e1;
  padding: 70px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.icon-box {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f4b400; /* Yellow Banana Style */
}

.feature-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .feature-card {
    padding: 20px;
  }
  .section-title {
    font-size: 26px;
  }
}


/* END HERO 5 */


/* START HERO 6 */


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9;
  background-color: #25d366;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 32px 62px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}


.site-footer {
  background: #3d9970;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-family: 'Segoe UI', sans-serif;
  direction: rtl;
}

.site-footer p {
  margin: 5px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.apli {
  color: #f9d342;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}
/* END HERO 6 */

.whatsapp-pop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: blinkWhatsApp 1s infinite;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-pop:hover {
  transform: scale(1.1);
}

@keyframes blinkWhatsApp {
  0%   { box-shadow: 0 0 5px #25D366; }
  50%  { box-shadow: 0 0 20px #25D366; }
  100% { box-shadow: 0 0 5px #25D366; }
}
