.digital-stamp-card {
  padding: 8px 32px;
  background: #F3F4F6;
}

.logo-img {
 
    margin-top: 29px;
}
  .digital-stamp-card .digital-stamp-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

    .digital-stamp-card .digital-stamp-header h6 {
      margin: 0px;
      color: #161616;
      font-size: 14px;
    }

    .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
      cursor: pointer;
    }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card span {
        color: #1B8354;
        font-size: 14px;
      }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card svg,
      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card img {
        transition: 0.3s;
      }

    .digital-stamp-card .digital-stamp-header.open .btn-digital-stamp-card svg,
    .digital-stamp-card .digital-stamp-header.open .btn-digital-stamp-card img {
      transform: rotate(180deg);
    }

    .btn-digital-stamp-card img {
      margin-right: 4px;
      margin-left: 4px;
    }

  .digital-stamp-card .digital-stamp-body {
    padding-top: 40px;
    padding-bottom: 32px;
    display: block;cm
  }

    .digital-stamp-card .digital-stamp-body .digital-stamp-container {
      margin-bottom: 32px;
      display: flex;
      gap: 32px;
    }

      .digital-stamp-card .digital-stamp-body .digital-stamp-container .box {
        display: flex;
        align-items: flex-start;
        gap: 18px;
      }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box .img-border-rounded {
          padding: 14px 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid #067647;
          border-radius: 100%;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box h6 {
          margin-top: 0px;
          margin-bottom: 12px;
          color: #161616;
          font-size: 18px;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box .green-text {
          color: #1B8354;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box p {
          margin: 0px;
          color: #384250;
          font-size: 16px;
        }

    .digital-stamp-card .digital-stamp-body .stamp-link-box {
      padding: 8px 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-radius: 8px;
      background: #FFF;
    }

      .digital-stamp-card .digital-stamp-body .stamp-link-box p {
        margin: 0px;
        color: #161616;
        font-size: 16px;
      }

      .digital-stamp-card .digital-stamp-body .stamp-link-box a {
        color: #1B8354;
        font-size: 16px;
        text-decoration: underline;
      }

.stamp-ar {
  direction: rtl;
}

.stamp-en {
  direction: ltr;
}

@media (max-width: 768px) {
  .digital-stamp-card {
    padding: 8px 16px;
  }

    .digital-stamp-card .digital-stamp-header {
      flex-wrap: wrap;
    }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
        flex: 100%;
        margin-right: 33px;
      }

    .digital-stamp-card .digital-stamp-body .digital-stamp-container {
      flex-direction: column;
    }

  [dir="ltr"] .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
    margin-right: 0px;
    margin-left: 33px;
  }
}




/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Magic Scroll Effects */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2d5016, #4a7c23);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  transition: transform 0.3s ease;
}



.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d5016, #4a7c23);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.scroll-to-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.parallax-element {
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

/* 
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
 */
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.8s ease;
}

.scroll-scale.revealed {
  transform: scale(1);
  opacity: 1;
}

body {
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

/* Header Styles */
.header {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1000;
  background: transparent;
}

.header-logo {
  display: flex;
  justify-content: flex-end;
}

.logo-img {
  height: 120px;
  width: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Text */
.animated-text {
  margin: 30px 0;
  overflow: hidden;
}

.animated-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 2s ease forwards;
  animation-delay: 0.5s;
  padding: 20px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.animated-text p {
  animation: fadeInUp 2s ease forwards, textGlow 4s ease-in-out infinite;
  animation-delay: 0.5s, 2.5s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(45, 80, 22, 0.3), rgba(74, 124, 35, 0.3)), 
              url('./attached_assets/WhatsApp Image 2025-08-30 at 2.06.29 PM_1756552146863.jpeg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 80, 22, 0.4);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 50px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
}

.btn-primary {
  background: white;
  color: #2d5016;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2d5016;
  transform: translateY(-3px);
}

/* Search Bar */
.search-bar {
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

.search-container {
  background: white;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.search-container input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  outline: none;
  text-align: right;
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
}

.search-container select {
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  outline: none;
  background: white;
  cursor: pointer;
  text-align: right;
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
}

.search-btn {
  background: #2d5016;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #1a2f0c;
}

/* Service Description Section */
.service-description {
  padding: 100px 0;
  background: white;
}

.service-description h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2d5016;
  font-weight: 700;
}

.service-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.service-steps h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #2d5016;
  font-weight: 600;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-right: 4px solid #2d5016;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  min-width: 60px;
  height: 60px;
  background: #0A9C2A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  text-align: right;
}

.step-content h4 {
  font-size: 1.3rem;
  color: #2d5016;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Camping Guide Section */
.camping-guide {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.camping-guide h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2d5016;
  font-weight: 700;
}

.guide-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #2d5016;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5016, #4a7c23, #2d5016);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: #0A9C2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 15px rgba(10, 156, 42, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.card-content h3 {
  font-size: 1.4rem;
  color: #2d5016;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2d5016;
  font-weight: 700;
}

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: #2d5016;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Destinations Section */
.destinations {
  padding: 100px 0;
}

.destinations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2d5016;
  font-weight: 700;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #2d5016, #4a7c23);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  color: white;
  font-size: 4rem;
  opacity: 0.7;
}

.destination-rating {
  position: absolute;
  top: 15px;
  left: 15px;
  right: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.destination-info {
  padding: 25px;
}

.destination-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.location {
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}

.location i {
  margin-left: 5px;
  margin-right: 0;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 15px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.amenity {
  background: #f0f7eb;
  color: #2d5016;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.amenity i {
  margin-left: 5px;
  margin-right: 0;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2d5016;
  font-weight: 700;
}

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

.service-item {
  text-align: center;
  padding: 30px 20px;
}

.service-item i {
  font-size: 3rem;
  color: #2d5016;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.service-item p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2d5016;
  font-weight: 700;
}

.contact-info-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.contact-item i {
  font-size: 2rem;
  color: #0A9C2A;
  margin-bottom: 15px;
  width: auto;
}

.contact-item div {
  text-align: center;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.contact-item p {
  color: #666;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: right;
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2d5016;
}

.contact-form button {
  width: 100%;
}

/* Footer */
.footer {
  background: #1a2f0c;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-contact i {
  width: 16px;
  color: #4a7c23;
}

.footer-section p {
  margin-bottom: 20px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 0 25px 25px 0;
  outline: none;
  text-align: right;
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
}

.newsletter button {
  background: #2d5016;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px 0 0 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #4a7c23;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom p:last-child {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    top: 20px;
    right: 20px;
  }
  
  .logo-img {
    height: 80px;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .animated-text p {
    font-size: 1rem;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .service-description h2 {
    font-size: 2rem;
  }

  .service-steps h3 {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .step-content {
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .camping-guide h2 {
    font-size: 2rem;
  }

  .guide-intro {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .guide-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .guide-card {
    padding: 25px 20px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 1.7rem;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .card-content p {
    font-size: 1rem;
  }

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

  .search-container {
    flex-direction: column;
    border-radius: 15px;
  }

  .search-container input,
  .search-container select {
    width: 100%;
    margin-bottom: 10px;
  }

  .search-btn {
    width: 100%;
    border-radius: 10px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-simple {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-item {
    justify-content: center;
  }

  .features h2,
  .destinations h2,
  .services h2,
  .contact h2 {
    font-size: 2rem;
  }

  .destination-rating {
    right: 15px;
    left: auto;
  }

  .newsletter {
    flex-direction: row-reverse;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .header {
    top: 15px;
    right: 15px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .hero {
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .service-description {
    padding: 60px 0;
  }

  .service-intro {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .step {
    padding: 20px;
  }

  .step-number {
    min-width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step-content h4 {
    font-size: 1.1rem;
  }

  .camping-guide {
    padding: 60px 0;
  }

  .camping-guide h2 {
    font-size: 1.8rem;
  }

  .guide-intro {
    font-size: 1rem;
  }

  .guide-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .guide-card {
    padding: 20px 15px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .hero-content > p {
    font-size: 1.1rem;
  }

  .animated-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .features,
  .destinations,
  .services,
  .contact {
    padding: 60px 0;
  }

  .destination-card {
    margin: 0 15px;
  }

  .contact-form {
    padding: 25px;
  }
}


.digital-stamp-card {
  padding: 8px 32px;
  background: #F3F4F6;
}

  .digital-stamp-card .digital-stamp-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

    .digital-stamp-card .digital-stamp-header h6 {
      margin: 0px;
      color: #161616;
      font-size: 14px;
    }

    .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
      cursor: pointer;
    }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card span {
        color: #1B8354;
        font-size: 14px;
      }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card svg,
      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card img {
        transition: 0.3s;
      }

    .digital-stamp-card .digital-stamp-header.open .btn-digital-stamp-card svg,
    .digital-stamp-card .digital-stamp-header.open .btn-digital-stamp-card img {
      transform: rotate(180deg);
    }

    .btn-digital-stamp-card img {
      margin-right: 4px;
      margin-left: 4px;
    }

  .digital-stamp-card .digital-stamp-body {
    padding-top: 40px;
    padding-bottom: 32px;
    display: none;
  }

    .digital-stamp-card .digital-stamp-body .digital-stamp-container {
      margin-bottom: 32px;
      display: flex;
      gap: 32px;
    }

      .digital-stamp-card .digital-stamp-body .digital-stamp-container .box {
        display: flex;
        align-items: flex-start;
        gap: 18px;
      }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box .img-border-rounded {
          padding: 14px 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid #067647;
          border-radius: 100%;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box h6 {
          margin-top: 0px;
          margin-bottom: 12px;
          color: #161616;
          font-size: 18px;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box .green-text {
          color: #1B8354;
        }

        .digital-stamp-card .digital-stamp-body .digital-stamp-container .box p {
          margin: 0px;
          color: #384250;
          font-size: 16px;
        }

    .digital-stamp-card .digital-stamp-body .stamp-link-box {
      padding: 8px 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-radius: 8px;
      background: #FFF;
    }

      .digital-stamp-card .digital-stamp-body .stamp-link-box p {
        margin: 0px;
        color: #161616;
        font-size: 16px;
      }

      .digital-stamp-card .digital-stamp-body .stamp-link-box a {
        color: #1B8354;
        font-size: 16px;
        text-decoration: underline;
      }

.stamp-ar {
  direction: rtl;
}

.stamp-en {
  direction: ltr;
}

@media (max-width: 768px) {
  .digital-stamp-card {
    padding: 8px 16px;
  }

    .digital-stamp-card .digital-stamp-header {
      flex-wrap: wrap;
    }

      .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
        flex: 100%;
        margin-right: 33px;
      }

    .digital-stamp-card .digital-stamp-body .digital-stamp-container {
      flex-direction: column;
    }

  [dir="ltr"] .digital-stamp-card .digital-stamp-header .btn-digital-stamp-card {
    margin-right: 0px;
    margin-left: 33px;
  }
}
