main p{
    font-size: 17px;
}

.heading{
    font-size: clamp(30px, 3vw, 70px);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.heading img{
    height: 70px;
    margin-right: 15px;
}


/* ============ message section here ============= */

.message .left{
    display: flex;
    align-items: center;
    justify-content: center;
}

.message .left .data p{
    font-size: clamp(35px, 2.6vw, 100px);
    font-weight: 600;
    font-style: italic;
    position: relative;
}

.message .left .data .image1{
    position: absolute;
    left: -60px;
    top: -90px;
    height: 150px;
}

.message .left .data span{
    color: white;
    display: inline-block;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 50px 10px 20px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: var(--darkGreen);
}

.message .left .data h6{
    font-size: 18px;
    margin-top: 30px;
    font-weight: 700;
}

.message .right{
    display: flex;
    justify-content: end;
}

.message .right img{
    filter: drop-shadow(15px 0px 25px rgba(0, 0, 0, 0.2));
    width: 90%;
}


/* ============ about millet section here ============== */

.about-millet{
    background-image: url(../images/aboutBg.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
    padding-top: 100px;
}

.about-millet h6{
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-millet .box{
    background-color: white;
    border-radius: 8px;
    height: 70px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
    border: 2px solid var(--outline);
}

.about-millet a{
    padding: 15px 35px;
    color: white;
    font-weight: 600;
    background-color: var(--darkGreen);
    border: 2px solid var(--darkGreen);
    border-radius: 100px;
    transition: 300ms;
    display: inline-block;
    margin-top: 40px;
    font-size: 17px;
}

.about-millet a:hover{
    background-color: transparent;
    color: black;
}


/* ========== millet types section here =========== */

.millet-types .box{
    background-color: var(--lightBg);
    border-radius: 8px;
    padding: 20px;
    font-weight: 600;
    border: 2px solid var(--outline);
    height: 400px;
}

.millet-types .box .image{
    height: 300px;
    width: 100%;
    border: 3px solid white;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 8px;
}

.millet-types .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 300ms;
}

.millet-types .box:hover .image img{
    transform: scale(1.1);
}

.millet-types .box p{
    margin-top: 20px;
    font-size: 18px;
}


/* ============= fact section here ============== */

.fact{
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('../images/factBg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0px;
}

.fact .info-box{
    width: 60%;
    margin: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 50px 20px;
    color: white;
}


/* ================== benefits section here ================ */

.benefits .timeline {
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.benefits .timeline1, .benefits .timeline2{
    padding: 70px 0;
}

.benefits .timeline1::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
    right: 8px;
    z-index: 1;
}

.benefits .timeline2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
    left: 8px;
    z-index: 1;
}

.benefits .timeline1 .timeline-item {
    position: relative;
    padding-right: 50px;
}

.benefits .timeline2 .timeline-item {
    position: relative;
    padding-left: 50px;
}

.benefits .timeline .timeline-item:not(:last-child){
    margin-bottom: 40px;
}

.benefits .timeline1 .timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--blue);
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.benefits .timeline2 .timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--blue);
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.benefits .timeline .timeline-content {
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.1);
}

.benefits .timeline .timeline-content:hover {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.benefits .timeline .timeline-content h3 {
    margin: 0;
    font-size: 17px;
    color: black;
    font-weight: 500;
}

.benefits .middle{
    position: relative;
}

.benefits .middle .image{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.benefits .middle img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(55%);
}

.benefits .middle h6{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: clamp(50px, 4.5vw, 100px);
    text-align: center;
    padding: 10px;
}


/* ============== eating and diet section here ================ */

.eating_diet{
    background-color: var(--lightBg);
    padding: 70px 0px;
}

.eating_diet .image{
    border-radius: 12px;
    border: 12px solid transparent;
    outline: 3px dashed var(--blue);
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.eating_diet .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}


/* =========== indian culinary section here ============ */

.indian_culinary{
    padding: 70px 0px;
}

.indian_culinary .heading{
    display: block;
}

.indian_culinary .heading span{
    color: var(--blue);
}

.indian_culinary .accordion-item{
    background-color: transparent !important;
}

.indian_culinary .accordion-header {
    border-bottom: 3px solid black;
}

.indian_culinary .accordion-button{
    background-color: transparent !important;
}

.indian_culinary .accordion-button,
.indian_culinary .accordion-body {
    padding-left: 0;
}

.indian_culinary .accordion h3 {
    color: black;
    font-weight: 700;
    font-size: 25px;
    padding-right: 30px;
}

.indian_culinary .accordion-item {
    border: none;
    overflow: hidden;
}

.indian_culinary .accordion-item:not(:last-child){
    margin-bottom: 30px;
}

.indian_culinary .accordion-button:not(.collapsed) {
    background-color: white;
}

.indian_culinary .accordion-button:not(.collapsed) h3 {
    color: #f17732;
}

.indian_culinary .accordion-button:focus {
    border-color: none !important;
    box-shadow: none !important;
}

.indian_culinary .accordion-body {
    font-weight: 600;
    margin-top: 25px;
    background-color: var(--lightBg);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--outline);
}

.indian_culinary .accordion p{
    font-weight: 500;
    font-size: 18px;
}


/* ================ opportunities section here =================== */

.opportunities{
    background-image: url(../images/aboutBg.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px;
}

.opportunities .heading{
    display: block;
}

.opportunities .heading span{
    color: var(--blue);
}

.opportunities .box{
    background-color: white;
    height: 450px;
    border: 2px solid var(--darkGreen);
}

.opportunities .box .top-area{
    width: 100%;
    height: 60px;
    background-color: var(--darkGreen);
    display: grid;
    place-items: center;
}

.opportunities .box .top-area h6{
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.opportunities .box .data{
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
}

.opportunities .box .data p{
    font-weight: 600;
}

.opportunities .box-1{
    border-radius: 80px 80px 0 80px;
    overflow: hidden;
}

.opportunities .box-2{
    border-radius: 80px;
    overflow: hidden;
}

.opportunities .box-3{
    border-radius: 80px 80px 80px 0;
    overflow: hidden;
}

.opportunities .quote{
    width: 520px;
    border-radius: 100px;
    background-color: var(--darkGreen);
    margin: auto;
    padding: 20px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 600;
    direction: rtl;
    margin-top: 40px;
}

.opportunities .quote span{
    margin-top: 10px;
    display: inline-block;
}







/* ============ MEDIA QUERY HERE ============= */

@media(max-width:1200px){

    .message .left .data .image1{
        display: none;
    }

    .message .right img{
        width: 100%;
    }

    .millet-types .box p{
        font-size: 16px;
    }

}

@media(max-width:992px){

    .message .left .data p{
        font-size: 25px;
    }

}

@media(max-width:991px){

    .benefits .middle{
        height: 300px;
    }

    .benefits .middle .image{
        border-radius: 12px;
    }

    .benefits .timeline1{
        padding: 60px 0 43px 0;
    }

    .benefits .timeline1 .timeline-item{
        padding-right: 0;
    }

    .benefits .timeline2{
        padding: 0 0 20px 0;
    }

    .benefits .timeline1::after {
        left: 8px;
    }

    .benefits .timeline1 .timeline-item {
        padding-left: 50px;
    }

    .benefits .timeline1 .timeline-item::after {
        left: 0px;
    }


    .opportunities .box-1{
        border-radius: 80px;
    }
    
    .opportunities .box-3{
        border-radius: 80px;
    }

}

@media (max-width:768px){

    .fact .info-box{
        width: 75%;
    }

}

@media (max-width:576px){

    main p{
        font-size: 16px;
    }

    .about-millet{
        padding-top: 70px;
    }

    .heading img{
        height: 50px;
        margin-right: 10px;
    }


    .about-millet a{
        padding: 12px 28px;
        font-size: 16px;
        margin-top: 30px;
    }


    .millet-types .box{
        height: auto;
    }

    .fact .info-box{
        width: 85%;
    }


    .indian_culinary .accordion h3 {
        font-size: 20px;
    }

    .indian_culinary .accordion-body p {
        font-size: 16px;
    }


    .opportunities .quote{
        width: auto;
        padding: 20px 40px;
    }

    .opportunities .box p, .opportunities .quote p{
        text-align: start;
    }

}

@media (max-width:450px){

    .message .left .data p{
        font-size: 20px;
    }

    .message .left .data span{
        font-size: 16px;
        padding: 10px 50px 10px 20px;
    }

    .message .left .data h6{
        font-size: 16px;
    }

    .millet-types .box{
        padding: 15px;
    }

    .millet-types .box .image{
        height: 200px;
    }

    .fact .info-box{
        width: 100%;
        padding: 20px 15px;
    }


    .benefits .timeline1 .timeline-item {
        padding-left: 30px;
    }

    .benefits .timeline2 .timeline-item {
        padding-left: 30px;
    }

    .benefits .middle{
        height: 200px;
    }

    .benefits .middle h6{
        font-size: 30px;
        padding: 50px;
    }


    .indian_culinary .accordion-body {
        padding: 20px 15px;
    }


    .opportunities .box-1, .opportunities .box-2, .opportunities .box-3{
        border-radius: 30px;
    }

}