
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }
    html, body {
    width: 100%;
    overflow-x: hidden;
    }

    /* ======================================Navbar=========================================================== */
/* Navbar */
.navbar {
  width: 100%;
  padding: 15px 40px;
  background: #0f5132;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  color: white;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Tapestry','Arial', sans-serif;
}

.logo span {
  color: #9ef01a;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Playwrite US Modern','Arial', sans-serif;
}

.nav-links a:hover {
  color: #9ef01a;
}

/* Login button */
.auth {
  border: 1px solid #9ef01a;
  padding: 6px 15px;
  border-radius: 20px;
}

/* Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 50px;
    right: 0;
    background: #0f5132;
    width: 200px;
    flex-direction: column;
    padding: 0px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

  /* ==================================Hero Section================================================== */
.hero {
  width: 100%;
  height: 100vh;
  background: url("../Images/background.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  animation: heroFade 1.5s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 54, 0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 850px;
  padding: 20px;
  animation: textUp 1.8s ease forwards;
}

.hero-content h1 {
  font-family:'Tapestry','Tagesschrift','Playwrite US Modern', 'Bebas Neue', sans-serif;
  font-size: 70px;
  color: #9df510;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  animation: titleZoom 1.5s ease forwards;
}

.hero-content p {
  font-family: 'Patrick Hand', cursive;
  font-size: 40px;
  line-height: 1.6;
  color: #fff;
}

/* ===== Animations ===== */
@keyframes heroFade {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes titleZoom {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes textUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero { height: 80vh; }

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

  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f5132;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .nav-links li { margin: 15px 0; }
  .nav-links.open { max-height: 500px; }
}


/* =======================================AboutUs Section===================== */
.about-wide {
  width: 100%;
  padding: 70px 20px;
  background: linear-gradient(135deg, #eaffea, #f7fff5);
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 25px;
  margin-left: 50px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Content */
.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-family: 'Tagesschrift','Bebas Neue', sans-serif;
  font-size: 55px;
  color: #0f5132;
  margin-bottom: 20px;
  margin-left: 110px;
}

.about-content h2 span {
  background: #9ef01a;
  padding: 5px 15px;
  border-radius: 8px;
  color: #0f5132;
}

.about-content p {
  font-family: 'Patrick Hand', cursive;
  font-size: 24px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 350px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-content p {
    font-size: 18px;
  }
}



/* =======================================Features Section===================== */
.features-section {
  width: 100%;
  padding: 30px 20px;
  background: #f4fdf7;
  text-align: center;
}

/* Title */
.features-title {
  font-family:'Tagesschrift', 'Bebas Neue', sans-serif;
  font-size: 55px;
  margin-bottom: 60px;
  color: #0f5132;
}

.features-title span {
  background: #9ef01a;
  padding: 5px 15px;
  border-radius: 8px;
  color: #0f5132;
}

/* Container */
.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.feature-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
}

/* Image */
.feature-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
}

/* Title */
.feature-card h3 {
  font-size: 30px;
  color: #0f5132;
  margin-bottom: 15px;
  font-family: 'Playwrite US Modern','Arial', sans-serif;
}

/* Text */
.feature-card p {
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  color: #555;
  margin-bottom: 25px;
}

/* Button */
.feature-card button {
  padding: 10px 25px;
  border-radius: 30px;
  border: 2px solid #0f5132;
  background: transparent;
  color: #0f5132;
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
  font-family: 'Playwrite US Modern','Arial', sans-serif;
}

.feature-card button:hover {
  background: #0f5132;
  color: #fff;
}

/* Hover */
.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
}

/* Show animation */
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}
/* ======================================Review Section===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f5f8f7;
    color: #333;
}

/* ================= عنوان القسم ================= */
.review {
    padding: 80px 7%;
    background: linear-gradient(180deg,#e6f3ea,#ffffff);
    text-align: center;
}

.review .heading {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1px;
    color: #0f5132;
    font-family:'Tagesschrift', 'Arial', sans-serif;

}


.review .heading span {
    
  background: #9ef01a;
  padding: 5px 15px;
  border-radius: 8px;
  color: #0f5132;
}

/* ================= شبكة البطاقات ================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    margin-bottom: 60px;
    
}

/* ================= البطاقات ================= */
.review-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e0e6e4;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* تأثير عند مرور الماوس على البطاقة */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(46,204,113,0.05);
    transition: width 0.4s ease;
    z-index: 1;
}

.review-card:hover::before {
    width: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ================= البادج ================= */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2ecc71;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================= الجزء العلوي للبطاقة ================= */
.top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.top img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #2ecc71;
}

/* ================= الاسم و التفاصيل ================= */
.review-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    
}

.review-card small {
    font-size: 12px;
    color: #888;
}

/* ================= النجوم ================= */
.stars {
    color: #ffa41c;
    font-size: 15px;
    margin: 10px 0;
}

/* ================= نص المراجعة ================= */
.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ================= فورم إضافة مراجعة ================= */
.review-form {
    max-width: 600px;
    margin: 0 auto 60px auto;
    background: #fff;
    padding: 40px 35px;
    border-radius: 22px;
    border: 1px solid #e0e6e4;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Playwrite US Modern','Arial', sans-serif;
}

.review-form h2 {
    font-size: 28px;
    color: #2ecc71;
    margin-bottom: 30px;
    text-align: center;
}

.review-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 12px rgba(46,204,113,0.2), inset 0 2px 6px rgba(0,0,0,0.05);
    outline: none;
}

/* ================= زر إرسال المراجعة ================= */
.review-form button {
    width: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 18px 0;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.review-form button:hover {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: translateY(-2px);
}

/* ================= تصميم متجاوب ================= */
@media(max-width: 768px){
    .review {
        padding: 60px 5%;
    }

    .review .heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .review-form h2 {
        font-size: 24px;
    }
}

@media(max-width: 480px){
    .review .heading {
        font-size: 28px;
    }

    .review-form h2 {
        font-size: 20px;
    }
}
/* ======================================Footer Section===================== */
    .footer {
    background: #c2ff8f;
    color: #333;
    font-size: 20px;
    width: 100%;
    font-family: 'Playwrite US Modern','Arial', sans-serif;
    }
    /* Top */
    .footer-top {
    max-width: 1300px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    }

    .footer-col h4 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0f5132;
    }

    .footer-col a {
    display: block;
    font-family:cursive;
    color: #555;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
    }

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

    /* Social */
    .footer-social a {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    }

    .facebook { background: #1877f2; }
    .whatsapp { background: #25d366; }
    .instagram {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    }
    .tiktok { background: #000; }

    /* Bottom */
    .footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    flex-wrap: wrap;
    }

    .footer-bottom p {
    margin: 0;
    font-size: 20px;
    padding-left: 450px;
    text-align: center;
    }

    .footer-links a {
    margin-left: 15px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    }

    .footer-links a:hover {
    color: #198754;
    }

    /* Mobile */
    @media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    }

    @media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    }
    /* footer animaton */
    .footer {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1.2s ease;
    }

    .footer.show {
    opacity: 1;
    transform: translateY(0);
    }
    /* //////////// */
    .footer-col {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    }

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

    .footer.show .footer-col:nth-child(1) { transition-delay: 0.2s; }
    .footer.show .footer-col:nth-child(2) { transition-delay: 0.4s; }
    .footer.show .footer-col:nth-child(3) { transition-delay: 0.6s; }
    .footer.show .footer-col:nth-child(4) { transition-delay: 0.8s; }



    /*  */
    .footer-col h4 {
    position: relative;
    overflow: hidden;
    }

    .footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #198754;
    transition: 0.6s ease;
    }

    .footer.show .footer-col h4::after {
    width: 50px;
    }

    /*  */
    .footer-col a {
    position: relative;
    }

    .footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #198754;
    transition: 0.4s ease;
    }

    .footer-col a:hover::before {
    width: 100%;
    }

    .footer-col a:hover {
    letter-spacing: 1px;
    }
