.crop-monitoring-section-system3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('/assets/images/revin-sight-background.png'); 
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    /* padding: 20px;  */
    flex-wrap: wrap; 
}

.text-content-system3 {
    /* max-width: 50%; */
    flex: 1; 
    padding: 50px; 
}

.text-content-system3 h2 {
    font-size: 1.8rem; 
    font-weight: bold;
}

.text-content-system3 h1 {
    font-size: 2.3rem;
    margin: 20px 0;
    line-height: 1.2;
}

.text-content-system3 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.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;
}

.image-system3 {
    flex: 1; 
    text-align: center; 
}

.image-system3 img {
    max-width: 500px; 
    height: auto;
}

.product-revin{
    width: 250px;
}

.product-sight{
    width: 200px;
}
.sight_main img{
    width: 300px;
    margin-left: -5px;
}
.revin-log img{
    width: 200px;
}
/* Responsive styles */
@media (max-width: 1024px) {
    .crop-monitoring-section-system3 {
        flex-direction: column; 
        text-align: center; 
        /* height: auto;  */
        padding: 0px; 
    }

    .system-background-image{
        display: flex;
        flex-direction: column;
    }

    .text-content-system3 {
        max-width: 100%;
        color: #ffffff;
        margin-top: 210px;
        text-align: start;
    }

    .text-content-system3 h1 {
        font-size: 2rem;
    }

    .text-content-system3 p {
        font-size: 1rem;
    }


    .product-revin{
        width: 200px;
    }
    
    .product-sight{
        width: 150px;
    }
}

@media (max-width: 768px) {
    .text-content-system3 h1 {
        font-size: 2rem;
        color: white;
    }

    .text-content-system3 h2 {
        font-size: 1.5rem;
    }

    .text-content-system3 p {
        font-size: 1rem;
    }

    .request-cta-button {
        padding: 10px 20px; 
        font-size: 1rem;
    }

    .image-system3 img {
        max-width: 80%; 
    }
}
@media (min-width: 480px) {

    .text-content-system3 h1 {
        font-size: 1.75rem;
        color: #ffffff;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .text-content-system3 h1 {
        font-size: 1.75rem;
        color: #ffffff;
        text-align: left;
    }

    .text-content-system3 h2 {
        font-size: 1.2rem;
        color: #ffffff;
    }

    .text-content-system3 p {
        font-size: 0.9rem;
    }

    .request-cta-button {
        padding: 8px 15px; 
        font-size: 0.9rem;
    }

    .image-system3 img {
        max-width: 70%; 
    }
}







.comprehensive-data-system3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background: #E7E7E7;
    position: relative;
}

.system3-content-design {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.content-container-system3 {
    text-align: center;
    max-width: 900px;
}

.title-system3 {
    font-size: 2.5rem;
    color: #273c75;
    margin-bottom: 20px;
}

.description-system3 {
    font-size: 1.25rem;
    color: #4d4d4d;
    margin-bottom: 30px;
}

.image-content-system3 {
    margin-bottom: 30px;
    position: relative;
}

.image-content-system3 img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.small-images img{
    width: 100px;
    height: 100px;
}

.small-overlay-image {
    border-radius: 50%;
    border: 2.5px solid #11afab;
}

.soil-img{
    position: absolute;
    top: 320px;
    right: 40px;
}

.plant-img{
    position: absolute;
    bottom: 150px;
    right: 250px;
}

.cloud-img{
    position: absolute;
    top: 150px;
    right: 200px;
}

.tabs-container-system3 {
    text-align: left;
    margin-top: -150px;
    height: 400px;
}

.tabs-system3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-system3 {
    font-size: 1.25rem;
    padding: 10px 20px;
    border: none;
    background: none;
    color: #273c75;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.tab-content-system3 ul li{
    line-height: 2.5;
}

.weather{
    margin-left: 20px;
}

.soil{
    margin-left: 300px;
}

.plant{
    margin-left: 150px;
}
.tab-system3:hover,
.active-border {
    border-bottom: 2px solid #e74c3c;
}

.tab-content-system3 {
    display: none;
}

.tab-content-system3.active-system3 {
    display: block;
}

.small-overlay-image {
    display: none;
    opacity: 0;
    transform: scale(0); /* Start from zero size */
    transition: opacity 2s smooth, transform 2s smooth; /* Scale and fade-in animation */
}

.small-overlay-image.show {
    display: block;
    opacity: 1;
    transform: scale(1); 
    transition: opacity 5s smooth, transform 5s smooth;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .system3-content-design {
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        gap: 20px; /* Maintain spacing */
    }

    .tabs-container-system3 {
        margin-top: 20px; /* Adjust spacing for better alignment */
    }

    .tabs-system3 {
        flex-wrap: wrap; /* Allow tabs to wrap */
        justify-content: center;
        gap: 15px; /* Reduce gap between tabs */
    }

    .content-container-system3 {
        max-width: 100%;
        padding: 20px;
    }

    .image-content-system3 img {
        max-width: 90%; /* Scale images slightly */
    }

    .small-images {
        justify-content: center; /* Center small images */
        gap: 10px;
    }

    .plant-img{
        position: absolute;
        top: 50%;
        right: 30%;
    }
    
    .soil-img{
        position: absolute;
        top: 70%;
        right: 30%;
    }
    
    .cloud-img{
        position: absolute;
        top: 16%;
        right: 30%;
    }

    .small-images img {
        width: 80px;
        height: 80px;
    }

    .tab-system3 {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .tab-content-system3 ul li {
        margin-left: 0;
        font-size: 0.95rem; /* Slightly smaller font size */
        
    }
    .weather{
        margin-left: 20px;
    }
    
    .soil{
        margin-left: 300px;
    }
    
    .plant{
        margin-left: 150px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .plant-img{
        position: absolute;
        top: 50%;
        right: 30%;
    }
    
    .soil-img{
        position: absolute;
        top: 70%;
        right: 30%;
    }
    
    .cloud-img{
        position: absolute;
        top: 16%;
        right: 30%;
    }
    
    .weather{
        margin-left: 20px;
    }
    
    .soil{
        margin-left: 300px;
    }
    
    .plant{
        margin-left: 150px;
    }
}

@media (max-width: 768px) {
    .title-system3 {
        font-size: 1.75rem;
    }

    .description-system3 {
        font-size: 1rem;
    }

    .image-content-system3 {
        text-align: center;
    }


    .tabs-system3 {
        flex-direction: column; /* Stack tabs vertically */
        gap: 10px;
    }

    .tab-system3 {
        font-size: 0.9rem;
        padding: 10px;
    }

    .image-content-system3 img {
        max-width: 80%;
    }

    .small-images img {
        width: 70px;
        height: 70px;
    }

    .plant-img{
        position: absolute;
        top: 50%;
        right: 30%;
    }
    
    .soil-img{
        position: absolute;
        top: 70%;
        right: 30%;
    }
    
    .cloud-img{
        position: absolute;
        top: 16%;
        right: 30%;
    }

    .tab-content-system3 ul li {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .weather{
        margin-left: 20px;
    }
    
    .soil{
        margin-left: 20px;
    }
    
    .plant{
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .system3-content-design {
        flex-direction: column;
        align-items: center;
    }

    .title-system3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .description-system3 {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .image-content-system3 {
        text-align: center;
    }

    .tabs-system3 {
        flex-direction: column; /* Stack tabs */
        gap: 8px;
    }

    .tab-system3 {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .small-images img {
        width: 60px;
        height: 60px;
    }

    .plant-img{
        position: absolute;
        top: 40%;
        right: 50%;
    }
    
    .soil-img{
        position: absolute;
        top: 68%;
        right: 30%;
    }
    
    .cloud-img{
        position: absolute;
        top: 10%;
        right: 22%;
    }
    .tab-content-system3 ul li {
        font-size: 0.8rem;
        text-align: center;
    }

    .weather{
        margin-left: 20px;
    }
    
    .soil{
        margin-left: 20px;
    }
    
    .plant{
        margin-left: 20px;
    }
}






.system3-why-choose {
    text-align: center;
    padding: 60px 20px;
}

.system3-why-choose h2 {
    font-size: 2.5rem;
    color: #002d6b;
    margin-bottom: 10px;
}

.system3-why-choose p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 10px auto;
}

.system3-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px; 
}

.system3-card {
    width: 350px;
    height: 280px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.system3-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.system3-card-content {
    margin: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.system3-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.system3-card-content h3 {
    font-size: 1.3rem;
    color: #002d6b;
    margin-bottom: 10px;
}

.system3-card-hover-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: white;
    text-align: center;
    transition: top 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.system3-card:hover .system3-card-hover-content {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.system3-card-hover-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.system3-learn-more {
    color: #002d6b;
    font-weight: bold;
    text-decoration: none;
}

/* For tablets or medium devices (1024px and below) */
@media (max-width: 1024px) {
    .system3-cards {
        grid-template-columns: repeat(2, 1fr); 
        max-width: 800px;
        margin: 20px auto; 
        padding: 0 20px; 
        
    }
}

/* For small devices (768px and below) */
@media (max-width: 768px) {
    .system3-cards {
        grid-template-columns: 1fr; 
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }
}


/* For mobile devices (480px and below) */
@media (max-width: 480px) {
    .system3-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px; 
        gap: 20px; 
        margin: 20px 0;
    }
}

.how-it-works {
    text-align: center;
    padding: 10px 20px 50px 20px;
}

.how-it-works h2 {
    font-size: 2rem;
    margin: 10px 0 0 0;
    padding: 10px;
}

.how-it-works p {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding: 10px;
}


.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 1 30%;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 450px;
}

.step img {
    max-width: 100%;
    height: auto;
    max-height: 200px; 
    object-fit: cover;
}

.step h3 {
    color: #2d6a4f;
    margin: 15px 0;
}

.step p {
    margin: 0 5px;
    color: #333;
    font-size: 16px;
    flex-grow: 1;
}

.step a {
    margin-bottom: 10px;
    display: inline-block;
    margin: 10px 0 20px 0;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: bold;
}

.step:hover {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 1.8rem;
    }
    .step {
        flex: 0 1 45%; /* Two items per row on tablets */
    }
}

@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 1.5rem;
    }
    .step {
        flex: 0 1 100%; /* Full width on small devices */
        height: auto; /* Adjust height to content */
    }
    .step p {
        font-size: 14px; /* Reduce font size for better readability */
    }
    .step a {
        font-size: 14px;
    }
}
