.banner-img img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner-layer{
    background-color: #0000001a;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
}
.green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to top, #02628E, #03A9F4);
    clip-path: polygon(0 0, 70% 0, 83% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.green-overlay h2 {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    margin-right: 10%;
}
.green-overlay h5{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: wheat;
}
.green-overlay h6{
    color: white;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
}

.arch-diagram{
    padding: 5%;
}
.farm-heading {
    text-align: center;
    color: #0D47A1;
    font-weight: bold;
    font-size: 30px;
}
.poltry-left-sec{
    display: flex;
    gap: 5%;
    margin-bottom: 5%;
    align-items: center;
}
.poltry-right-sec{
    display: flex;
    align-items: center;
    gap: 5%;
}
.left-heading{
    margin-bottom: 20px;
    color: #0D47A1;
    font-weight: 600;
    line-height: 1.5;
}
.left-sec-points{
    margin-top: 5px;
    display: flex;
    column-gap: 10px;
}
.left-sec-points p{
    margin-bottom: 10px;
}
.image-section{
    padding: 0% 5% 5% 5%;
}
.arch-svg-diagram{
   margin-left: 8%;
}
.right-sec-point{
    width: 50%;
}
.left-sec-point{
    width: 50%;
}
.eight-points-sec{
    height: 85vh;
}
.blob{
    background-color: #03A9F4;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3%;
}
.box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.box .number {
    display: inline-block;
    background: #03A9F4;
    padding: 6px 18px;
    font-weight: bold;
    font-size: 25px;
    border-radius: 80px 80px 50px 50px;
    transition: 0.5s;
}
.box:hover {
    transition: 0.5s;
    background: #E3F2FD;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.box p {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    font-size: 15px;
}
.box:hover .number {
    background: #B0BEC5;
    color: white;
    transition: 0.5s;
}


/* Green Image Section Starts */

.green-image-section{
    height: 95vh;
    background: #03A9F4;
}
.white-font-heading{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: white;
    padding-top: 4%;
}
.card{
    width: 350px;
    height: 204px;
    background: white;
    padding: 20px;
}
.footer{
    background-color: white;
}
.four-cards{
    display: flex;
    flex-wrap: wrap;
    width: 65%;
    gap: 10px;
}
.cards-image-sec{
    display: flex;
    justify-content: flex-start; 
    margin-top: 6%;
}
.image-section-green{
    width: 34%;
}
.image-section-green img{
    width: 100%;
    border-radius: 0px 15px 15px 0px;
}
.card1 {
    border-radius: 15px 0px 0px 0px;
    transition: 0.5s;
}
.card2 {
    border-radius: 0px;
    transition: 0.5s;
}
.card3{
    border-radius: 0px 0px 0px 15px;
    transition: 0.5s;
}
.card4 {
    border-radius: 0px;
    transition: 0.5s;
}
.dot {
    height: 50px;
    width: 69px;
    background-color: #03A9F4;
    border-radius: 100%;
    display: inline-block;
    transition: 0.5s;
    width: 20%;
  }
  .dot-heading{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 5px;
    width: 100%;
  }
.dot-heading h6{
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    transition: 0.5s;
    color: #707577;
}
.card1:hover{
    box-shadow: rgba(255, 204, 0, 0.519) 0px 7px 29px 0px;
    transition: 0.5s;
}
.card2:hover{
    box-shadow: rgba(255, 204, 0, 0.519) 0px 7px 29px 0px;
    transition: 0.5s;
}.card3:hover{
    box-shadow: rgba(255, 204, 0, 0.519) 0px 7px 29px 0px;
    transition: 0.5s;
}.card4:hover{
    box-shadow: rgba(255, 204, 0, 0.519) 0px 7px 29px 0px;
    transition: 0.5s;
}
.card1:hover .dot{
    background-color: #B0BEC5;
    transition: 0.5s;
}
.card2:hover .dot{
    background-color: #B0BEC5;
    transition: 0.5s;
}.card3:hover .dot{
    background-color: #B0BEC5;
    transition: 0.5s;
}.card4:hover .dot{
    background-color: #B0BEC5;
    transition: 0.5s;
}
.card1:hover .dot-heading h6{
    color: #0D47A1;
    transition: 0.5s;
}
.card2:hover .dot-heading h6{
    color: #0D47A1;
    transition: 0.5s;
}.card3:hover .dot-heading h6{
    color: #0D47A1;
    transition: 0.5s;
}.card4:hover .dot-heading h6{
    color: #0D47A1;
    transition: 0.5s;
}

/* Contact Section Starts */

.contact-section{
    margin-top: 4%;
    height: 80vh;
}
.contsect{
    display: flex;
    margin-top: 4%;
}
.poultry-contact-left{
    width: 57%;
}
.poultry-contact-right{
    width: 50%;
}
.b24-form-btn {
    width: 28% !important;
    background-color: #03A9F4 !important;
}
.b24-form-btn:hover {
    background-color: #0591d2 !important;
}   
.b24-form-sign{
    display: none !important;
}
.b24-form-wrapper.b24-form-border-bottom{
    border-bottom: 0px !important;
}
.b24-form-btn-block{
    display: flex;
    justify-content: center;
}


/* Contact Section Ends */
.poultry-contact-left h4{
    font-weight: 600;
    font-size: 22px;
    color: #03A9F4;
}

@media only screen and (max-width: 600px){
    .arch-svg-diagram img {
        width: -webkit-fill-available;
    }
    .poltry-left-sec {
        display: flex;
        gap: 10%;
        margin-bottom: 10%;
        flex-direction: column;
    }
    .left-sec-point {
        width: auto;
    }
    .left-sec-point img {
        width: 100%;
        height: 100%;
    }
    .right-sec-point{
        width: auto;
    }
    .poltry-right-sec {
        display: flex;
        gap: 0%;
        flex-direction: column-reverse;
    }
    .grid{
        display: flex;
    }
    .eight-points-sec {
        height: auto;
        margin: 15px 0px;
    }
    .contact-section{
        height: auto;
    }
    .green-image-section {
        height: auto;
        padding-bottom: 30px;
    }
    .contsect {
        display: flex;
        margin-top: 4%;
        flex-direction: column;
    }
    .poultry-contact-left{
        width: auto;
    }
    .poultry-contact-right{
        width: auto;
    }
    .contact-section {
        margin-top: 15%;
    }
    .image-section-green img{
        display: none;
    }
    .four-cards{
        width: auto;
    }
}

@media screen and (min-width: 1200px) and (min-height: 800px){
    .green-overlay h2{
        font-size: 30px;
    }
    .green-overlay h5{
        font-size: 18px;
    }
    .green-overlay h6{
        font-size: 15px;
        font-weight: 500;   
    }
    .arch-svg-diagram {
        margin-left: auto;
    }
    .arch-svg-diagram img {
        width: -webkit-fill-available;
    }
    .left-sec-point img {
        width: 100%;
        height: 100%;
    }
    .eight-points-sec {
        height: 70vh;
    }
    .green-image-section {
        height: 85vh;
    }
    .contact-section {
        height: 70vh;
    }
}


@media screen and (min-width: 1920px) and (min-height: 1080px){
    .arch-svg-diagram {
    display: flex;
    margin-left: auto;
    justify-content: center;
    }
    .eight-points-sec {
    height: 50vh;
    }
    .green-image-section {
    height: 62vh;
    }
    .contact-section {
    height: 60vh;
    }
    .green-overlay h2{
    font-size: 45px;
    }
    .green-overlay h5{
    font-size: 30px;
    }
    .green-overlay h6{
    font-size: 30px;  
    }
}