/* * { font-family: 'Corbel', sans-serif; } */
.navbar {
    background: #000000;
    padding: 8px 0;
}
.container {
    padding: 0 20px;
}
.navbar-nav .nav-link {
    color: white ;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.15px;
    margin-right: 15px;
    transition: 0.3s;
    border-radius: 20px;
    padding: 8px 25px;
    max-width: fit-content;
}
.navbar-nav .nav-link:hover {
    background: #333333;
    padding: 8px 20px;
    color: white !important;
}
.signup {
    background: #FFFFFF;
    color: #C23900 !important;
    border-radius: 20px;
    padding: 6px 30px !important;
    border: 1px solid #51842F;
    transition: 0.3s;
    max-width: fit-content;
}
.signup:hover {
    background: #51842F !important;
    color: #FFFFFF !important;
}
.navbar-toggler {
    background-color: #FFFFFF !important;
    margin-left: auto !important;
}
.logo-container {
    background: #FFFFFF;
    padding: 5px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease-in-out;
}
.logo-container.shadow {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.logo-container img {
    width: 90px;
    height: 59px;
}
.mobile-logo {
    display: none;
}


.hero-section {
    position: relative;
    overflow: hidden;
    padding: 75px 0 !important;
}

.image-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-carousel .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-carousel .slick-slide img {
    width: 40%; 
    height: auto;
    margin: auto;
}

.hero-title , .hero-span{
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 85.31px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0;
}

.hero-text {
    /* font-family: 'Corbel', sans-serif; */
    font-size: 24px;
    font-weight: 300;
    line-height: 28.98px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.hero-span, .about-span{
    color: #C23900;
}

.tradecard-h5{
    max-width: 287px;
}


.trade-info-section .trade-card-img {
    height: 270px;
    padding: 20px;
}

.trade-info-section .trade-card-body {
    position: relative; 
    padding: 20px;
    flex-grow: 1;
    border-radius: 20px;
    background: white; 
}

.trade-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    color: #000000;
    padding: 10px 15px 15px;
    margin: auto;
}

.trade-card-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 24.15px;
    text-align: center;
    color: #000000;
    max-width: 335px;
    margin: auto;
    padding-bottom: 30px;
}

.trade-info-section .trade-card {
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%; 
    box-shadow: 0px 10px 7.7px 0px #00000012;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.trade-info-section .trade-card:hover {
    transform: translateY(-5px);
}

.trade-section-heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #000000;
}

@media (max-width: 767px) {
    .trade-card-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .trade-info-section {
        padding-bottom: 0px !important;
    }
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.carousel-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollLeft 60s linear infinite; 
    transition: animation-play-state 0.3s ease; 
}

.carousel-wrapper:hover {
    animation-play-state: paused; 
}

.carousel-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 0 10px;
    min-width: 350px; 
    max-width: 450px; 
    flex-shrink: 0; 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    position: relative; 
    overflow: visible; 
    box-shadow: 0px 10px 7.7px 0px #00000012;
}

.carousel-item img {
    width: 180px; 
    height: 165px;
    object-fit: contain;
    border-radius: 10px !important;
    margin-right: 15px;
}

.carousel-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0;
    word-wrap: break-word;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.carousel-wrapper::after {
    content: "";
    display: flex;
    width: 100%;
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 75px 0; 
    }

    .carousel-item {
        min-width: 70vw; 
        padding: 12px; 
        max-width: 360px;
    }

    .carousel-item img {
        width: 120px;
        height: 120px;
        margin-right: 10px;
    }

    .carousel-item p {
        font-size: 14px;
        line-height: 1.3;
    }

    .carousel-wrapper {
        animation: scrollLeft 25s linear infinite; 
    }
}

.image-slider div , .image-slider-home div {
    display: flex;
    align-items: flex-end; 
    height: 100%; 
}

.image-slider img, .image-slider-home img {
    width: 100%; 
    height: 300px; 
    object-fit: contain; 
    display: block; 
    margin-bottom: 50px;
}



.global-trade-section {
    padding: 40px 0 !important;
}

.image-slider , .image-slider-home {
    width: 100%;
    max-width: 500px;
}

.text-col {
    padding: 50px;
}

.section-small-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px;
    line-height: 63.98px;
    font-weight: 400;
    color: #000000;
    padding: 15px 0;
}

.section-text {
    font-size: 20px;
    font-weight: 300;
    color: #000000;
    padding-bottom: 20px;
}

/* --- Search Bar --- */
.search-bar .input-group {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 40px;
    padding: 5px;
}

.search-bar .input-group-text {
    background-color: transparent;
    border: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.search-bar .form-control {
    border: none;
    border-radius: 40px !important;
    padding-left: 10px;
    font-size: 16px;
    color: #333;
}

.search-bar .form-control:focus {
    box-shadow: none;
    border-color: #000000;
}

.search-bar .bi-search {
    font-size: 18px;
    color: #000000;
}

.btn-get-started {
    color: #FFFFFF;
    background-color: #51842F;
    border: 1px solid #51842F !important; 
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; 
}

.btn-get-started:hover {
    color: #51842F;
    background-color: #FFFFFF;
    transform: none; 
}

.sign-in-link {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-left: 20px;
    text-decoration: underline;
}

.section-medium-heading{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: #000000;
}

.agropreneurs{
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 85.31px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    
}

@media (max-width: 992px) {
    .text-col {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 16px;
    }

    .search-bar {
        width: 100%;
    }

}

@media (max-width: 992px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
        margin-right: auto;
    }
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar-toggler {
        order: 2;
        position: absolute;
        right: 15px;
    }
    .mobile-logo {
        width: 100px;
        order: 1;
    }
    .navbar-nav .nav-link:hover {
        padding: 8px 30px;
    }
    .navbar-nav .nav-link {
        margin: 3px 0;
        color: #000000;
    }
    .logo-container {
        display: none;
    }
    .navbar{
        background-color: #FFFFFF;
    }
    .navbar-collapse{
        margin-top: 20px;
    }
    .signup {
        background: #FFFFFF;
        color: #51842F !important;
    }
    .image-carousel .slick-slide img{
        width: 100%;
    }
}

.join-us {
    background-color: #D9D9D9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px !important;
    justify-content: center;
}

.join-us-title {
    font-family: 'PT Serif', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 63.6px;
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    max-width: 640px;
    margin: auto;
}

.text-section .card {
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: white;
    box-shadow: 0px 10px 7.7px 0px #00000012;
    position: relative; 
    overflow: visible; 
}



.text-section .card:hover {
    transform: translateY(-5px);
}

.text-section .card-body {
    padding: 25px;
    flex-grow: 1;
}

.text-section .card-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 31.99px;
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
}

.text-section .card-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #333;
    max-width: 200px;
    margin: auto;
}

@media (max-width: 992px) {
    .join-us-title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .text-section .row {
        flex-direction: column;
        align-items: center;
    }

    .text-section .card {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .join-us-title {
        font-size: 28px;
        line-height: 40px;
    }

    .text-section .card-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.footer {
    position: relative;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 30px;
    color: white;
    text-align: center;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.follow-us {
    font-family: 'El Messiri', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29.76px;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 35px;
}

.social-icon {
    color: #FFFFFF;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

.crops-section {
    padding: 0px 0 0;
}

.crop-card {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
}

.crop-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.crop-card img:hover {
    transform: scale(1.05);
}

.crop-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    background-color: #FFFFFF;
    opacity: 0.7;
}

.crop-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #000000 !important;
}

.hs-code{
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    color: #000000 !important;
    font-family: cursive;
}

.navbar-toggler:focus{
    border: none !important;
    box-shadow: none !important;
}

.btn-lb{
    background-color: #51842F;
    color: #FFFFFF;
    padding: 10px 35px !important;
    border: 1px solid #51842F !important;
}

.btn-lb:hover{
    background-color: #FFFFFF;
    color: #51842F;
}

.signin-centre{
    margin-left: 0px ;
}

.partner-text{
    /* font-family: 'Corbel', sans-serif; */
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}

.gtp-title, .gtp-span{
    font-size: 48px;
    line-height: 63.98px;
}

.gtp-card-text{
    max-width: 350px;
}

.profit-section {
    background-color: #D9D9D9;
}

.profit-box {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 7.7px 0px #00000012;
}

.profit-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.98px;
    color: #000000;
}

.profit-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 40px;
    font-weight: 400;
    line-height: 53.32px;
    color: #000000;
}

.profit-description {
    max-width: 395px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    color: #000000;
}

.profit-button {
    width: 50%;
    margin-top: 20px;
}

.section-gtp-title{
    font-size: 40px;
    line-height: 53.32px;
}

.gtp-image-slider img {
    height: 400px;
    margin-bottom: 0px;
}

.gtp-joinus-title{
    max-width: 670px;
}

.text-section .gtp-card-text{
    max-width: 391px;
}

.download-btn{
    width: 35%;
}

.faq-section {
    padding: 50px 0;
}
.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48.3px;
    text-align: left;
    color: #000000;
}
.faq-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #000000;
}
.faq-div{
    margin-bottom: 150px;
}
.faq-item {
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0px 6px 7.7px 0px #00000012;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    font-size: 20px;
    line-height: 28.98px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question i {
    margin-left: 35px;
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 15px 40px 15px 15px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    display: none;
    color: #000000;
    transition: all 0.3s ease-in-out;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(-180deg);
}
.faq-sub-div {
    margin-top: 120px;
}

.training-button{
    background-color: #51842F;
    color: #FFFFFF;
    width: 100%;
    padding: 10px 35px !important;
    border: 1px solid #51842F !important;
}

.training-button:hover{
    background-color: #FFFFFF;
    color: #51842F;
}

.benefits .trade-card-body{
    box-shadow: none;
}

.benefits .trade-card-text, .benefits .trade-card-title{
    text-align: left;
    padding: 10px 0px;
    max-width: fit-content;
}

.benefits .trade-card {
    position: relative;
    padding: 20px;
    border: 1px solid rgb(214, 213, 213); 
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.benefits .trade-card:hover {
    transform: translateY(-5px);
}

.associates-title{
    margin: auto;
    padding: 30px 0;
    max-width: 620px;
}

.associates-title-p{
    max-width: 764px;
    margin: auto;
}

.benefits .trade-card-img {
    padding: 0;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 50px;
    height: auto;
    width: 94px;
}

.about-us {
    background-image: url('../images/about-us.webp');
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px !important;
}

.about-us-header, .about-us-title{
    color: #FFFFFF 
}

.about-span {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px;
    line-height: 63.98px;
    font-weight: 700;
    padding: 15px 0;
}


.about-us-title{
    font-size: 46px;;
}

.about-us-header{
    max-width: 735px;
}

.about-us-box{
    max-width: 960px;
}

.about-us-link{
    color: #51842F;
}

.association .trade-card-img{
    height: 205px;
}

.gpp-banner {
    height: 300px;
}

.gtp-banner{
    height: 250px;
}

.image-slider-home .slick-prev, 
.image-slider-home .slick-next {
    font-size: 32px;            
    color: #51842F;             
    background-color: #FFFFFF;
    background: transparent;
    border: 2px solid #51842F;  
    padding: 12px;              
    border-radius: 50%;       
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;               
    height: 45px;               
    transition: all 0.3s ease-in-out;
}

.image-slider-home .slick-prev:before, 
.image-slider-home .slick-next:before {
    font-size: 36px;
    position: relative;
    bottom: 3px;
    background-color: #FFFFFF;
    color: #51842F;
    display: inline-block;
    text-indent: 0;
    font-family: sans-serif;
}

.image-slider-home .slick-prev:before {
    content: '\2039';  
}

.image-slider-home .slick-next:before {
    content: '\203A'; 
}

.image-slider-home .slick-prev[aria-label], 
.image-slider-home .slick-next[aria-label] {
    font-size: 0;    
    text-indent: -9999px; 
    overflow: hidden;
    white-space: nowrap;
    background-color: #FFFFFF;
}

.image-slider-home .slick-prev:hover:before, 
.image-slider-home .slick-next:hover:before {
    color: #3A6021;  
}

.image-slider-home .slick-prev {
    left: -40px;
}

.image-slider-home .slick-next {
    right: -40px;
}

@media (max-width: 768px) {
    .image-slider-home .slick-prev, 
    .image-slider-home .slick-next {
        font-size: 18px; 
    }

    .image-slider-home .slick-prev {
        left: -1%;
    }

    .image-slider-home .slick-next {
        right: -1%;
    }
    .image-slider-home .slick-prev, .image-slider-home .slick-next {
       width: 35px;
       height: 35px;
    }
    .image-slider-home .slick-prev:before, .image-slider-home .slick-next:before {
        font-size: 24px;
        bottom: 2px;
    }
}

.slick-dots li button:before{
    display: none;
}

.image-slider-home .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px; 
}

.image-slider-home .slick-dots li {
    width: auto; 
    height: 12px;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider-home .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%; 
    background: #d1d1d1; 
    border: none;
    transition: all 0.4s ease-in-out;
}

.image-slider-home .slick-dots li.slick-active {
    width: 35px; 
}

.image-slider-home .slick-dots li.slick-active button {
    width: 40px; 
    height: 12px;
    border-radius: 25px;
    background: #51842F; 
}

        .arrows-container {
            position: relative;
            margin-right: 4px;
            margin-left: 0px;
            height: 100%; 
        }

        .custom-prev, .custom-next {
            position: absolute;
            top: calc(100% - 50%);  
            transform: translateY(-50%);
            background: #FFFFFF;
            color: #51842F;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 20px;
            padding: 10px;
            cursor: pointer;
            z-index: 2;
            border-radius: 50%;
            border: 1px solid #51842F;
            transition: all 0.4s ease-in-out;
        }

        .custom-prev {
            left: -3%; 
        }

        .custom-next {
            right: -3%; 
        }

        .custom-prev:hover, .custom-next:hover {
            color: #FFFFFF;
            background: #51842F;
        }

        .custom-card {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: left;
            padding: 10px 15px;
            border: 2px solid #ddd;
            background: #fff;
            margin: 0 10px; 
            border-radius: 10px;
            height: 300px; 
            box-sizing: border-box;
            transition: all 0.3s ease;
            flex-direction: row; 
            display: flex;
        }

        .custom-card img {
            max-width: 150px;
            height: auto;
            margin-right: 20px; 
            border-radius: 10px; 
            object-fit: cover; 
        }

        .custom-card .card-text {
            flex-grow: 1;
        }

        .custom-carousel .slick-track {
            display: flex;
            width: 100%;
        }

        .custom-carousel .custom-card {
            flex: 0 0 auto; 
            width: 50%;   
            margin-right: 0px; 
        }

        .custom-carousel .slick-slide {
            margin: 5px;
            display: flex;  
        }

        .slick-dots {
            margin-top: 20px; 
            display: flex;
            bottom: -45px;
            justify-content: center; 
            gap: 8px;
        }

        .slick-dots li {
            list-style-type: none;
            width: 12px;
            height: 12px;
            background: #D3D3D3;
            border-radius: 25px;
        }

        .slick-dots button {
            background-color: grey;
            border: none;
            width: 8px; 
            height: 8px;
            border-radius: 50%;
            padding: 5px;
            cursor: pointer;
            opacity: 0.6; 
        }

        .cards{
            margin-bottom: 70px;
        }

        .slick-dots li button {
            width: 12px;
            height: 12px;
        }

.slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px; 
}

.slick-dots li {
    list-style-type: none;
    width: 12px;
    height: 12px;
    background: #D3D3D3; 
    border-radius: 50%;
    transition: all 0.3s ease; 
}

.slick-dots li.slick-active {
    width: 40px; 
    height: 12px; 
    background-color: #51842F; 
    border-radius: 50px; 
}

@media (max-width: 768px) {
    .custom-prev, .custom-next {
        display: none !important;
    }
}

.custom-card {
    display: flex;
    flex-direction: row; 
    align-items: flex-start;                
    justify-content: flex-start;
    text-align: left;
    padding: 15px;
    border: 2px solid #ddd;
    background: #fff;
    margin: 0 10px; 
    border-radius: 10px; 
    box-sizing: border-box;
    transition: all 0.3s ease;
    height: auto; 
    flex-grow: 1; 
    overflow: hidden; 
    box-shadow: 0px 4px 2px 0px #00000012;
}

.custom-card img {
    max-width: 150px;
    height: auto;
    margin-right: 20px; 
    border-radius: 10px;
    object-fit: cover; 
}

.custom-card .card-text {
    flex-grow: 1; 
    font-weight: 400;
    white-space: normal; 
    overflow: visible;
    margin-top: 0; 
}

.custom-carousel .slick-track {
    display: flex;
    width: 100%;
}

.custom-carousel .custom-card {
    flex: 0 0 auto; 
    width: 33%; 
}

@media (max-width: 768px) {
    .custom-card {
        flex-direction: column; 
        height: auto; 
    }

    .custom-card img {
        margin-right: 0; 
        margin-bottom: 15px; 
    }

    .custom-card .card-text {
        white-space: normal; 
    }

    .custom-carousel .custom-card {
        width: 100%; 
    }
}

.footer .footer-link {
    color: #fff;
    text-decoration: none;
}
.footer .footer-link:hover {
    color: #ddd; 
}
.footer .rights {
    margin-top: 20px;
    font-size: 18px;
}

.footer p{
    font-size: 18px;
    text-align: left;
}

.office-heading{
    font-size: 22px;
    text-align: left;
   padding-bottom: 10px;
   font-weight: 600;
}

.footer-heading{
    font-weight: 700;
   font-size: 28px;
   text-align: left;
   padding-bottom: 15px;
}

.linkedin-icon {
    color: #0077b5 !important; 
    font-size: 24px; 
    margin-bottom: 0;
    text-decoration: none; 
}

.nav-item-dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    min-width: 150px;
  }

  .nav-item:hover .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    display: block;
  }

  .dropdown-item:hover {
    background-color: #f1f1f1;
  }

   .dropdown-item:active {
    background-color: #f1f1f1;
    color: #333;  
  }

  .latest-news-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .office-heading {
    background: linear-gradient(to right, #D84607, #E09B72,  #e4b397);
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .agroprenuers-container{
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  .agroprenuers-card{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 7.7px 0px #00000012;
    font-weight: 700;
    background-color: #FFFFFF;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .agroprenuers-card:hover{
    transform: translateY(-5px);
  }

  .new-subheading{
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .agroprenuers-card .card-p {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
  }

  .agroprenuers-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.agroprenuers-list-item {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.agroprenuers-dot {
    width: 10px;
    height: 10px;
    background-color: #51842F;
    border-radius: 50%;
    display: inline-block;
    padding-right: 10px;
    margin-right: 15px;
}

.nav-item.nav-item-dropdown.signup-dropdown:hover .dropdown-menu .dropdown-item:hover {
    color: #51842F !important;
}

.logo-container {
    position: sticky;
    top: 56px;
    z-index: 10;
    transition: box-shadow 0.3s ease-in-out;
    background-color: white;

}

.navbar {
    position: sticky;
    top: 0px; 
    z-index: 999;
    transition: 0.3s ease-in-out;
}

.shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta-white {
    background-color: #FFFFFF;
    color: #51842F;
}

.btn-cta-white:hover {
    background-color: #51842F;
    color: #FFFFFF;
}

.footer-logo-p {
    font-size: 16px !important;
}

.navbar-expand-lg .navbar-nav {
    align-items: center !important;
}

.navbar-nav {
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column ;
}

@media (max-width: 991px) {
    .desktop-logo {
        display: none !important;
        margin-right: 20px !important;
    }

    .navbar-nav {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        align-items: baseline !important;
    }

}

.desktop-logo {
    margin-right: 20px !important;
}

.navbar-nav .nav-link{
    color: #000000 !important;
}

.navbar {
    background: #ffffff;
}

.faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    /* Padding just for active appearance */
    padding-top: 16px;
    padding-bottom: 16px;
}

.faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.6s ease, padding 0.6s ease; /* Increased from 0.4s to 0.6s */
    padding-top: 0;
    padding-bottom: 0;
}


.faq-item.active .faq-answer {
    padding-top: 16px;
    padding-bottom: 16px;
}

.faq-wrapper {
    transition: height 0.4s ease;
}

.faq-answer {
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

b {
    font-weight: 500 !important;
}


@media (max-width: 768px) {
    .footer .terms {
        display: block;
        margin-top: 10px;
    }
    .footer .footer-link {
        display: block; 
        margin: 10px 0;
    }
    .brochure-btn{
        width: 75%;
    }
}

@media (max-width: 768px) {
    .faq-sub-div {
        margin-top: 0px;
    }  
    .faq-div{
        margin-bottom: 0px;
    } 
    .profit-button{
        width: 90%;
    }
    .btn-get-started{
        font-size: 16px;
    }
    .benefits .gtp-card-text{
        max-width: fit-content;
    }
    .faq-answer {
        font-size: 16px;
        line-height: 22px;
    }
    .faq-question {
        font-size: 18px;
        line-height: 24px;
    }
    .gtp-banner, .gpp-banner{
        height: auto;
    }
}

@media (max-width: 768px) {
    h1, .hero-span {
        font-size: 48px !important;
        line-height: 64px !important;
    }
    h2 {
        font-size: 42px !important;
        line-height: 56px !important;
    }
    h3 {
        font-size: 36px !important;
        line-height: 48px !important;
    }
    h4 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    h5 {
        font-size: 26px !important;
        line-height: 36px !important;
    }
    h6 {
        font-size: 22px !important;
        line-height: 32px !important;
    }
    p {
        font-size: 20px !important;
        line-height: 26px !important;
    }
}

@media (max-width: 576px) {
    h1, .hero-span {
        font-size: 36px !important;
        line-height: 48px !important;
    }
    h2 {
        font-size: 32px !important;
        line-height: 42px !important;
    }
    h3 {
        font-size: 28px !important;
        line-height: 38px !important;
    }
    h4 {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    h5 {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    h6 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    p {
        font-size: 18px !important;
        line-height: 22px !important;
    }
    .carousel-item p{
        font-size: 14px !important;
    }
}


