@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
background: url('https://arablife.net/imgs/Application-screen.png') no-repeat fixed;
background-size: cover;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    background: #1f1f1f; /* Dark navbar background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif; /* Global Font */
    border: 1.5px solid #ffffff3b;
  }
  
  .navbar-logo {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
  }
  
  .navbar-logo .logo {
    height: 40px;
    width: 120px;
    margin-right: 10px;
  }
  
  .navbar-links {
    display: flex;
    gap: 20px;
  }
  
  .navbar-links .nav-link {
    text-decoration: none;
    color: #FFFFFF;
    padding: 13px 25px;
    background: #353B3A;
    border-radius: 20px;
    transition: background 0.3s ease;
  }
  
  .navbar-links .nav-link:hover {
    background: #08C098;
  }
  
  /* Mobile-specific styles */
  .navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .navbar-links {
      display: none; /* Hide with CSS as fallback */
      flex-direction: column;
      gap: 10px;
      position: absolute;
      top: 80px; /* Align the dropdown just below the navbar */
      right: auto;
      background-color: #1f1f1f00; /* Match navbar background */
      border-radius: 40px;
      z-index: 1000; /* Ensure the menu appears above other content */
    }
  
    .navbar-links.active {
      display: flex; /* Show the menu when it's active */
    }
  
    .navbar-toggle {
      display: block; /* Show the toggle button on mobile */
    }
  }
.welcome{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: fit-content;
    overflow: hidden;
    
    padding: 50px 20px;
    margin: 0;
}
  #login-button,
  #logout-button {
    padding: 13px 25px;
    background-color: #353B3A;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
  }
  
  #login-button:hover {
    background-color:#08C098;
  }

  #profile img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding-right: 10px;
  }
  
  #profile p {
    font-size: 0px;
  }
  .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
  }
  
  .content {
    max-width: 600px;
  }
  
  h1 {
    font-size: 6rem;
    line-height: 0.8;
    margin-bottom: 2rem;
    color: #08C098;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
  h1 span {
    font-size: 4rem;
  }
  
  p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
  }

  .image {
    position: relative;
    left: 15%; /* Adjust this value to move the image to the right */
  }
  
  .image img {
    max-width: 60%;

    height: auto;
    border-radius: 10px;
  }

.aboutus{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.about-us{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    gap: 20px;
}

  
  .text-content {
    flex: 1;
    margin-top: 30px;
  }
  
  h2 {
    font-size: 3.5rem;
    color: #08C098;
    margin-bottom: 1rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Roboto", sans-serif;
  }
  
  .about-buttons {
    display: flex;
    gap: 10px;
  }
  
  .about-button {
    background-color: #08C0982B;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    fill: #08C098;
    color: #08C098;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 100px 100px 100px 100px;
    padding: 12px 24px;
    text-decoration: none;
  }
  
  .about-button:hover {
    background-color: #08C098;
    color: #003B36;
  }
  
  .gallery {
    position: relative;
    margin-left: auto;
    left: 10%; /* Adjust this value to move the image to the right */
  }
  
  .gallery img {
     max-width: 65%;
  }
  .details p {
    margin: 5px 0;
  }
  
  .details p:first-child {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .join-now {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #08C098;
    font-weight: bold;
    border-bottom: 2px solid #08C098;
    transition: all 0.3s ease;
  }
  
  .join-now:hover {
    color: white;
    border-color: white;
  }
  
  .features {
    color: #08C098;
    padding: 50px 20px;
    text-align: center;
  }
  
  .features-container h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .features-container p {
    color: #EEEEEED9;
    font-family: "Inter", Sans-serif;;
    margin-bottom: 40px;
    font-size: 1.2rem;
  }
  
  .feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .feature-card {
    background-color: #08C0981A;
    padding: 30px 20px 10px 20px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
  }
  
  .feature-card img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: "DM Sans", Sans-serif;;
  }
  
  .feature-card p {
    font-size: 1rem;
    color: #EEEEEED9;
    font-family: "Inter", Sans-serif;
  }
  
  
  .subscription {
    text-align: center;
    padding: 50px 20px;
    color: #e1e1e1;
  }
  
  .subscription h2 {
    color: #08C098;
    font-family: "DM Sans", Sans-serif;
    font-size: 54px;
    font-weight: 700;
  }
  
  .text-content2 {
    text-align: center;
    color: #EEEEEED9;
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
  }
  
  .plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .plan {
    display: flex;
    flex-direction: column;
    align-self: initial;
    align-items: flex-start;
    width: 250px;
    border-radius: 24px 24px 24px 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #08C0981A;
    border: solid 1px #08c09800;
  }

  .plan:hover{
    background-color: #08C0981A;
    background-image: url(https://arablife.net/imgs/2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 1px #08C098;
  }
  
  .plan h3 {
    color: #08C098;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
  }
  
  .price {
    color: #08C098;
    font-family: "Roboto", Sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-top: -20px;
  }

  .what{
    color: #08C098;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 500;
  }
  
  .price span {
    text-align: center;
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  
  .btn {
    background-color: transparent;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    fill: #08C098;
    color: #08C098;
    background-image: linear-gradient(180deg, #FFFFFF0F 0%, #00000014 100%);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF1A;
    border-radius: 12px 12px 12px 12px;
    display: inline-block;
    line-height: 1;
    padding: 12px 20px;
    width: 100%;
    color: #fff;
    fill: #fff;
    text-align: center;
    transition: all .3s;
  }
  
  .btn:hover {
    background-color: #08C098;
  }
  
  .features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
  }
  
  .subscription-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .subscription-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
  }
  
  .subscription-list li::before {
    content: '\2713'; /* Checkmark Unicode */
    font-size: 1.2rem;
    color: #ffffff;
    margin-right: 10px;
  }
  
  .features li {
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
  }
  
  
  .job-section {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
  }
  
  .job-section h2 {
    Color: #08C098;
    font-family: "DM Sans", Sans-serif;
    font-size: 54px;
    font-weight: 700;
  }
  
  .job-section p {
    text-align: center;
    color: #EEEEEED9;
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
  }
  
  .job-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .job-cards img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    z-index: 9999;
  }
  
  .loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#0000 calc(1*100%/6),#fff 0 calc(3*100%/6),#0000 0),
              linear-gradient(#0000 calc(2*100%/6),#fff 0 calc(4*100%/6),#0000 0),
              linear-gradient(#0000 calc(3*100%/6),#fff 0 calc(5*100%/6),#0000 0);
    background-size: 10px 400%;
    background-repeat: no-repeat;
    animation: matrix 1s infinite linear;
  }
  
  @keyframes matrix {
    0% {
      background-position: 0% 100%, 50% 100%, 100% 100%
    }
  
    100% {
      background-position: 0% 0%, 50% 0%, 100% 0%
    }
  }
      
   
   .loader {
    position: absolute;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
   }
  
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    h1 {
      font-size: 2.5rem;
      line-height: 1.2;
    }
  
    p {
      font-size: 1rem;
    }
  
    .image {
      margin-top: 1rem;
      left: 0%;
    }
    .about-us {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .gallery {
        left: 0%; /* Adjust this value to move the image to the right */
    }
  }

