/* Style CSS  */
header {
    position: relative;
}



/* <----- All Pages Header Navigation Start ------> */
nav {
    background: var(--white-color);
    padding: 10px 20px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}

/* fixed nav */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fixed-nav .links a {
    color: var(--fixed-nav-color);
}

.fixed-nav .links a:hover {
    color: var(--nav-hover-color);
}

.fixed-nav .links a.active {
    color: var(--nav-active-color);
}

.fixed-nav .button-container a {
    color: var(--fixed-button-color) !important;
    border-color: var(--fixed-button-color) !important;
}

.fixed-nav .button-container a:hover {
    color: var(--fixed-button-hover-color) !important;
}

.nav-header .align-logo {
    display: none;
}

.fixed-nav .align-logo {
    display: none !important;
}

.fixed-nav .fixed-logo {
    display: block !important;
}

/* .fixed-nav .links-container {
  height: auto !important;
} */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    font-size: 1.5rem;
    color: var(--fixed-nav-color);
    background: transparent;
    border-color: transparent;
    transition: all 0.3s linear;
    cursor: pointer;
}

.nav-toggle:hover {
    color: var(--nav-hover-color);
}

.logo img {
    width: 150px;
}

.links-container {
    height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
}

.show-links {
    height: 200px;
}

.links a {
    color: var(--fixed-nav-color);
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s linear;
    font-weight: bold;
    padding: 0.75rem 0;
}

.links a:hover {
    color: var(--nav-hover-color);
}

.links a.active {
    color: var(--nav-active-color);
}

.nav-center .button-container {
    display: none;
}



/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 920px) {
    nav {
        background: transparent;
        position: fixed;
        /* position: -webkit-sticky; */
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
    }

    .nav-center {
        width: 100%;
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-header {
        padding: 0;
    }

    .nav-header .align-logo {
        display: block;
    }

    .nav-header .fixed-logo {
        display: none;
    }

    .nav-toggle {
        display: none;
    }

    .links-container {
        height: auto !important;
    }

    .links {
        display: flex;
    }

    .links a {
        background: transparent;
        color: var(--nav-color);
        font-size: 15px;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear;
        margin: 0 1rem;
        font-weight: bold;
        padding: 0;
    }

    .links a:hover {
        color: var(--nav-active);
    }

    .links a.active {
        color: var(--nav-hover);
    }

    .nav-center .button-container {
        display: block;
    }

    .nav-center .button-container a {
        color: var(--white-color);
        border-color: var(--white-color);
    }
}

/* <----- All Pages Header Navigation End ------> */







/* <-----All Pages Banner Section Start ------> */
.banner {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner .banner-container {
    position: relative;
    z-index: 5;
    text-align: center;
}

.banner .banner-container .title {
    font-size: 120px;
    font-weight: 700;
    /* color: var(--title-color-5); */
    text-transform: uppercase;
    /* -webkit-text-stroke: var(--white-color);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    text-transform: uppercase; */
    background: linear-gradient(to right, white, rgb(167, 218, 167), rgb(148, 148, 223), #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.banner .banner-container p {
    color: var(--title-color-1);
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.banner .banner-container .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner .banner-container .button-container a {
    width: 250px;
    background: transparent;
    padding: 10px 20px;
    border: 2px solid var(--white-color);
    text-transform: uppercase;
}

.banner .banner-container .button-container a:hover {
    background: #ff4500;
    border-color: #ff4500;
}

/*Banner Section Responsive */
@media screen and (min-width: 920px) {
    .banner {
        min-height: 100vh;
    }
}


@media screen and (max-width: 1068px) {
    .banner .banner-container .title {
        font-size: 100px;
    }
}

@media screen and (max-width: 910px) {
    .banner .banner-container .title {
        font-size: 90px;
    }
}

@media screen and (max-width: 768px) {
    .banner .banner-container .title {
        font-size: 80px;
    }
}

@media screen and (max-width: 645px) {
    .banner .banner-container .title {
        font-size: 60px;
    }
}

@media screen and (max-width: 468px) {
    .banner .banner-container .title {
        font-size: 50px;
    }

    .slider-container .controls-container {
        display: none !important;
    }
}

@media screen and (max-width: 380px) {
    .banner .banner-container .title {
        font-size: 40px;
    }
}

/* <----- All Pages Banner Section End ------> */




/* <---- Home Page Start -----> */
/* Banner Section */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    width: 100%;
}

.slider-container .bannerSlider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transform: scale(1.15);
    transition: opacity .6s ease;
}

.slider-container .bannerSlider.slideActive {
    animation: grow 4s linear forwards;
    opacity: 1;
}

@keyframes grow {

    0%,
    20% {
        transform: scale(1);
    }

    75%,
    100% {
        transform: scale(1.15);
    }
}

.slider-container .controls-container {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-container .control {
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    margin: 6px;
    height: 40px;
    width: 5px;
    transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.slider-container .control.slideActive,
.slider-container .control:hover {
    background-color: #fff;
    opacity: 1;
    transform: scale(1.2);
}


/*Home Banner Section Responsive */
@media screen and (min-width: 920px) {
    .slider-container {
        min-height: 100vh;
    }
}



/* Features Section */
.features-section {
    background: var(--bg-1);
    padding: 60px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-number {
    font-size: 14px;
    font-weight: 600;
    color: #8B9DC3;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 30px;
    color: #E6A946;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--title-color-3);
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 25px;
    font-weight: 700;
    color: var(--title-color-3);
    line-height: 1.2;
}

/* Animation for cards appearing on scroll */
.feature-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.animate:nth-child(1) {
    transition-delay: 0.2s;
}

.feature-card.animate:nth-child(2) {
    transition-delay: 0.4s;
}

.feature-card.animate:nth-child(3) {
    transition-delay: 0.6s;
}

/* Features Section Responsive */
@media screen and (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }

    .feature-card {
        padding: 40px 20px;
    }

    .feature-title,
    .feature-subtitle {
        font-size: 24px;
    }

    .feature-icon {
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {
    .feature-card {
        padding: 30px 15px;
    }

    .feature-title,
    .feature-subtitle {
        font-size: 20px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .feature-number {
        font-size: 12px;
        margin-bottom: 15px;
    }
}


/* Intro Section */
.intro-section {
    background: var(--bg-2);
    padding: 60px 0;
}

.intro-section .column-2 {
    align-items: center;
}

/* Intro Section Responsive */
@media screen and (max-width: 768px) {
    .intro-section .column-item:first-child {
        order: calc(2);
    }

    .intro-section .column-item:last-child {
        order: calc(1);
    }
}


/* Foods Section */
.foods-section {
    background: var(--bg-1);
    padding: 60px 0;
}

.foods-section .foods-container {
    margin-top: 30px;
}

.foods-section .image-hover-card {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: var(--title-color-1);
    border-radius: 10px;
    background: rgba(89, 14, 210, 0.5);
    width: 100%;
    height: 540px;
    cursor: pointer;
    text-decoration: none;
}

.foods-section .image-hover-card:before,
.foods-section .image-hover-card:after,
.foods-section .image-hover-card *,
.foods-section .image-hover-card *:before,
.foods-section .image-hover-card *:after {
    box-sizing: border-box;
    transition: all 600ms ease;
}

.foods-section .image-hover-card .card-image {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.foods-section .image-hover-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: calc(20px * 2);
    width: 100%;
    z-index: 3;
}

.foods-section .image-hover-card .card-content>* {
    opacity: 0;
}

.foods-section .image-hover-card .card-title {
    margin: 0;
    color: var(--title-color-1);
    font-size: 35px;
    line-height: normal;
    font-weight: 700;
}

.foods-section .image-hover-card p {
    color: var(--paragraph-color-1);
    margin-bottom: 0;
    margin-top: 10px;
}

/* Border animations */
.foods-section .image-hover-card:before,
.foods-section .image-hover-card:after,
.foods-section .image-hover-card .card-content:before,
.foods-section .image-hover-card .card-content:after {
    background-color: var(--border-1);
    position: absolute;
    content: '';
}

.foods-section .image-hover-card:before,
.foods-section .image-hover-card:after {
    z-index: 1;
    height: 3px;
    left: 30px;
    right: 30px;
    transform: scaleX(0);
    transform-origin: 0 100%;
}

.foods-section .image-hover-card:before {
    top: 30px;
}

.foods-section .image-hover-card:after {
    bottom: 30px;
}

.foods-section .image-hover-card .card-content:before,
.foods-section .image-hover-card .card-content:after {
    z-index: -1;
    width: 3px;
    top: 30px;
    bottom: 30px;
    transform: scaleY(0);
    transform-origin: 0 100%;
}

.foods-section .image-hover-card .card-content:before {
    left: 30px;
}

.foods-section .image-hover-card .card-content:after {
    right: 30px;
}

/* Text reveal animation */
.foods-section .slide-in-right {
    display: inline-block;
    overflow: hidden;
    opacity: 1;
}

.foods-section .slide-in-right>* {
    display: inline-block;
    transform: translateX(-100%);
    transition-delay: 100ms;
}

/* Image rotation */
.foods-section .image-hover-card .card-image {
    transform: scale(1.1) translate(0, 0);
}

/* Hover effects */
.foods-section .image-hover-card:hover .card-image,
.foods-section .image-hover-card:focus .card-image {
    opacity: 0.7;
    transform: scale(1.3) rotate(15deg);
}

.foods-section .image-hover-card:hover .card-content>*,
.foods-section .image-hover-card:focus .card-content>* {
    opacity: 1;
}

.foods-section .image-hover-card:hover .slide-in-right>*,
.foods-section .image-hover-card:focus .slide-in-right>* {
    transform: translateX(0);
}

.foods-section .image-hover-card:hover:before,
.foods-section .image-hover-card:hover:after,
.foods-section .image-hover-card:hover .card-content:before,
.foods-section .image-hover-card:hover .card-content:after,
.foods-section .image-hover-card:focus:before,
.foods-section .image-hover-card:focus:after,
.foods-section .image-hover-card:focus .card-content:before,
.foods-section .image-hover-card:focus .card-content:after {
    transform: scale(1);
}

/* Border animation timing */
.foods-section .image-hover-card:before {
    transition-delay: 0s;
}

.foods-section .image-hover-card:after {
    transition-delay: calc(600ms / 1.25);
}

.foods-section .image-hover-card .card-content:before {
    transition-delay: calc(600ms / 1.25);
}

.foods-section .image-hover-card .card-content:after {
    transition-delay: 0s;
}

.foods-section .image-hover-card:hover:before,
.foods-section .image-hover-card:focus:before {
    transition-delay: calc(600ms / 1.25);
}

.foods-section .image-hover-card:hover:after,
.foods-section .image-hover-card:focus:after {
    transition-delay: 0s;
}

.foods-section .image-hover-card:hover .card-content:before,
.foods-section .image-hover-card:focus .card-content:before {
    transition-delay: 0s;
}

.foods-section .image-hover-card:hover .card-content:after,
.foods-section .image-hover-card:focus .card-content:after {
    transition-delay: calc(600ms / 1.25);
}


/* Agriculture Section */
.agriculture-section {
    padding: 60px 0;
    background: var(--bg-3);
}

.agriculture-section .main-name {
    text-align: left;
    font-size: 40px;
}

.agriculture-section .agriculture-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
}

.agriculture-container .hero-content {
    position: relative;
}

.agriculture-container .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.agriculture-container .info-content {
    padding: 2rem 0;
}

.agriculture-container .section-tag {
    color: var(--section-name);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}



.agriculture-container .faq-item {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.agriculture-container .faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.agriculture-container .faq-question {
    background: var(--white-color);
    color: var(--color-2);
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.agriculture-container .faq-question:hover {
    background: var(--color-5);
    color: var(--color-6);
}

.agriculture-container .faq-question::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-size: 1.2rem;
    font-weight: 900;
    padding-left: 12px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.agriculture-container .faq-question.faqActive::after {
    transform: rotate(180deg);
}

.agriculture-container .faq-answer {
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
}

.agriculture-container .faq-answer.faqActive {
    display: block;
}

.agriculture-container .faq-answer-content {
    padding: 0 15px;
    color: var(--color-4);
    line-height: 1.8;
    padding-bottom: 20px;
}


@media (max-width: 1060px) {
    .agriculture-section .main-name {
        font-size: 32px;
    }
}

@media (max-width: 860px) {
    .agriculture-section .main-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .agriculture-section .agriculture-container {
        grid-template-columns: 1fr;
    }

    .agriculture-section .main-name {
        font-size: 28px;
    }

    .agriculture-container .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 60PX 0;
    background: var(--bg-1);
}

.testimonial-section .testimonial {
    position: relative;
    max-width: 900px;
    margin: auto;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.testimonial-section .testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-section .testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    height: 100%;
    width: 100%;
}

.testimonial-section .slide p {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--paragraph-color-4);
    font-size: 17px;
}

.testimonial-section .slide .rating i {
    font-size: 20px;
    color: var(--rating-color);
}

.testimonial-section .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-section .details .name {
    font-size: 22px;
    font-weight: 600;
    color: var(--title-color-4);
    font-style: italic;
}

.testimonial-section .details .job {
    font-size: 17px;
    font-weight: 400;
    color: var(--title-color-3);
}

/* swiper button css */
.testimonial-section .nav-btn {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: var(--button-color);
    transition: 0.2s;
}

.testimonial-section .nav-btn:hover {
    background-color: #000000;
}

.testimonial-section .nav-btn::after,
.testimonial-section .nav-btn::before {
    font-size: 15px;
    color: var(--white-color);
}

.testimonial-section .swiper-pagination-bullet {
    background-color: #797373;
    width: 15px;
    height: 15px;
}

.testimonial-section .swiper-pagination-bullet-active {
    background-color: #086703;
}

@media screen and (max-width: 768px) {
    .testimonial-section .slide p {
        padding: 0 20px;
    }

    .testimonial-section .nav-btn {
        display: none;
    }
}

/* <---- Home Page End -----> */






/* <---- About Page Start -----> */
/* About Banner Section */
.banner.about-banner {
    background: url(../images/about-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    min-height: 80vh;
}

.banner.about-banner p {
    text-transform: capitalize;
}

/* About Section */
.about-section {
    background: var(--bg-2);
    padding: 60px 0;
}

.about-section .column-2 {
    align-items: stretch;
    column-gap: 40px;
    row-gap: 40px;
}

.about-section .column-2 .column-item .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-details {
    position: relative;
}

.about-details .main-name {
    font-size: 40px;
}

.about-details .floating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.about-details .floating-card {
    position: relative;
}


.about-details .floating-card .floating-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.about-details .floating-card .icon {
    width: 20px;
    height: 20px;
    fill: var(--white-color);
}

.about-details .floating-card .floating-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color-3);
    margin-bottom: 12px;
}

.about-details .floating-card .floating-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--paragraph-color-2);
    margin-bottom: 0;
}

.about-details .about-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-details .about-action .button-container a i {
    font-size: 14px;
}

.about-details .shape-photo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-details .shape-photo img {
    width: 120px;
    animation: floating 3s ease-in-out infinite;
}



/* About Section Responsive */
@media screen and (max-width: 1024px) {
    .about-details .main-name {
        font-size: 35px;
    }
}

@media screen and (max-width: 920px) {
    .about-details .main-name {
        font-size: 30px;
    }
}

@media screen and (max-width: 780px) {
    .about-details .main-name {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .about-section .column-item:first-child {
        order: calc(2);
    }

    .about-section .column-item:last-child {
        order: calc(1);
    }

    .about-details .floating-content {
        grid-template-columns: 1fr;
    }
}


/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-1);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
}

.gallery-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.gallery-item .icon i {
    font-size: 20px;
    color: var(--white-color);
}

.gallery-item:hover .icon {
    opacity: 1;
}

/* Modal styles */
.gallery-section .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.gallery-section .image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.gallery-section .modalAction-buttons {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

.gallery-section .modalAction-buttons span {
    font-size: 20px;
    cursor: pointer;
}

.gallery-section .share-dropdown {
    position: absolute;
    top: 60px;
    right: 40px;
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 10001;
}

.gallery-section .share-dropdown a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-section .share-dropdown a:hover {
    color: var(--primary-color);
    /* or any color of your theme */
}

.gallery-section .zoomed {
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

/* Add this at the bottom of your CSS */
.gallery-section .share-dropdown {
    position: absolute;
    top: 60px;
    right: 40px;
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 10001;
}

.gallery-section .share-dropdown a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-section .share-dropdown a:hover {
    color: var(--primary-color, #007bff);
}

.gallery-section .zoomed {
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

/* Gallery Section Responsive */
@media screen and (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* <---- About Page End -----> */






/* <---- Services Page Start -----> */
.banner.services-banner {
    background: url(../images/services-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    min-height: 80vh;
}

.banner.services-banner p {
    text-transform: capitalize;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: var(--bg-2);
}

.service-item {
    box-shadow: 0 9px 50px 11px rgba(1, 53, 102, 6%);
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.service-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.service-item .service-details {
    padding: 15px;
    background: var(--white-color);
    min-height: 180px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-grow: 1;
}

.service-item .service-name {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-item .service-description {
    margin-bottom: 0;
}

.service-item a {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: var(--color-1);
    display: block;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-item a:hover {
    color: var(--color-2);
}


.service-item a i {
    transition: all 0.3s ease-in-out;
    transform: rotate(-25deg);
    transform-origin: center center;
}

.service-item a:hover i {
    transform: rotate(0deg);
}


/* <---- Services Page End -----> */






/* <---- technology Page Start -----> */
/* Technology Banner Section */
.banner.technology-banner {
    background: url(../images/technology-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    min-height: 80vh;
}

.banner.technology-banner p {
    text-transform: capitalize;
}

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background: var(--bg-1);
}

.technology-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.technology-item {
    box-shadow: 0 9px 50px 11px rgba(1, 53, 102, 6%);
    overflow: hidden;
}

.technology-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.technology-item:hover img {
    transform: scale(1.01);
}

.technology-item .technology-details {
    padding: 15px;
    background: var(--white-color);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-grow: 1;
}

.technology-item .technology-name {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

.technology-item .technology-description {
    margin-bottom: 0;
}

.technology-item a {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: var(--color-1);
    display: block;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.technology-item a:hover {
    color: var(--color-2);
}


.technology-item a i {
    transition: all 0.3s ease-in-out;
    transform: rotate(-25deg);
    transform-origin: center center;
}

.technology-item a:hover i {
    transform: rotate(0deg);
}

/* Technology Section Responsive */
@media screen and (max-width: 992px) {
    .technology-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .technology-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* <---- technology Page End -----> */





/* <---- Farms Page Start -----> */
/* Farms Banner Section */
.banner.farms-banner {
    background: url(../images/farms-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    min-height: 80vh;
}

.banner.farms-banner p {
    text-transform: capitalize;
}

/* Farms Section */
/* farms Section */
.farms-section {
    padding: 60px 0;
    background: var(--bg-1);
}

.farms-container {
    margin-top: 30px;
}

.farms-item {
    position: relative;
    cursor: pointer;
    height: 400px;
}

.farms-item img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farms-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    border-radius: 8px;
}

.farms-item:hover::before {
    opacity: 1;
}

.farms-item img {
    width: 100%;
    height: 100%;
}

.farms-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.farms-item .icon i {
    font-size: 20px;
    color: var(--white-color);
}

.farms-item:hover .icon {
    opacity: 1;
}

/* Modal styles */
.farms-section .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.farms-section .image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.farms-section .modalAction-buttons {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

.farms-section .modalAction-buttons span {
    font-size: 20px;
    cursor: pointer;
}

.farms-section .share-dropdown {
    position: absolute;
    top: 60px;
    right: 40px;
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 10001;
}

.farms-section .share-dropdown a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.farms-section .share-dropdown a:hover {
    color: var(--primary-color);
    /* or any color of your theme */
}

.farms-section .zoomed {
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

/* Add this at the bottom of your CSS */
.farms-section .share-dropdown {
    position: absolute;
    top: 60px;
    right: 40px;
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 10001;
}

.farms-section .share-dropdown a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.farms-section .share-dropdown a:hover {
    color: var(--primary-color, #007bff);
}

.farms-section .zoomed {
    transform: scale(1.5);
    transition: transform 0.3s ease;
}


/* Section Responsive */
@media screen and (max-width: 1220px) {}

/* <---- Farms Page End -----> */





/* <---- Contact Page Start -----> */
/* Contact Banner Section */
.banner.contact-banner {
    background: url(../images/contact-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    min-height: 80vh;
}

.banner.contact-banner p {
    text-transform: capitalize;
}

/* Contact Form Section */
.contact-form {
    padding: 60px 0;
    background: var(--bg-1);
}

.contact-form .form-container {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    align-items: center;
    gap: 20px;
}

.contact-form .form-container .form-shape img {
    width: 100%;
}

/* Form */
.form-container .input-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-container p.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--label-color);
}


.form-container .label-text span,
.form-container label.label-text span {
    color: var(--input-required);
    font-size: 12px;
}

.form-container .input-fill {
    margin-top: 18px;
}

.form-container label.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--label-color);
    font-weight: 600;
}

.form-container .label-text2 {
    font-size: 16px;
    line-height: 30px;
    color: var(--label-color);
    padding: 10px 0;
}

.form-container .input-fill input,
.form-container .input-fill textarea {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid var(--form-border);
    background: var(--input-bg);
    color: var(--input-color);
    padding: 10px;
    height: 58px;
    line-height: 38px;
    margin-top: 10px;
    font-size: 18px;
}

.form-container .input-fill textarea {
    height: 100px;
}

.form-container .input-fill input:focus,
.form-container .input-fill textarea:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--form-border);
}

.form-container .isntSubmit.req-message {
    margin-bottom: 20px;
}

.form-container .req-message {
    display: none;
    background: var(--input-required);
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    padding: 10px;
    align-items: center;
    gap: 20px;
}

.form-container .req-message i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 50%;
}

.form-container .button-container {
    padding-top: 30px;
}

.form-container .button-container button {
    background: none;
    cursor: pointer;
}

.contact-form .contactSubmit-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white-color);
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: none;
}

.contact-form .contactSubmit-message p {
    font-size: 18px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 600;
}

.contact-form .contactSubmit-message .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form .contactSubmit-message button {
    padding: 10px 0;
    width: 80px;
    cursor: pointer;
}

/*Contact Form Section Responsive */
@media screen and (max-width: 920px) {
    .contact-form .form-container {
        grid-template-columns: 1fr;
    }

    .contact-form .form-container .form-shape {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .contact-form .form-container .input-container {
        grid-template-columns: 1fr;
    }
}


/* <---- Contact Page End -----> */






/* <----  Page Start -----> */
/* Section Responsive */
@media screen and (max-width: 1220px) {}

/* <----  Page End -----> */




/* <---- All Page Footer Section Start -----> */

.footer {
    background: var(--footer-bg);
    color: var(--footer-color-1);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 150px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-container .address-info {
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-container .address-info p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--footer-color-2);
}

.footer-container .contact-email {
    color: var(--footer-color-1);
    margin: 15px 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

.footer-container .contact-email:hover {
    color: var(--footer-color-4);
    text-decoration: underline;

}

.footer-container .contact-phone {
    color: var(--footer-color-3);
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}

.footer-container .footer-links {
    list-style: none;
}

.footer-container .footer-links li {
    margin-bottom: 12px;
}

.footer-container .footer-links a {
    color: var(--footer-color-2);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-container .footer-links a:hover {
    color: var(--footer-hover);
}

.footer-container .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-container .social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--footer-border-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-color-2);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-container .social-icon:hover {
    border-color: var(--footer-border-2);
    color: var(--footer-color-4);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--footer-border-3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--footer-color-2);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--footer-color-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-hover);
}


/*Footer Section Responsive  */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-container .contact-phone {
        font-size: 20px;
    }

    .footer-container .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-container .social-icons {
        flex-wrap: wrap;
    }

    .footer-container .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

/* Section Responsive */
@media screen and (max-width: 1220px) {}

/* <---- All Page Footer Section End -----> */