/* General Styles */
body {
  margin: 0;
  font-family: 'Vazir', Arial, sans-serif;
  background-color: #eaf4ff;
  color: #333;
  direction: rtl;
}

.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  flex-wrap: wrap; /* Allows stacking for smaller screens */
}

/* Left Blue Section */
.blue-section {
  flex: 1;
  background-color: #7d99ff;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: space-between; /* Space between illustration and footer */
  align-items: center;
  padding: 30px;
}

.illustration-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.illustration {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Right White Section */
.white-section {
  flex: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 30px;
}

.navbar {
  display: flex;
  flex-wrap: wrap; /* Ensures menu adjusts to smaller screens */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  display: block; /* Ensures the element behaves like a block-level element */
  width: 150px; /* Set the width to match your logo's dimensions */
  height: 100px; /* Set the height to match your logo's dimensions */
   background-size: contain; /* Scales the image to fit within the element */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  text-indent: -9999px; /* Hides the text visually but keeps it accessible for screen readers */
  overflow: hidden; /* Ensures no hidden text is visible */
}


.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap; /* Allows items to stack on smaller screens */
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links li a {
  text-decoration: none;
  color: #7d99ff;
  font-size: 1rem;
}

.signup-btn {
  background-color: #7d99ff;
  padding: 8px 15px;
  border: 1px solid #7d99ff;
  border-radius: 20px;
  color: white !important;
  font-weight: bold;
  text-decoration: none;
}

.signup-btn:hover {
  background-color: #5f6d8b;
  color: white;
}

.content h1 {
  font-size: 2.5rem; /* Adjusted for smaller screens */
  color: #7d99ff;
  margin-bottom: 20px;
text-align: center;
}
.content {
  
text-align: center;
}
.description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5f6d8b;
  text-align: right;
text-align: center;
}

.info-btn {
  padding: 10px 20px;
  background-color: #7d99ff;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.info-btn:hover {
  background-color: #5f6d8b;
}

.social-icons {
  text-align: right;
  margin-top: 20px;
text-align: center;
}

.social-icons a {
  margin-left: 10px;
  color: #7d99ff;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack sections vertically */
    height: auto;
  }

  .blue-section {
    display: none; /* Hide the blue section on small screens */
  }

  .white-section {
    width: 100%; /* Full width for the white section */
    padding: 20px;
  }

  .navbar {
    flex-direction: column; /* Stack logo and links */
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 5px 0;
  }

  .content h1 {
    font-size: 2rem; /* Smaller title size */
  }

  .description {
    font-size: 0.9rem; /* Adjust font size for descriptions */
  }

  .info-btn {
    padding: 8px 15px;
    font-size: 0.9rem; /* Adjust button size */
  }

  .social-icons a {
    font-size: 1rem; /* Smaller icons */
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8rem; /* Further reduced title size */
  }

  .description {
    font-size: 0.85rem;
  }

  .info-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}


.features {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  text-align: center;
margin-top: auto;
}

.feature {
  max-width: 300px;
}

.feature i {
  font-size: 2rem;
  color: #7d99ff;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}


.illustration {
  transition: transform 0.3s ease;
}

.illustration:hover {
  transform: scale(1.05);
}


footer {
  background-color: #7d99ff;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}