  :root{
    --white:#ffffff;
    --light-green:#2DA87F;
    --green:#34BB8F;
    --black:#333333;
    --gray:#7F8C8D;
    --dark-gray:#4F4F4F;
    --sider-bar-hover:#e0e0e0;
    --fag-toggle:#F7F7F7;
    --faq-toggle-hover:rgba(128, 128, 128, 0.3);
    --btn-hover:#278666;
    --stars:#FFD700;
    --nav-shadow:rgba(0,0,0,0.3);
    --overlay:rgba(255,255,255,0.1);
    
  }
  * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
  html, body { height:100%; overflow-x:hidden; }
  body { background-color:var(--white); }

  /* Hero Section - يشمل Navbar و المحتوى */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--white);  
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
  }

  /* Navbar */
  nav {
    width: calc(100% - 80px);
    max-width:1554px;
    height:126px;
    background-color:var(--white);
    border-radius:100px;
    padding:25px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 4px 15px var(--nav-shadow);
    z-index:10;
    margin-bottom:50px;
  }
  .logo img { width:144px; height:50px; }
  .nav-links { display:flex; gap:40px; list-style:none; justify-content:center; flex:1; align-items:center; }
  .nav-links li a { color:var(--gray); text-decoration:none; font-family: Tajawal; font-weight:500; font-size:22px; line-height:17px; }
  .nav-links li a:hover { color:var(--light-green); }
  .contact-btn-desktop { padding:20px 30px; background-color:var(--green); border:none; width:200px; border-radius:50px; color:var(--white); font-weight:bold; font-size:26px; cursor:pointer; }
  .hamburger { display:none; flex-direction:column; justify-content:space-between; width:31px; height:20px; cursor:pointer; }
  .hamburger div { width:100%; height:3px; background-color:var(--light-green); }
.contact-btn-desktop:hover {
   background-color: var(--btn-hover);
}
  /* Sidebar */
  .sidebar { display:none; }
  @media(max-width:980px){
    nav { flex-wrap:wrap; padding:15px 20px; height:auto; }
    .nav-links, .contact-btn-desktop { display:none !important; }
    .hamburger { display:flex; }
    .sidebar {
      display:flex;
      position:fixed;
      top:0;
      right:-260px;
      width:260px;
      height:100%;
      background-color:var(--white);
      box-shadow:-4px 0 15px var(--nav-shadow);
      flex-direction:column;
      align-items:center;
      padding-top:60px;
      gap:10px;
      transition:right 0.3s;
      z-index:999;
    }
    .sidebar.active { right:0; }
    .close-btn { position:absolute; top:15px; left:15px; font-size:24px; font-weight:bold; cursor:pointer; background:none; border:none; }
    .sidebar a { width:90%; padding:8px 0; text-align:center; font-size:15px; font-weight:500; text-decoration:none; color:var(--black);  border-radius:20px; transition: background 0.2s; }
    .sidebar a:hover { background-color:var(--sider-bar-hover); }
    .contact-btn-mobile { width:90%; padding:10px 0; text-align:center; font-size:16px; font-weight:bold; background-color:var(--green); color:var(--white); border-radius:25px; border:none; cursor:pointer; margin-top:15px; }
    
  }
/* Hero Content داخل نفس السكشن */
.hero-content {
  text-align:center;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 58px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 10px;
  color:var(--black)
}

.hero-content p {
  color:var(--dark-gray);
  margin-bottom:30px;
  font-family: Tajawal;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.app-buttons {
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.app-buttons img {
  width:227.34px;
  height:65px;
  cursor:pointer;
}
.app-buttons img:hover {
  transform: scale(1.05);
    box-shadow: 0 8px 20px var(--nav-shadow);

}


@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 42px;
    line-height: 120%;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 150%;
  }

  .app-buttons img {
    width:180px;
    height:55px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 130%;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 150%;
  }

  .app-buttons img {
    width:160px;
    height:50px;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 35px;
  }

  .hero-content p {
    font-size: 19px;
  }

  .app-buttons img {
    width:140px;
    height:45px;
  }
}
.featured-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: auto;
  transform: translateY(80px);
}
.hero-section {
  position: relative; 
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 69%;
  object-fit: cover; 
  z-index: 0;         
}

.hero-content, nav {
  position: relative; 
  z-index: 1;      
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 69%;
  background-color: var(--overlay);
  z-index: 0.5;  
}

 /* section2/////////// */
.why-choose-us {
  padding: 80px 20px;
  background-color: var(--white);
  text-align: center;
}

.why-choose-us h2 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-align: center;
  color: var(--black);
}

.why-choose-us .description {
  
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--gray);
  max-width: 800px;
  margin: 40px auto 60px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 35px;
  justify-items: center;
}

.feature-item {
  width: 100%;
  max-width: 331px;
  height: 246px;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: var(--white);
  text-align: center;
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.feature-item p {
  font-family: 'Tajawal', sans-serif;
  color: var(--dark-gray);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 1200px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-choose-us {
  padding: 0px 20px;
  background-color: var(--white);
  text-align: center;
}
}


/* end secion 2 */

/* fag questions */
.faq-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.faq-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 3%, 50px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Tajawal", sans-serif;
}

.faq-items {
  flex: 0 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;

  counter-reset: faq-counter; 
}

.faq-item {
  width: 100%;
  max-width: 550px;
  min-height: 82px;
  background: var(--white);
  border: 1px solid var(--light-green);
  border-radius: 8px;
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  flex-direction: row; 
  direction: rtl;
}

.faq-question-text::before {
  counter-increment: faq-counter;
  content: counter(faq-counter) ". ";
  margin-left: 8px; 
  font-weight: 700;
  font-size: 20px;
}

.faq-question-text {
  font-weight: 700;
  font-size: 20px;
  text-align: right;
  flex: 1;
}

.faq-toggle {
  font-size: 26px;
  width: 30px;
  text-align: center;
}

.faq-answer {
  text-align: right;
  display: none;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}

.faq-text {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.faq-title {
  font-family: Tajawal;
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  margin-bottom: 16px;
}

.faq-subtext {
  font-family: Tajawal;
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  color: var(--gray);
}

.faq-question {
  cursor: default; 
}

.faq-toggle {
  cursor: pointer; 
}


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

  .faq-text {
    order: -1;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-items {
    width: 90%;
    max-width: 353px;
  }

  .faq-item {
    min-height: 64px;
    padding: 12px 16px;
    border-width: 1px;
  }

  .faq-question-text::before {
    font-size: 18px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-toggle {
    font-size: 24px;
  }

  .faq-title {
    font-size: 75px;
  }

  .faq-subtext {
    font-size: 26px;
  }

  .faq-answer {
    margin-top: 12px;
  }
}

.faq-toggle {
  font-size: 26px;
  width: 36px;
  height: 36px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;              
  background-color: var(--fag-toggle);
  color:var(--light-green);                  
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  background-color: var(--faq-toggle-hover) 
}
/* end faq guestions */


/* time line section */
  .download-btn-left {
  position: absolute;
  left: 76px; 
  bottom: 15px; 
  padding: 15px 25px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 5; 
  transition: background 0.3s, transform 0.3s;
}

.download-btn-left:hover {
  background-color: var(--btn-hover);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .download-btn-left {
    left: 20%;
    transform: translateX(-50%);
    bottom: 20px;
    font-size: 16px;
    padding: 12px 20px;
  }
}

.how-section {
  width: 100%;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Tajawal', sans-serif;
  box-sizing: border-box;
}

.how-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

.how-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  direction: rtl;
}

.how-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.how-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.how-text {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center; 
  position: relative;
}

.how-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: center;
}

.how-intro {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--gray);
  text-align: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-number::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 80px; 
  background-color: transparent;
  border-right: 1px dashed var(--light-green);
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}

.timeline-item:last-child .timeline-number::after {
  display: none;
}

.timeline-desc {
  font-size: 21px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 700; 
}

.timeline-subdesc {
  font-size: 18px;
  color: var(--dark-gray);
  margin-top: 4px;
  font-weight: 400; 
}

/* Responsive للشاشات المتوسطة */
@media (max-width: 1200px) {
  .how-text h2 { font-size: 40px; }
  .how-intro { font-size: 18px; }
  .timeline-number { width: 45px; height: 45px; font-size: 20px; }
  .timeline-desc { font-size: 20px; }
  .timeline-subdesc { font-size: 18px; }
  .timeline-number::after { height: 70px; }
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 900px) {
  .how-container { justify-content: center; text-align: center; }
  .how-image { order: -1; margin-bottom: 40px; }
  .how-text { flex: 1 1 100%; }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .timeline-number::after {
    width: 4px;
    height: 60px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    border-right: 1px dashed var(--light-green);
  }

  .timeline-item:last-child .timeline-number::after { display: none; }

  .timeline-desc, .timeline-subdesc { text-align: right; }
  .timeline-number::after {

    right: 35%;
   
}
}
/* end time line */
/* start comments section  */
/* سكشن التستيمونيال */
.testimonials {
  padding:80px 0px 0px;
  text-align:center;
  position: relative; 
}
.testimonials h2 {
  font-weight:700;
  font-size:48px;
  color:var(--black);
  margin-bottom:10px;
}
.testimonials .description {
  font-weight:500;
  font-size:20px;
  color:var(--gray);
  margin-bottom:50px;
  max-width:800px;
  margin:auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0 auto;
}

.carousel {
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 clamp(350px, 29vw, 442px);
  height: 207px;
  background:var(--white);
  border-radius:14px;
  padding:25px 18px;
  text-align:center;
  opacity:0.5;
  transform:scale(0.85);
  transition:0.5s;
}
.testimonial-card img {
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
}
.testimonial-card h3 {font-size:20px; margin-bottom:5px;}
.testimonial-card .stars {color:var(--stars); margin-bottom:10px;}
.testimonial-card p {font-size:15px; color:var(--black); line-height:1.4;}
.testimonial-card.active {
  transform:scale(1);
  opacity:1;
  background-color: var(--fag-toggle);
}

.carousel-control {
  position:absolute;
  top:40%;
  transform:translateY(-50%);
  background:transparent;
  border:none;
  color:var(--light-green);
  font-size:40px;
  cursor:pointer;
  z-index:10;
  padding:0;
}
.carousel-control.left { left:2%; }
.carousel-control.right { right:2%; }

.banner-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top:40px;
}
.banner-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  min-height: 150px;
  object-fit: cover;
}
@media(max-width:900px){
  .carousel-control.left { left:15px; top:50%; }
  .carousel-control.right { right:15px; top:50%; }
}
@media(max-width:450px){
  .carousel-control.left { left:45px; top:50%; }
  .carousel-control.right { right:5px; top:50%; }
}

@media(max-width:900px){
  .testimonial-card {flex:0 0 80%; height:auto;}
  .testimonial-card.active {margin-left:7%;}

  .banner-img {min-height:120px;}
}
/* end comments section */

/* start download section// */
.download-section {
  width: 100%;
  padding: 60px 0;
  font-family: 'Tajawal', sans-serif;
  background-color: var(--white);
  overflow: hidden;
}

.download-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0;
  position: relative;
}

.download-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  position: relative;
}

.download-image.left {
  margin-left: -5%;
}

.download-image.right {
  margin-right: -5%;
}

.download-image img {
  width: 100%;
  height: auto;
  flex-shrink: 1;
  display: block;
}

.download-text {
  flex: 1 1 30%;
  text-align: center;
  z-index: 1;
}

.download-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 25px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.store-btn img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80px;
  transition: transform 0.3s ease;
}

.store-btn img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .download-container {
    flex-direction: column;
    align-items: center;
  }

  .download-image,
  .download-text {
    flex: 1 1 100%;
    margin: 0 0 20px 0;
  }

  .download-text h2 {
    font-size: 52px;
  }

  .store-btn img {
    max-height: 730px;
    width: auto;
  }

  .download-image img {
    max-width: 91%;
    margin: 0 auto;
  }

  .download-image.right {
    display: none;
  }
}
/* end download section */
/* start top footer */
.footer-box {
  width: 100%;
  max-width: 1552px;
  height: auto;
  margin: 50px auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 80px;
  font-family: 'Tajawal', sans-serif;
  gap: 30px;
}

.contact-card {
  width: 50%;
  min-width: 480px;
  max-width: 665px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 8px 20px var(--nav-shadow);
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-card label {
  font-weight: 500;
  font-size: 18px;
}

.contact-card input,
.contact-card textarea {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  font-size: 16px;
}

.contact-card button {
  background-color: var(--light-green);
  color: var(--white);
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.contact-card button:hover {
  background-color: var(--btn-hover);
}

.footer-content {
  margin-top: 100px;
  color: var(--white);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 800px;
  flex-grow: 1; 
}

.footer-content h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 40px;
}

.footer-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 50px;
}

.footer-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end; 
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  flex-direction: row-reverse; 
}

.icon-item i {
  font-size: 20px;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  text-align: right;
}

@media (max-width: 900px) {
  .footer-icons {
    flex-direction: column; 
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .icon-item {
    flex-direction: row-reverse; 
    gap: 10px;
  }

  .icon-item i {
    font-size: 20px;
  }
}

@media (max-width: 1299px) and (min-width: 1024px) {
  .footer-icons {
    flex-wrap: nowrap; 
    justify-content: flex-end;
  }
  .icon-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  flex-direction: row-reverse; 
}
}




@media (max-width: 1200px) {
  .contact-card {
    max-width: 550px;
    min-width: 420px;
  }

  .footer-content h1 {
    font-size: 48px;
  }

  .footer-text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .contact-card {
    width: 100%;
    max-width: 600px;
    padding: 30px 25px;
  }

  .footer-content {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .footer-content h1 {
    font-size: 36px;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-icons {
    justify-content: center;
    gap: 15px;
  }

  .icon-item i {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .footer-icons {
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start; 
    gap: 10px;
  }

  .icon-item {
    flex-direction: row-reverse; 
    gap: 10px;
    font-size: 16px;
  }

  .icon-item i {
    font-size: 20px;
  }
}

@media (max-width: 900px) {

  .footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    gap: 35px;
  }
.footer-content {
  margin-top: 0px;
 
}
  .contact-card {
    width: 353px !important;
    height: 524.87px !important;
    padding: 16px !important;
    min-width: unset;
    max-width: unset;
    gap: 22px !important;
    border-radius: 20px !important;
  }

  .contact-card input {
    width: 321px !important;
    padding: 10px;
    border-radius: 8px;
    border-width: 0.91px;
  }

  .contact-card textarea {
    width: 321px !important;
    height: 170.68px !important;
    padding: 12.79px 7.31px !important;
    gap: 3.65px !important;
    border-radius: 8px !important;
    border-width: 0.91px !important;
  }

  .contact-card button {
    width: 321px !important;
    height: 47.51px !important;
    padding: 12.79px 7.31px !important;
    border-radius: 8px !important;
    border-width: 0.91px !important;
    font-size: 16px;
  }

  .footer-content {
    text-align: center !important;
    align-items: center !important;
  }

  .footer-content h1 {
    font-size: 42px !important;
    line-height: 1.2;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-icons {
    justify-content: center;
  }
   .contact-card label {
    text-align: right !important;
  }

  .contact-card form {
    align-items: flex-end !important; 
  }
}
.contact-card label {
  text-align: right !important;
  width: 100%;
  display: block;
}
/* end top footer */
/* start bottom footer */
.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px; 
  background-color: var(--white);
  color: rgb(0, 0, 0);
  font-family: 'Tajawal', sans-serif;
  gap: 20px;
  width: 100%;
  height: 69.96px;
  max-width: 1400px; 
  margin: 0 auto; 
}


  .social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .social-icon {
    font-size: 24px;
    color: var(--light-green); 
    text-decoration: none;
  }

  .social-icon:hover {
    color: var(--btn-hover);
  }

  .footer-info {
    text-align: center;
    font-size: 20px; 
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    flex-grow: 1;
  }

  .footer-logo img {
    width: 201.7px; 
    height: 69.96px; 
  }


  @media (min-width: 900px) {
    .bottom-footer {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .social-links {
      justify-content: flex-start;
    }

    .footer-logo {
      order: 3; 
      margin-left: auto; 
    }

    .footer-info {
      order: 2;
      text-align: center;
      flex-grow: 1;
    }
  }

  @media (max-width: 900px) {
    .bottom-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%; 
      padding: 10px;
    }

    .footer-logo {
      order: 1; 
    }

    .footer-info {
      order: 3; 
    }

    .social-links {
      order: 2; 
    }

   
  }
  /* end bottom footer */
