@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
  }

body, html{
    margin: 0;
    padding: 0;
    height: 100%;
}



.system-agriculture-section {
    height: 100vh;
    background-image: url('/assets/images/revinlog-background.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-agriculture-section1 {
  height: 100vh;
  background-image: url('/assets/images/skypulse.png'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-background-image {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content-system3{
  color: #fff;
  flex: 1;
  padding: 50px;
}

.text-content-system3 h1{
  font-size: 2.3rem;
  margin: 20px 0;
  line-height: 1.2;
  color: white;
  text-align: start;
}

.text-content-system3 p{
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.system-precision-agriculture {
    text-align: center;
    padding: 40px;
}

.system-precision-agriculture h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.system-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.system-tab {
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.system-tab:hover {
    background-color: #eaeaea;
}

.system-active {
    border: 2px solid black;
    background-color: white;
}

.system-tab-content {
    display: none; 
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    /* display: flex; */
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.system-active-content {
    display: flex; 
}

.system-tab-content img {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.system-tab-content div {
    max-width: 50%;
}

.system-tab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.system-tab-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.request-cta-button {
  background-color: #28a745;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.request-cta-button:hover {
  background-color: #218838;
}

.skypulse img{
  width: 40%;
}

.process-step {
  max-width: 600px;
  text-align: left;
  /* padding: 20px; */
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #11afab;
}

.process-step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Responsive layout */
@media (max-width: 768px) {
    .skypulse img{
      width: 350px;
    }
    .system-tab-content {
        flex-direction: column;
        text-align: center;
    }

    .system-tab-content img {
        max-width: 100%;
    }

    .system-tab-content div {
        max-width: 100%;
    }

    .system-tab-content h2 {
        font-size: 1.8rem;
    }

    .system-tab-content p {
        font-size: 1rem;
    }

    .system-tabs {
        flex-direction: column;
    }

    .text-content-system3 h1{
      font-size: 1.9rem;
      margin: 20px 0;
      line-height: 1.2;
      color: white;
      text-align: start;
    }
}

.request-hero-section {
  background-image: url('Daas.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-hero-content {
  text-align: center;
  color: #f1f1f1;
  padding: 20px;
}

.request-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.request-hero-content p{
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.request-cta-button {
  background-color: #28a745;
  color: #f1f1f1;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.request-cta-button:hover {
  background-color: #218838;
}


.sys-section {
    text-align: center;
    padding: 2rem;
  }
  
  .sys-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #39376f;
  }
  
  .sys-highlight {
    color: #11afab; /* Green highlight color */
  }
  
  .sys-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
  }
  
  .sys-image {
    width: 100%;
    border-radius: 12px;
  }
  
  .sys-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .sys-feature {
    margin: 0 1rem;
  }
  
  .sys-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background-color: #11afab;
    color: white;
    border-radius: 10px;
    padding: 5px;
  }
  
  .sys-feature-description {
    font-size: 1rem;
    color: #555;
  }
  
  /* Responsive design */
  @media (min-width: 768px) {
    .sys-features {
      flex-direction: row;
      justify-content: center;
    }
  
    .sys-feature {
      flex: 1;
      max-width: 300px;
    }
  
    .sys-feature-title {
      font-size: 1.5rem;
    }
  
    .sys-feature-description {
      font-size: 1.1rem;
    }
  }



  .system-drone-section {
    padding: 5rem;
  }
  
  .system-drone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .system-drone-text {
    max-width: 1000px;
  }
  
  .system-drone-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .system-drone-list {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  .system-drone-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
  }
  
  .system-drone-image-container {
    max-width: 450px;
  }
  
  .system-drone-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive design */
  @media (min-width: 768px) {
    .system-drone-container {
      flex-direction: row;
      justify-content: space-around;
    }
  
    .system-drone-text {
      flex: 1;
    }
  
    .system-drone-image-container {
      flex: 1;
      max-width: 450px;
    }
  }















