  :root {
      --primary-color: #7EAD3B;
      --primary-dark: #6a9432;
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --text-color: #333333;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Tajawal', sans-serif;
      color: var(--text-color);
      background-color: var(--white);
      overflow-x: hidden;
  }

  /* Header Styles */
  header {
      background-color: var(--white);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      height: 100px;
      z-index: 1000;
      padding: 15px 0;
      transition: all 0.3s ease;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5px;
      
  }

  .link_map {
      text-decoration: none;
      color: var(--text-color);
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo img {
      height: 50px;
      margin-left: 10px;
  }

  .logo-text h1 {
      color: var(--primary-color);
      font-size: 1.5rem;
      font-weight: 700;
  }

  .logo-text p {
      color: var(--text-color);
      font-size: 0.8rem;
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin: 0 10px;
      position: relative;
  }

  nav ul li a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: 500;
      padding: 5px 10px;
      transition: all 0.3s ease;
      font-size: 1rem;
  }

  nav ul li a:hover {
      color: var(--primary-color);
  }

  .nav-btn {
      background-color: var(--primary-color);
      color: var(--white) !important;
      border-radius: 30px;
      padding: 8px 20px !important;
      transition: all 0.3s ease;
  }

  .nav-btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary-color);
      cursor: pointer;
  }

  /* Hero Section */
  .hero {
      height: 180vh;
      display: flex;
      align-items: center;
     padding-top: 80px;
     align-items: center;
     /* margin-top: 100px; */
  }
  
  .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .hero-content {
      flex: 1;
      padding-left: 40px;
  }

  .hero-content h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--text-color);
      line-height: 1.2;
      text-align: start;
  }

  .hero-content h2 span {
      color: var(--primary-color);
  }

  .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 600px;
  }

  .hero-btns {
      display: flex;
      gap: 15px;
  }

  .btn {
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
  }

  .btn-primary {
      background-color: var(--primary-color) !important;
      width: 200px !important;
      text-decoration: none !important;
      border: none !important;
      color: var(--white);
  }

  .btn-primary:hover {
      background-color: var(--primary-dark) !important;
      /* transform: translateY(-3px) !important; */
      box-shadow: 0 10px 20px rgba(126, 173, 59, 0.2) !important;
  }


  .btn-outline {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
  }

  .btn-outline:hover {
      background-color: var(--primary-color);
      color: var(--white);
      transform: translateY(-3px);
  }

  .hero-image {
      flex: 1;
      position: relative;
  }

  .whatsapp-button {
      text-decoration: none;
      background-color: var(--primary-dark);
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
  }

  .whatsapp-button img {
      width: 24px;
      height: 24px;
  }

  .whatsapp-button:hover {
      background-color: #6c9832ae;
  }

  .hero-image img {
      max-width: 100%;
      border-radius: 10px;
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  .swiper-slide .view_details:hover {
      background-color: var(--primary-color);
      transform: scale(1.05);
      transition: 0.3s ease-in-out;

  }

  /* Features Section */
  .features,
  .Case_Video {
      padding: 100px 0;
      background-color: var(--primary-color);
  }

  .Case_Video {
      padding: 30px 0 !important;

  }

  .section-title {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: var(--text-color);
      margin-bottom: 15px;
  }

  .section-title p {
      font-size: 1.1rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
  }

  .features-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .feature-card {
      background-color: var(--white);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
      width: 80px;
      height: 80px;
      background-color: rgba(126, 173, 59, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary-color);
      font-size: 1.8rem;
  }

  .feature-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--text-color);
  }

  .feature-card p {
      color: #666;
      line-height: 1.6;
  }

  /* Services Section */
  .services {
      padding: 100px 0;
  }

  .services-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
  }

  .service-card {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .service-img {
      height: 250px;
      overflow: hidden;
  }

  .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
  }

  .service-card:hover .service-img img {
      transform: scale(1.1);
  }

  .service-content {
      padding: 25px;
  }

  .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-color);
  }

  .service-content p {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
  }

  .service-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
  }

  .price {
      font-weight: 700;
      color: var(--primary-color);
      font-size: 1.2rem;
  }

  /* About Section */
  .about {
      padding: 100px 0;
      background-color: var(--primary-color);
  }

  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 50px;
  }

  .about-image {
      flex: 1;
      position: relative;
  }

  .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .Case_Gallary {
      background-color: var(--white);
  }

  .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background-color: var(--primary-dark);
      color: var(--white);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(126, 173, 59, 0.3);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  .about-badge h3 {
      font-size: 2rem;
      margin-bottom: 5px;
  }

  .about-badge p {
      font-size: 0.9rem;
  }

  .about-content {
      flex: 1;
  }

  .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #000000;
  }

  .about-content h2 span {
      color: #000000;
  }

  .about-content p {
      margin-bottom: 20px;
      line-height: 1.6;
      color: #2d2d2d;
  }

  .about-features {
      margin-top: 30px;
  }

  .about-feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      color: #000000;
  }

  .about-feature i {
      color: #f3eeee;
      font-size: 1.2rem;
      margin-left: 10px;
      margin-top: 5px;
  }

  /* Testimonials Section */
  .testimonials {
      padding: 100px 0;
      background-color: #ffffff;
      color: var(--white);
      position: relative;
  }

  .testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(244, 251, 235, 0.8);
      mix-blend-mode: multiply;
  }

  .testimonials-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
  }

  .section-title.light h2 {
      color: black;
  }

  .section-title.light p {
      color: #2d2d2d;
  }

  .testimonials-slider {
      margin-top: 50px;
  }

  .testimonial-card {
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 30px;
      margin: 0 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .testimonial-card .quote {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      position: relative;
  }

  .testimonial-card .quote::before {
      content: '\201C';
      font-size: 4rem;
      color: rgba(255, 255, 255, 0.2);
      position: absolute;
      top: -20px;
      left: -10px;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
  }

  .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-left: 15px;
      border: 3px solid var(--primary-color);
  }

  .author-info h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
  }

  .author-info p {
      opacity: 0.8;
      font-size: 0.9rem;
  }

  /* Appointment Section */
  .appointment {
      padding-top: 140px;
      z-index: 1;
      position: relative;
      padding-bottom: 10px;
      
      background-color: var(--primary-color);
  }

  .appointment-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 50px;
  }

  .appointment-form {
      flex: 1;
      background-color: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  }

  .appointment-form h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--text-color);
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
  }

  .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Tajawal', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .form-control:focus {
      border-color: var(--primary-color);
      outline: none;
      box-shadow: 0 0 0 3px rgba(126, 173, 59, 0.2);
  }

  .form-submit {
      background-color: var(--primary-color);
      color: var(--white);
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
  }

  .form-submit:hover {
      background-color: var(--primary-dark);
  }

  .appointment-info {
      flex: 1;
  }

  .appointment-info h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--text-color);
  }

  .info-card {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
  }

  .info-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(126, 173, 59, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.2rem;
      margin-left: 15px;
      flex-shrink: 0;
  }

  .info-content h3 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: var(--text-color);
  }

  .info-content p {
      color: #666;
      line-height: 1.6;
  }

  /* Footer */
  footer {
      background-color: #222;
      color: #fff;
      height: 100%;
      padding: 80px 0 30px;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
  }

  .footer-col h3 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
  }

  .footer-col p {
      margin-bottom: 20px;
      line-height: 1.6;
      opacity: 0.8;
  }

  .footer-links li {
      margin-bottom: 10px;
      list-style: none;
  }

  .footer-links a {
      color: #fff;
      opacity: 0.8;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .footer-links a:hover {
      opacity: 1;
      color: var(--primary-color);
      padding-right: 5px;
  }

  .footer-contact li {
      margin-bottom: 15px;
      list-style: none;
      display: flex;
      align-items: flex-start;
  }

  .footer-contact i {
      margin-left: 10px;
      color: var(--primary-color);
      margin-top: 5px;
  }

  .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .social-links a {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background-color: var(--primary-color);
      transform: translateY(-3px);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 30px;
      margin-top: 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
      opacity: 0.7;
      font-size: 0.9rem;
  }

  .chat-btn {
      position: fixed;
      width: 60px;
      top: 80%;
      left: 50px;
      z-index: 99;
      height: 60px;
  }

  .chat-btn:hover {
      cursor: pointer;
      opacity: 0.5;
  }

  .chat-btn img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
  }

  .chat-container {
      background-color: #f9f9f9;
      border: 2px solid #7EAD3B;
      border-radius: 8px;
      width: 90%;
      max-width: 500px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .chat-box {
      min-height: 150px;
      margin-bottom: 20px;
      padding: 10px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 5px;
      overflow-y: auto;
  }

  .bot-message,
  .user-message {
      margin: 10px 0;
  }

  .bot-message {
      color: #7EAD3B;
  }

  .option-button {
      background-color: #7EAD3B;
      border: none;
      color: white;
      padding: 10px 15px;
      margin: 5px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
  }

  .option-button:hover {
      background-color: #6c9f33;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
      .hero-container {
          flex-direction: column;
          text-align: center;
      }

      .hero-content {
          padding-left: 0;
          margin-bottom: 40px;
      }

      .hero-btns {
          justify-content: center;
      }

      .about-container {
          flex-direction: column;
      }

      .about-image {
          margin-bottom: 50px;
      }

      .appointment-container {
          flex-direction: column;
      }
  }

  @media (max-width: 768px) {
  
      nav ul {
          display: none;
          position: absolute;
          top: 80px;
          right: 0;
          background-color: var(--white);
          width: 100%;
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      nav ul.show {
          display: flex;
      }

      nav ul li {
          margin: 3px 0;
      }

      nav li {
          /* border: 1px solid #000000; */
          padding: 10px;
          border-radius: 7px;
          text-align: center !important;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          /* هذا هو الظل */


      }

      .nav-button {
          width: 100% !important;
          text-align: center !important;
          background-color: var(--primary-color) !important;
          border-radius: 7px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          /* هذا هو الظل */


      }

      .mobile-menu-btn {
          display: block;
      }

      .hero-content h2 {
          font-size: 2.2rem;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      .about-badge {
          right: 0;
      }

      .features-container {
          width: 300px;
      }

      .swiper-wrapper,
      .swiper-slide {
          width: 275px !important;
      }

      .swiper-section,
      .mySwiper {
          padding: 25px 0px !important;
      }

      .link_view_video {
          width: 100% !important;
      }

      .juxtapose {
          height: 300px !important;
          width: 300px !important;
          
      }

      .about-image {
          width: 100% !important;
          height: 300px !important;
      }

      .about-image img {
          width: 100% !important;
          height: 300px !important;
          object-fit: cover;
          border-radius: 10px;
      }

  }

  @media (max-width: 992px) {
      .hero {
          height: auto;
          padding: 80px 0 60px;
      }

      .hero-content h2 {
          font-size: 2.5rem;
      }

      .hero-btns {
          flex-direction: column;
          gap: 10px;
      }

      .btn {
          width: 100%;
          text-align: center;
      }

      .features-container {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .services-grid {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
  }

  @media (max-width: 576px) {
      .hero {
          height: auto;
          padding: 100px 0 60px;
      }

      .hero-content h2 {
          font-size: 1.8rem;
      }

      .hero-btns {
          flex-direction: column;
          gap: 10px;
      }

      .btn {
          width: 100%;
          text-align: center;
      }

      .features-container {
          grid-template-columns: 1fr;
      }

      .services-grid {
          grid-template-columns: 1fr;
      }
  }


  .fade-in {
      animation: fadeIn 1.2s ease-in forwards;
      opacity: 0;
  }

  @keyframes fadeIn {
      to {
          opacity: 1;
      }
  }

  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap");

  .video-card {
      border-radius: 30px !important;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      background-color: var(--white);

  }

  .video-card a {
      width: 100% !important;
      top: 0px !important;
  }

  .video-card p {
      height: 50px;
  }

  .video-card video {
      border-top-left-radius: .5rem;
      border-top-right-radius: .5rem;
      object-fit: cover;
      height: 250px;
  }

  .video-card .card-body {
      background: #f8f9fa;
  }

  .swiper-section {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      padding: 0 15%;
  }

  .swiper {
      width: 100%;
      padding-top: 25px;
      padding-bottom: 30px;
  }

  .swiper-slide {
      width: 300px;
      height: 400px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: self-start;
  }

  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
      background: var(--primary-color);
  }

  .swiper-slide .view_details {
      text-transform: uppercase;
      color: #fff;
      background: var(--primary-dark);
      padding: 7px 18px 7px 25px;
      display: inline-block;
      border-radius: 20px 0 0 20px;
      letter-spacing: 2px;
      font-size: 0.8rem;
      font-family: "Open Sans", sans-serif;
  }


  .swiper-slide h2 {
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 1.3rem;
      line-height: 1.4;
      margin-bottom: 15px;
      padding: 25px 45px 0 25px;
  }

  .swiper-slide p {
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: 300;
      display: flex;
      align-items: center;
      padding: 0 25px 35px 25px;
  }
  

  .swiper-slide svg {
      color: #fff;
      width: 22px;
      height: 22px;
      margin-right: 7px;
  }


  .swiper-slide--five {
      background: linear-gradient(to top, #0f2027, #203a4300, #2c536400);
      box-shadow: black 0px 0px 20px 0px;
  }

  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
      background-image: none;
  }
  .social-links a{
      text-decoration: none !important;
  }